/* =================================================
   CSS 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;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
html { 
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #1A2332;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F3F7F9;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #1a2332;
}
img { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }
a { color: #19A1AA; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #02f0fe; }

/* =================================================
   VARIABLES (with fallbacks)
================================================== */
:root {
  --color-primary: #24334E;
  --color-secondary: #19A1AA;
  --color-accent: #F3F7F9;
  --color-bg: #1A2332;
  --color-white: #fff;
  --color-neon: #02f0fe;
  --color-neon-pink: #fa00ff;
  --color-dark: #10151f;
  --color-footer-bg: #212C3B;
  --shadow-main: 0 2px 16px 0 rgba(2,240,254,0.10), 0 1.5px 8px 0 rgba(36,51,78,.13);
  --shadow-deep: 0 6px 24px 0 rgba(2,240,254,0.15);
  --radius-md: 20px;
  --radius-sm: 8px;
}

/* =================================================
   BASE LAYOUT & TYPOGRAPHY
================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  color: #F3F7F9;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; line-height: 1.12; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.375rem; margin-bottom: 8px; }
h4 { font-size: 1.125rem; }
.section h2, h2.section-title { color: #02f0fe; text-shadow: 0 2px 24px #19A1AA44; }

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F3F7F9;
  margin-bottom: 16px;
}
ul, ol { padding-left: 1.5em; }
li { margin-bottom: 10px; }
strong { color: #02f0fe; font-weight: 700; }

.text-section ul,
.text-section ol {
  margin-bottom: 12px;
}

.text-section p { margin-bottom: 10px; }

/* Typography scale helper classes */
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-24 { font-size: 24px; }
.fs-32 { font-size: 32px; }
.fs-48 { font-size: 48px; }

