/* ================== 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;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #192031;
  color: #E1F5FB;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(120deg, #20344A 0%, #1A2842 100%);
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #FFC542;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFEA9E;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
  background: transparent;
}

/* ================== ROOT VARIABLES ================== */
:root {
  --brand-primary: #205073;
  --brand-secondary: #E1F5FB;
  --brand-accent: #FFC542;
  --brand-bg: #1A2842;
  --brand-bg-card: #222B40;
  --brand-bg-light: #263247;
  --brand-shadow: 0 4px 24px 0 rgba(32,80,115, 0.16);
  --brand-font-display: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  --brand-font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ================== GLOBAL TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-font-display);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

p, ul, ol, li {
  color: #E1F5FB;
  font-family: var(--brand-font-body);
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 16px;
}
strong { color: #FFC542; font-weight: 600; }

/* ================== LAYOUT: SPACING & ALIGNMENT ================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Cards & grids */
.card-container, .feature-grid, .service-cards, .testimonial-list,
.testimonial-slider, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-bg-card);
  box-shadow: var(--brand-shadow);
  border-radius: 20px;
  padding: 32px 24px;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px;
  background: #fff;
  color: #1B232D;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(32,80,115, 0.09);
  min-width: 250px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-card p,
.testimonial-card .testimonial-name {
  color: #1A2842;
  font-size: 1.03rem;
}
.testimonial-card .testimonial-name {
  font-weight: 600;
  color: var(--brand-primary);
}
.testimonial-list {
  gap: 24px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== MAIN NAVIGATION & HEADER ========== */
header {
  background: var(--brand-bg);
  box-shadow: 0 2px 16px 0 rgba(32,80,115,0.05);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 70px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 30px;
}
.main-nav a {
  font-family: var(--brand-font-display);
  font-weight: 500;
  font-size: 1rem;
  color: #E1F5FB;
  padding: 8px 12px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-accent);
}

.cta-btn {
  margin-left: auto;
  background: linear-gradient(90deg, #FFC542 0%, #FFA927 100%);
  color: #1A2842;
  font-family: var(--brand-font-display);
  font-weight: 700;
  border: none;
  border-radius: 24px;
  font-size: 1.12rem;
  padding: 12px 34px;
  box-shadow: 0 2px 8px rgba(255,197,66,0.06);
  transition: background 0.12s, color 0.16s, box-shadow 0.15s, transform 0.08s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFEA9E 0%, #FFC542 100%);
  color: #18344A;
  box-shadow: 0 4px 20px rgba(255,197,66,0.18);
  transform: translateY(-2px) scale(1.04);
  text-shadow: 0 0 2px rgba(255,230,100,0.28);
}

header a img {
  height: 40px;
  width: auto;
  margin-right: 15px;
}

/* ============ MOBILE BURGER MENU ============ */
.mobile-menu-toggle {
  display: none;
  margin-left: 18px;
  font-size: 2rem;
  color: var(--brand-accent);
  background: none;
  border: none;
  padding: 4px 8px;
  z-index: 102;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #fff5d3;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #1A2842;
  box-shadow: 0 16px 40px rgba(32,80,115, 0.25);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.73,.18,.15,.9);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 28px 32px 22px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2rem;
  margin-bottom: 30px;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff5d3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--brand-font-display);
  font-weight: 600;
  font-size: 1.16rem;
  color: #fff;
  background: none;
  padding: 10px 0;
  border-radius: 12px;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-bg);
  background: var(--brand-accent);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 10px;
  }
  .main-nav {
    margin-left: 8px;
  }
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  .footer-contact ul, .footer-contact address {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 0;
    min-width: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    justify-content: space-between;
  }
}

