/* ==========================================================================
   RESET & NORMALIZE
   ==========================================================================
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #13181b;
  color: #F5F6F8;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   VARIABLES
   ==========================================================================
*/
:root {
  --primary: #1A2327;
  --secondary: #E6C784;
  --accent: #F5F6F8;
  --neon-blue: #00FFF7;
  --neon-green: #2FFFBF;
  --dark-bg: #13181b;
  --button-radius: 30px;
  --shadow-elevate: 0 6px 32px 0 rgba(0,0,0,0.10), 0 1.5px 6px 0 rgba(23,200,215,0.06);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  /* Font families */
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ==========================================================================
   TYPOGRAPHY
   ==========================================================================
*/
html {
  font-size: 16px;
  background: var(--dark-bg);
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--dark-bg);
  color: var(--accent);
  min-height: 100vh;
}
h1, .hero-section h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: .01em;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 16px var(--neon-blue), 0 0 4px #1A232760;
  line-height: 115%;
}
@media (min-width: 768px) {
  h1, .hero-section h1 { font-size: 3rem; }
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: var(--space-md);
  letter-spacing: .01em;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neon-blue);
  margin-bottom: var(--space-xs);
  letter-spacing: .015em;
}

.subheadline {
  font-size: 1.15rem;
  color: var(--accent);
  opacity: .97;
  letter-spacing: .009em;
  margin-bottom: var(--space-lg);
}
p, li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--accent);
}
strong {
  color: var(--secondary);
  font-weight: 600;
}
ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}
ul li {
  margin-bottom: var(--space-xs);
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--neon-blue);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  top: -2px;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ==========================================================================
*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-sm);
  box-sizing: border-box;
}
.content-wrapper {
  margin-bottom: var(--space-lg);
}
main {
  width: 100%;
  flex: 1 1 0%;
  background: none;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #181e21;
  border-radius: 24px;
  box-shadow: var(--shadow-elevate);
}
@media (max-width: 576px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* Mandatory flex patterns */
.card-container,
.card-grid,
.feature-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 24px;
  margin-bottom: 24px;
  background: #fff;
  color: #1A2327;
  box-shadow: 0 4px 24px 0 rgba(0,255,247,0.07), 0 2px 8px 0 rgba(0,0,0,0.06);
  border-left: 5px solid var(--neon-blue);
  position: relative;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card .project-info {
  font-size: 0.95rem;
  color: #222f37;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #181e21;
  border-radius: 20px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px 0 rgba(42,216,255,0.05);
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
  margin-bottom: 20px;
  border: 1.5px solid transparent;
  transition: border 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-item:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px 2px var(--neon-blue), 0 2px 20px 0 rgba(42,216,255,0.10);
  z-index: 3;
  transform: translateY(-3px) scale(1.03);
}
.feature-item img {
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .feature-grid,
  .services-list {
    flex-direction: column;
    gap: 16px;
  }
}

.service-block {
  background: #181e21;
  border-radius: 20px;
  margin-bottom: 24px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px 0 rgba(42,216,255,0.07);
  border-left: 4px solid var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-block h2 {
  font-size: 1.25rem;
  color: var(--neon-green);
}

/* Avoid absolute for card content. Only allow for small decorative pseudo-els. */

/* ==========================================================================
   HEADER & NAVIGATION
   ==========================================================================
*/
header {
  background: linear-gradient(270deg,#181E22 75%, #1A2327 100%);
  position: relative;
  box-shadow: 0 2px 16px 0 rgba(0, 255, 247, 0.02);
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-sm) var(--space-sm) var(--space-sm);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #F5F6F8;
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--secondary));
  transition: width 0.2s;
  border-radius: 6px;
  margin-top: 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--neon-blue);
  outline: none;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 97%;
}

.cta-button {
  background: var(--neon-blue);
  color: #191919;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 11px 32px;
  border: none;
  border-radius: var(--button-radius);
  box-shadow: 0 1px 8px 0 rgba(0,255,247,0.17);
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.22s, transform 0.17s;
  letter-spacing: 0.09em;
  margin-left: 22px;
  outline: none;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 24px 0 rgba(230,199,132,0.22), 0 0 28px 1px var(--neon-blue);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
  }
  header .container {
    padding: var(--space-sm) var(--space-xs);
  }
  .cta-button {
    margin-left: 8px;
  }
}