/* =================================================
   HEADER & NAVIGATION
================================================== */
header {
  background: #191F29;
  box-shadow: 0 2px 18px #02f0fe17;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header a img { height: 44px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #F3F7F9;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: background .16s, color .18s;
}
.main-nav a:hover:not(.cta-primary),
.main-nav a:focus:not(.cta-primary) {
  background: #212c3b;
  color: #02f0fe;
}
.main-nav .cta-primary {
  background: linear-gradient(90deg, #19A1AA 0%, #02f0fe 99%);
  color: #24334E;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  box-shadow: 0 2px 16px 0 rgba(2,240,254,0.12);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: linear-gradient(90deg, #02f0fe 0%, #fa00ff 98%);
  color: #191F29;
  box-shadow: 0 2px 24px #02f0fe55; 
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #02f0fe;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 24px;
  position: relative;
  z-index: 1202;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #02f0fe22;
}

.mobile-menu {
  display: none;
}
/* We'll show via .open class in JS, but for fallback in pure CSS: */
@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #191f29f2;
    z-index: 1200;
    transform: translateX(100vw);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.6,.01,.15,1), opacity 0.23s;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    box-shadow: 0 12px 48px #02f0fe33;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 28px 32px 28px;
    margin-top: 50px;
  }
  .mobile-nav a {
    color: #F3F7F9;
    font-size: 22px;
    font-weight: 500;
    background: none;
    border: none;
    border-radius: 8px;
    padding: 12px;
    display: block;
    transition: background 0.16s;
    line-height: 1.2;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #02f0fe14;
    color: #02f0fe;
  }
  .mobile-nav .cta-primary {
    background: linear-gradient(90deg, #19A1AA 0%, #02f0fe 99%);
    color: #24334E;
    padding: 15px 0;
    font-size: 22px;
    font-weight: 700;
  }
  .mobile-menu-close {
    background: none;
    border: none;
    color: #02f0fe;
    font-size: 2.4rem;
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 1203;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 16px;
    transition: background 0.15s;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus { background: #02f0fe22; }
}

/* =================================================
   HERO SECTIONS
================================================== */
.hero {
  min-height: 350px;
  background: linear-gradient(105deg, #212c3b 10%, #24334e 90%);
  box-shadow: 0 4px 36px #02f0fe12;
  width: 100%;
  padding: 60px 0;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  flex: 1;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
}
.hero h1 {
  color: #02f0fe;
  font-size: 2.75rem;
  text-shadow: 0 2px 36px #02f0fe33;
  margin-bottom: 0px;
}
.hero p {
  color: #F3F7F9;
  font-size: 1.25rem;
  margin-bottom: 0px;
}

/* =================================================
   SECTION STYLES & SPACING (MANDATORY PATTERNS)
================================================== */
.section,
.features,
.services,
.about,
.values,
.services-list,
.products,
.cta-section,
.legal,
.thank-you,
.testimonials,
.testimonial-section,
.cases,
.blog-list,
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #212C3B;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
}
.section:last-child, .features:last-child, .services:last-child, .about:last-child, .values:last-child, .services-list:last-child, .products:last-child, .cta-section:last-child, .legal:last-child, .thank-you:last-child, .testimonials:last-child, .testimonial-section:last-child, .cases:last-child, .blog-list:last-child, .contact:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #191F29;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:last-child { margin-bottom: 0; }

.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;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #F3F7F9;
  color: #24334E;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px 0 rgba(36, 51, 78, 0.09);
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card p {
  color: #212C3B;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card .testimonial-name {
  color: #19A1AA;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.feature-item,
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #191F29;
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 6px 36px #02f0fe23;
}
.service-item h3 { color: #02f0fe; }

.features ul, .products ul, .cases ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding-left: 0;
}
.features ul li, .products ul li, .cases ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 4px;
}
.features ul li img { width: 32px; height: 32px; filter: drop-shadow(0px 0px 6px #02f0fe66); }

/* Service list and cta */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-list .service-item {
  flex: 1 1 220px;
  min-width: 250px;
  max-width: 320px;
  margin-right: 0;
}
.price {
  color: #fa00ff;
  font-weight: 700;
  font-size: 1.07rem;
}

.cta-section {
  text-align: center;
}
.cta-section .cta-primary, 
.cta-section .cta-secondary {
  margin-top: 18px;
}

/* =================================================
   BUTTONS & CALLS TO ACTION
================================================== */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg,#02f0fe 0%,#19A1AA 83%);
  color: #24334E;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  font-size: 1.19rem;
  box-shadow: 0 4px 16px #02f0fe24;
  outline: none;
  border: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s, filter 0.17s;
  cursor: pointer;
  margin: 0 4px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg, #fa00ff 0%, #02f0fe 100%);
  color: #F3F7F9;
  box-shadow: 0 6px 32px #fa00ff42;
  filter: brightness(1.05) drop-shadow(0 0 6px #fa00ff33);
}

.cta-secondary {
  display: inline-block;
  background: #191F29;
  color: #02f0fe;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px #02f0fe19;
  border: 2px solid #02f0fe;
  margin: 0 4px;
  transition: background 0.2s, color 0.22s, border 0.18s, box-shadow 0.2s;
  cursor: pointer;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #02f0fe;
  color: #191F29;
  border-color: #19A1AA;
  box-shadow: 0 6px 32px #02f0fe65;
}

button, .button {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  background: #19A1AA;
  color: #24334E;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.14s, color 0.12s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #02f0fe21;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #02f0fe;
  color: #24334E;
  box-shadow: 0 4px 16px #02f0fe24;
}

/* Lists and text blocks */
.text-section {
  color: #F3F7F9;
  background: none;
  padding: 0;
}
.text-section a {color: #19A1AA;}

/* =================================================
   FOOTER
================================================== */
footer {
  background: var(--color-footer-bg);
  color: #F3F7F9;
  padding: 50px 0 30px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #19A1AA;
  font-size: 1rem;
  padding: 4px 8px;
  transition: color 0.15s;
}
.footer-menu a:hover,
.footer-menu a:focus { color: #02f0fe; }

.contact-info {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.contact-info a {
  color: #fa00ff;
  text-decoration: underline;
}
.newsletter-signup {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* =================================================
   RESPONSIVE DESIGN
================================================== */
@media (max-width: 1000px) {
  .service-list, .card-container, .content-grid { flex-direction: column; gap: 20px; }
  .hero .content-wrapper { max-width: 100%; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.36rem; }
  .section,.features,.services,.about,.values,.services-list,.products,.cta-section,.legal,.thank-you,.testimonials,.testimonial-section,.cases,.blog-list,.contact {
    padding: 25px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .card, .feature-item, .service-item, .testimonial-card {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .cta-primary, .cta-secondary {
    padding: 12px 16px;
    font-size: 1.09rem;
    border-radius: 12px;
  }
  .container { padding: 0 8px; }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 7px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 4px; }
  .hero { padding: 32px 0; }
  .hero .content-wrapper { gap: 9px; }
  .cta-primary, .cta-secondary { font-size: .99rem; }
}

/* =================================================
   UTILITY
================================================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-12 { margin-top: 12px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* =================================================
   ANIMATIONS & MICRO-INTERACTIONS
================================================== */
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.21s;
}
.card:hover, .feature-item:hover, .service-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 40px #02f0fe36;
  transform: translateY(-2px) scale(1.01);
}
.cta-section .cta-primary, .cta-section .cta-secondary {
  transition: filter 0.17s, box-shadow 0.2s;
}
.cta-section .cta-primary:hover,
.cta-section .cta-secondary:hover {
  filter: brightness(1.04) drop-shadow(0 0 8px #02f0fe44);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid #fa00ff;
  outline-offset: 2px;
}

/* =================================================
   COOKIE BANNER & CONSENT MODAL
================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #24334e;
  color: #F3F7F9;
  box-shadow: 0 -6px 32px #02f0fe40;
  padding: 18px 12px;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  animation: cookie-banner-in 0.6s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 12px;
  background: #191F29;
  color: #02f0fe;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border: none;
  outline: none;
  font-weight: 600;
  transition: background 0.18s, color 0.15s;
  box-shadow: 0 2px 8px #02f0fe11;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #02f0fe;
  color: #24334E;
}
.cookie-banner .cookie-settings-btn {
  background: #24334E;
  border: 1px solid #02f0fe;
  color: #02f0fe;
  padding: 9px 18px;
  transition: background .2s, color .2s;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #02f0fe;
  color: #191F29;
}

@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px;
  }
  .cookie-banner .cookie-actions { gap: 7px; }
  .cookie-banner .cookie-text { margin-right: 0; }
}

.cookie-consent-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3001;
  align-items: center;
  justify-content: center;
  background: rgba(24,34,48,0.75);
  animation: fadeIn .3s cubic-bezier(.47,1.64,.41,.8);
}
.cookie-consent-modal.open { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #191F29;
  color: #F3F7F9;
  border-radius: 24px;
  padding: 32px 26px;
  max-width: 370px;
  box-shadow: 0 8px 42px #02f0fe52;
  animation: modalIn .38s cubic-bezier(.47,1.64,.41,.8);
  position: relative;
  min-width: 270px;
}
@keyframes modalIn {  from { transform: scale(0.89); opacity: 0; }  to { transform: scale(1); opacity:1; }  }
.cookie-modal-content h3 { font-size: 1.45rem; color: #02f0fe; margin-bottom: 14px; }
.cookie-modal-content ul {
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.cookie-modal-content .consent-toggle {
  margin-left: auto;
  display: flex; align-items: center;
}
.cookie-modal-content .cookie-toggle-checkbox {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #02f0fe44;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-content .cookie-toggle-checkbox:checked {
  background: linear-gradient(90deg, #19A1AA, #02f0fe);
}
.cookie-modal-content .cookie-toggle-checkbox:disabled {
  opacity: 0.45;
  cursor: default;
}
.cookie-modal-content .cookie-toggle-checkbox:before {
  content: "";
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.18s, background 0.16s;
}
.cookie-modal-content .cookie-toggle-checkbox:checked:before {
  left: 18px;
  background: #02f0fe;
}
.cookie-modal-content .cookie-toggle-checkbox:disabled:before {
  background: #cbeef3;
}
.cookie-modal-content .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 8px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #02f0fe;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 50%;
  width: 38px; height: 38px;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: #02f0fe22;
}
.cookie-modal-content .cookie-note {
  color: #19A1AA;
  font-size: 0.93rem;
  margin-bottom: 10px;
}

@media (max-width:700px){
  .cookie-modal-content { max-width: 95vw; min-width: 160px; padding: 17px 7px 22px 9px; border-radius: 16px; }
}

/* =================================================
   FUTURISTIC DECORATIVE LIGHT ACCENTS
================================================== */
.hero, .cta-primary, .cta-secondary, .main-nav .cta-primary, .mobile-nav .cta-primary {
  position: relative;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, #02f0fe09 0%, #02f0fe00 100%);
}
.cta-primary:after, .cta-secondary:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: 0 0 16px #02f0fe59, 0 0 2px #fa00ff22;
  opacity: 0.3;
}
.main-nav .cta-primary:after { opacity: 0.16; }
.mobile-nav .cta-primary:after { opacity: 0.16; }

/* Miscellaneous enhancements */
input, textarea {
  background: #212C3B;
  color: #F3F7F9;
  border-radius: var(--radius-sm);
  border: 1px solid #363e49;
  padding: 8px 12px;
  min-width: 200px;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: border 0.15s, background 0.16s;
}
input:focus, textarea:focus {
  border-color: #02f0fe;
  background: #191F29;
}
label { color: #02f0fe; display: block; margin-bottom: 3px; font-size: 1rem; }

/* Hide visually but keep accessible */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Loader (can be used for cookie/async ops) */
.loader {
  border: 3px solid #212C3B;
  border-top: 3px solid #02f0fe;
  border-radius: 50%;
  width: 28px; height: 28px;
  animation: spin 1s linear infinite;
  margin: 18px auto;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* END OF STYLE.CS */