/* ============= HERO + CTA SECTIONS ============= */
.hero {
  background: linear-gradient(92deg, #232D45 0%, #26446a 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 6px 36px rgba(32,80,115,.12);
  padding: 80px 0 50px 0;
  margin-bottom: 38px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 44px #14385788;
  font-size: 2.6rem;
}
.hero p {
  color: #b4e0f7;
  margin-bottom: 32px;
  font-size: 1.18rem;
}

.cta {
  background: linear-gradient(70deg, #1a2842 65%, #205073 100%);
  border-radius: 28px;
  box-shadow: 0 6px 26px rgba(32,80,115,.13);
  margin: 50px 0 32px 0;
  padding: 45px 0;
  text-align: center;
}
.cta h2 {
  color: #fff;
  margin-bottom: 18px;
}

/* ============== FEATURES ================= */
.features {
  background: transparent;
  margin-bottom: 60px;
  padding: 36px 0 30px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature {
  background: var(--brand-bg-light);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(32,80,115, 0.07);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.15s, transform 0.13s;
  border: 2px solid transparent;
  position: relative;
}
.feature:hover, .feature:focus-within {
  border-color: var(--brand-accent);
  box-shadow: 0 8px 30px rgba(255,197,66, 0.07), 0 2px 16px rgba(32,80,115, 0.12);
  transform: translateY(-3px) scale(1.015);
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 2px #20507366);
}
.feature h3 {
  font-size: 1.18rem;
  color: var(--brand-accent);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.feature p {
  color: #E1F5FB;
  font-size: 1rem;
  margin-bottom: 0;
}

/* =============== SERVICE CARDS ============== */
.services-overview {
  margin-bottom: 60px;
  padding: 36px 0;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: var(--brand-bg-card);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(32,80,115, 0.1);
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 320px;
  padding: 30px 22px 25px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.13s, transform 0.11s, border-color 0.12s;
  border: 2px solid transparent;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 2px 24px rgba(255,197,66, 0.06), 0 2px 14px rgba(32,80,115, 0.11);
  border-color: var(--brand-accent);
}
.service-card h3 {
  font-size: 1.13rem;
  color: var(--brand-accent);
  margin-bottom: 6px;
}
.service-card p {
  color: #BDE5F9;
  margin-bottom: 4px;
  font-size: 1rem;
}
.service-price {
  font-family: var(--brand-font-display);
  color: #fff;
  font-weight: 600;
  font-size: 1.14rem;
  margin-top: 10px;
}

/* ============= TESTIMONIALS ============= */
.testimonials {
  background: none;
  margin: 52px 0 20px 0;
  padding: 30px 0;
}
.testimonials h2 {
  margin-bottom: 18px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #1A2842;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(32,80,115,0.10);
  flex: 1 1 260px;
  min-width: 250px;
  margin-bottom: 20px;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.13s, transform 0.12s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(32,80,115,0.18), 0 2px 12px 0 rgba(255,197,66,0.06);
  transform: translateY(-3px) scale(1.008);
}

/* ============== FAQ SECTION =============== */
.faq {
  background: var(--brand-bg-card);
  border-radius: 20px;
  box-shadow: var(--brand-shadow);
  padding: 40px 0 30px 0;
  margin-bottom: 60px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.faq-item {
  flex: 1 1 320px;
  min-width: 220px;
  background: var(--brand-bg-light);
  border-radius: 16px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 14px rgba(32,80,115, 0.05);
  border: 2px solid transparent;
  transition: border-color 0.1s, box-shadow 0.12s, transform 0.11s;
}
.faq-item:hover, .faq-item:focus-within {
  border-color: var(--brand-accent);
  box-shadow: 0 4px 18px rgba(255,197,66, 0.07), 0 2px 10px rgba(32,80,115, 0.09);
  transform: scale(1.01);
}
.faq-item h3 {
  color: var(--brand-accent);
  font-size: 1.04rem;
  margin-bottom: 7px;
}
.faq-item p {
  color: #DAF0FC;
}

/* ============== FOOTER ============== */
footer {
  border-top: 2px solid #2a3855;
  background: var(--brand-bg);
  color: #B4CDF5;
  margin-top: 60px;
  font-size: 1rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 0 35px 0;
}
.footer-brand {
  min-width: 190px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-brand img {
  width: 40px;
  margin-bottom: 8px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a, .footer-legal a {
  color: #DAF5FE;
  font-size: 0.97rem;
  transition: color 0.13s;
  opacity: 0.84;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--brand-accent);
  opacity: 1;
}
.footer-contact {
  min-width: 220px;
  max-width: 340px;
}
.footer-contact h3 {
  color: var(--brand-accent);
  margin-bottom: 11px;
  font-size: 1.08rem;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact li {
  color: #E1F5FB;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.93;
}
.footer-contact li img {
  width: 20px;
  height: 20px;
  filter: invert(73%) sepia(11%) saturate(582%) hue-rotate(169deg);
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 12px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(20%) brightness(1.1) drop-shadow(0 0 2px #20507366);
  transition: filter 0.18s;
}
.footer-social a:hover img {
  filter: none;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0 9px 0;
  color: #6ea7d0;
  font-size: 0.96rem;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 760px) {
  .footer-content, .card-container, .feature-grid, .service-cards, .testimonial-slider, .testimonial-list, .faq-list {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: stretch !important;
  }
  .content-wrapper {
    padding: 0;
  }
}

/* ============== CONTACT INFO SECTION =============== */
.contact-info {
  background: var(--brand-bg-light);
  border-radius: 18px;
  box-shadow: var(--brand-shadow);
  padding: 40px 0 28px 0;
  margin-bottom: 60px;
}
.contact-info h2 {
  color: var(--brand-accent);
  font-size: 1.3rem;
}
.contact-info ul {
  margin: 24px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E1F5FB;
  font-size: 1.06rem;
}
.contact-info li img {
  width: 22px;
  height: 22px;
  filter: invert(73%) sepia(11%) saturate(582%) hue-rotate(169deg);
}


/* =================== STEPS / HOW IT WORKS =================== */
.steps, .steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps-list {
  padding-left: 0;
  margin: 20px 0 0 0;
  font-size: 1.09rem;
}
.steps-list li {
  color: #E1F5FB;
  background: var(--brand-bg-light);
  padding: 14px 18px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-family: var(--brand-font-display);
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 2px solid transparent;
  transition: border-color 0.14s, background 0.13s;
}
.steps-list li strong {
  display: inline-block;
  width: 32px;
  color: var(--brand-accent);
  font-size: 1.12em;
  font-weight: 800;
}
.steps-list li:hover, .steps-list li:focus {
  border-color: var(--brand-accent);
  background: #28355a;
}

/* ===================== GENERAL BUTTONS ===================== */
button, .button {
  font-family: var(--brand-font-display);
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 12px 28px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
  transition: background 0.14s, color 0.14s, transform 0.11s, box-shadow 0.14s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: var(--brand-accent);
  color: #1A2842;
  transform: scale(1.04);
  box-shadow: 0 4px 18px 0 rgba(255,197,66, 0.13);
}

/* ===================== COOKIE BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #192031e5;
  box-shadow: 0 -2px 16px rgba(32,80,115,0.13);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px 24px 14px;
  gap: 24px;
  font-size: 1rem;
  animation: banner-in 0.6s cubic-bezier(.62,.54,.21,1) 0s 1 normal;
}
@keyframes banner-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1;
  min-width: 140px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: var(--brand-font-display);
  padding: 10px 22px;
  background: var(--brand-accent);
  color: #1A2842;
  border-radius: 20px;
  font-weight: 600;
  border: none;
  transition: background 0.13s, color 0.15s, transform 0.10s;
  box-shadow: 0 2px 12px 0 rgba(255,197,66,0.07);
}
.cookie-btn.settings {
  background: none;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
  box-shadow: none;
}
.cookie-btn.reject {
  background: #BDE5F9;
  color: #18344A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff5d3;
  color: #18344A;
  transform: scale(1.06);
  box-shadow: 0 4px 18px rgba(255,197,66,0.16);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-accent);
  color: #1A2842;
}

/* ============ COOKIE MODAL ============== */
.cookie-modal-backdrop {
  position: fixed; z-index: 3200; inset: 0;
  background: rgba(30,39,68, 0.72);
  display: flex; align-items: center; justify-content: center;
  animation: cookie-modal-fade 0.43s cubic-bezier(.63,.50,.26,.99);
}
@keyframes cookie-modal-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #212e45;
  border-radius: 20px;
  color: #fff;
  min-width: 340px;
  max-width: 95vw;
  box-shadow: 0 8px 38px 0 #182844cc;
  padding: 30px 28px 22px 28px;
  position: relative;
  animation: cookie-modal-slide 0.43s cubic-bezier(.63,.50,.26,.99);
}
@keyframes cookie-modal-slide {
  0% { transform: translateY(44px) scale(0.94); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.36rem;
  color: var(--brand-accent);
  margin-bottom: 13px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category {
  background: var(--brand-bg-light);
  border-radius: 14px;
  padding: 15px 14px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-accent);
  width: 20px;
  height: 20px;
}
.cookie-category label {
  color: #fff;
}
.cookie-category--essential label {
  color: #FFC542;
  font-weight: bold;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 17px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px;
  top: 11px;
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 1.34rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #fff5d3;
}

/* ===================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .container { max-width: 990px; }
  .feature-grid, .service-cards, .testimonial-slider, .testimonial-list {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 760px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .hero {
    padding: 48px 0 28px 0;
    border-radius: 0 0 28px 28px;
  }
  .cta { padding: 28px 0 25px 0; border-radius: 16px; }
  .section { padding: 20px 8px; margin-bottom: 40px; }
  .card, .feature, .service-card, .testimonial-card, .faq-item {
    max-width: 100%;
    padding: 22px 13px;
  }
  .feature-grid, .service-cards, .testimonial-list, .faq-list {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { min-width: 0; }
}
@media (max-width: 620px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.12rem; }
  .footer-content, .container { padding: 0 8px; }
  .cookie-modal { min-width: 60vw; padding: 20px 7px 18px 14px; }
  .hero, .cta, .features, .services-overview { padding: 17px 0; }
}
@media (max-width: 430px) {
  .footer-content { gap: 16px; }
  .footer-brand, .footer-contact { min-width: 0 !important; }
}

/* =============== UTILITY CLASSES =============== */
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-24 { gap: 24px; }
.gap-16 { gap: 16px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.mb-60 { margin-bottom: 60px; }
.mb-20 { margin-bottom: 20px; }

/* =============== NEON HIGHLIGHT EFFECTS ============ */
.neon {
  color: #fff;
  text-shadow:
    0 0 2px #FFC542BB,
    0 0 6px #FFC54299,
    0 0 45px #FFC54244;
}

/* ==================== CUSTOM SCROLLBARS =================== */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #263247;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: #205073;
}
::-webkit-scrollbar-track {
  background: #182030;
}

/* =============== FOCUS STATES ============== */
a:focus, button:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 1.5px;
}

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