@media (max-width: 768px) {
  .main-nav, .cta-button {
    display: none;
  }
  header .container {
    padding: 12px 6px;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION
   ==========================================================================
*/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  color: var(--neon-blue);
  font-size: 2rem;
  padding: 7px 14px;
  border-radius: 14px;
  cursor: pointer;
  z-index: 120;
  transition: background 0.20s;
  box-shadow: 0 0 6px #1a2327bb;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #141719;
  color: var(--secondary);
}
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 97vw;
  max-width: 340px;
  background: #161b1e;
  box-shadow: -3px 0 32px 0 rgba(0,255,247,0.16);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(.23,1.03,.71,.99);
  overflow-y: auto;
  padding-top: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.37s cubic-bezier(.23,1.03,.71,.99);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--neon-blue);
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  z-index: 10002;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.20s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #121415;
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 68px;
  width: 100%;
  padding-left: 24px;
  padding-right: 12px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.10rem;
  padding: 10px 0 10px 4px;
  border-radius: 8px;
  transition: background 0.20s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--neon-blue);
  color: var(--primary);
  outline: none;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==========================================================================
   HERO SECTION
   ==========================================================================
*/
.hero-section {
  width: 100%;
  background: linear-gradient(115deg, var(--primary) 80%, #18313c 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 38px 0 24px 0;
  }
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

/* ==========================================================================
   CTA SECTION
   ==========================================================================
*/
.cta-section {
  margin-bottom: 0;
  padding: 0 0 48px 0;
}
.cta-section .content-wrapper {
  background: #181e21;
  border-radius: 24px;
  box-shadow: var(--shadow-elevate);
  padding: 35px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ==========================================================================
   CARDS & STRUCTURAL COMPONENTS
   ==========================================================================
*/
.card {
  background: #181e21;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(42,216,255,0.03);
  padding: 20px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.section > .container > .content-wrapper > h1,
.section > .container > .content-wrapper > h2 {
  margin-bottom: 28px;
}

/* ==========================================================================
   FOOTER
   ==========================================================================
*/
footer {
  width: 100%;
  background: linear-gradient(270deg, #181e21 80%, #161717 100%);
  color: var(--accent);
  padding: 40px 0 0 0;
  margin-top: 60px;
  border-top: 2px solid #22343c;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
}
.footer-nav a {
  color: var(--neon-blue);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .03em;
  opacity: 0.95;
  transition: color 0.18s;
  padding: 7px 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
  outline: none;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--accent);
}
.footer-contact .contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.98rem;
}
.footer-contact img {
  width: 19px; height: 19px;
}
.social-media {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.social-media img {
  filter: brightness(1.4) invert(0.18) drop-shadow(0 2px 6px #00FFF777);
  width: 29px; height: 29px;
  opacity: .88;
  transition: transform 0.20s, filter 0.20s;
  cursor: pointer;
}
.social-media img:hover {
  transform: scale(1.10);
  filter: brightness(1.8) drop-shadow(0 0 12px #00FFF7cc);
}

@media (max-width: 768px) {
  footer .container,
  .footer-contact {
    flex-direction: column;
    gap: 17px;
  }
  .footer-contact .contact-detail {
    margin-bottom: 4px;
  }
}

/* ==========================================================================
   FORMS & BUTTONS
   ==========================================================================
*/
input, textarea, select {
  font-family: var(--font-body);
  background: #191f23;
  border: 1.5px solid var(--neon-blue);
  border-radius: 12px;
  padding: 13px 12px;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 16px;
  transition: border 0.20s, box-shadow 0.20s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 10px 1px #00FFF777, 0 2px 17px 0 var(--secondary);
}
label {
  margin-bottom: 7px;
  color: var(--neon-blue);
}
button {
  font-family: var(--font-display);
}

/* ==========================================================================
   UTILITIES
   ==========================================================================
*/
.text-section {
  font-size: 1.14rem;
  margin-bottom: 18px;
}
.text-section ul {
  margin: 14px 0 0 0;
  padding-left: 0;
}
.text-section li {
  padding: 5px 0 5px 2px;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
}
.text-section img {
  width: 19px;
  margin-right: 7px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

/* Visually distinctive testimonials section */
.testimonials {
  background: linear-gradient(100deg, #161b1e 80%, #1A2327 100%);
  padding-top: 24px;
  border-radius: 2px;
}
.testimonials h2, .testimonials h1 {
  color: var(--neon-blue);
  text-shadow: 0 0 18px #00FFF750;
}
.testimonials .testimonial-card {
  margin-bottom: 22px;
  background: #fff;
  color: #191f23;
  border-left: 5px solid var(--neon-green);
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ==========================================================================
*/
#cookie-banner, .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #13181b;
  color: var(--accent);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 28px 20px 24px;
  box-shadow: 0 -2px 32px 0 rgba(0,255,247,0.11);
  z-index: 10050;
  font-size: 1rem;
  border-top: 3px solid var(--neon-blue);
  animation: cookieBannerSlideIn 0.55s cubic-bezier(.23,1.03,.7,.96);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 0;
  max-width: 720px;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-btn {
  background: var(--neon-blue);
  color: #111;
  border: none;
  border-radius: 18px;
  padding: 9px 25px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 1px 6px 0 rgba(0,255,247,0.12);
  outline: none;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 24px 0 rgba(230,199,132,0.18);
}
.cookie-btn--reject {
  background: #1A2327;
  color: var(--accent);
  border: 1.5px solid var(--neon-blue);
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #202c36;
  color: var(--neon-green);
  border-color: var(--secondary);
}
.cookie-btn--settings {
  background: transparent;
  color: var(--neon-blue);
  border: 1.5px solid var(--neon-blue);
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #181e21;
  color: var(--secondary);
  border-color: var(--secondary);
}
@media (max-width: 618px) {
  #cookie-banner, .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 10px 12px 10px;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* Cookie modal */
#cookie-modal, .cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,31,35,0.85);
  z-index: 10051;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: cookieModalSlideUp 0.38s cubic-bezier(.19,.91,.73,.99);
}
@keyframes cookieModalSlideUp {
  0% { opacity: 0; transform: translateY(32px); }
  100%{ opacity: 1; transform: translateY(0); }
}
.cookie-modal__content {
  background: #161b1e;
  color: var(--accent);
  border-radius: 22px;
  box-shadow: 0 0 40px 5px var(--neon-blue);
  padding: 44px 34px 28px 34px;
  min-width: 320px;
  max-width: 98vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieContentFadeIn 0.62s .02s cubic-bezier(.22,1.02,.61,1) both;
}
@keyframes cookieContentFadeIn {
  0% {opacity:0;}
  100%{opacity:1;}
}
.cookie-modal__close {
  position: absolute;
  right: 18px; top: 18px;
  background: var(--primary);
  color: var(--neon-blue);
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 7px 11px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 0px;
}
.cookie-category input[type=checkbox] {
  width: 21px; height: 21px;
  accent-color: var(--neon-blue);
  cursor: pointer;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category--essential label{
  color: var(--secondary);
}
.cookie-category--essential input[disabled] {
  cursor:not-allowed;
  filter: grayscale(0.7);
}

/* ==========================================================================
   ANIMATED ELEMENTS/HOVER EFFECTS
   ==========================================================================
*/
a, .cta-button, .cookie-btn {
  transition: color 0.18s, background 0.18s, box-shadow 0.2s, border 0.15s;
}
.feature-item,
.service-block,
.card {
  transition: box-shadow 0.18s, transform 0.15s, border 0.12s;
}
.feature-item:hover, .card:hover {
  box-shadow: 0 4px 30px 2px var(--neon-blue), 0 2px 14px rgba(0,255,247,0.17);
  border-color: var(--neon-green);
  transform: translateY(-2px) scale(1.03);
  z-index: 2;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE FIRST APPROACH)
   ==========================================================================
*/
@media (max-width: 992px) {
  .container {
    max-width: 96vw;
    padding: 0 var(--space-xs);
  }
  .section{
    padding: 25px 5px;
  }
  .feature-item { min-width: 53vw; }
}
@media (max-width: 768px) {
  .feature-grid, .services-list, .card-container, .content-grid, .footer-nav, .footer-contact, .social-media{
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  h1, .hero-section h1 {
    font-size: 2.1rem;
  }
  h2 { font-size: 1.2rem; }
  .cta-button { padding: 9px 22px; font-size: 1rem; }
  .card, .feature-item, .service-block {
    padding: 17px 10px;
    min-width: unset;
  }
  .card {
    margin-bottom: 18px;
  }
}
@media (max-width: 520px) {
  .container {
    max-width: 99vw;
    padding: 0 4px;
  }
  .feature-item, .service-block, .card {
    min-width: unset;
    padding: 13px 5px;
  }
}

/* ==========================================================================
   COLORS & ACCENTS: Neon + Futuristic accents
   ==========================================================================
*/
::-webkit-scrollbar {
  width: 10px;
  background: #202c36;
}
::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
  border-radius: 11px;
  min-height: 20px;
  opacity: 0.22;
}
::-webkit-selection {
  background: var(--neon-blue);
  color: #18313c;
}
::selection {
  background: var(--neon-blue);
  color: #141b21;
}

/* Glow accent for interactive/focused elements */
.cta-button:focus,
.cta-button:active,
.feature-item:focus,
.card:focus,
.cookie-btn:focus,
.main-nav a:focus {
  box-shadow: 0 0 0 3px #00FFF7cc, 0 0 20px #E6C78455;
  outline: none;
  z-index: 9;
}

/* ==========================================================================
   MISCELLANEOUS
   ==========================================================================
*/
hr {
  border: none;
  border-top: 1.5px solid #21303a;
  margin: 32px 0 31px 0;
}

/* Accessibility: high contrast for testimonials */
.testimonials .testimonial-card, .testimonial-card {
  background: #fff;
  color: #191f23;
  border-left: 5px solid var(--neon-green);
}

/* Hide scroll on mobile menu open */
.body--no-scroll {
  overflow: hidden !important;
}
