 :root {
   --navy: #1f2a44;
   --slate: #3a475d;
   --sky: #b9d6ff;
   --mint: #cfead6;
   --sand: #f4f1ea;
   --white: #ffffff;
   --accent: #2f7ebc;
   --accent-dark: #215a86;
   --warm: #f9d8b4;
   --shadow: 0 18px 40px rgba(31, 42, 68, 0.12);
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--navy);
   background: var(--white);
   line-height: 1.6;
 }

 img,
 svg {
   max-width: 100%;
   display: block;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 p {
   margin: 0 0 1rem;
 }

 h1,
 h2,
 h3,
 h4 {
   margin: 0 0 0.75rem;
   line-height: 1.2;
 }

 ul {
   margin: 0;
   padding: 0;
   list-style: none;
 }

 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }

 .section {
   padding: 64px 0;
 }

 .section--alt {
   background: var(--sand);
 }

 .section--tint {
   background: #f6f9fc;
 }

 .section-title {
   max-width: 640px;
 }

 .eyebrow {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--accent);
   margin-bottom: 0.5rem;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   background: var(--accent);
   color: var(--white);
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
 }

 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
   transform: translateY(-1px);
 }

 .btn-secondary {
   background: var(--navy);
 }

 .btn-tertiary {
   background: transparent;
   color: var(--navy);
   border: 1px solid rgba(31, 42, 68, 0.2);
 }

 .btn-tertiary:hover,
 .btn-tertiary:focus {
   background: rgba(31, 42, 68, 0.08);
 }

 .site-header {
   position: sticky;
   top: 0;
   background: var(--white);
   border-bottom: 1px solid rgba(31, 42, 68, 0.08);
   z-index: 20;
 }

 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }

 .brand {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 0.02em;
 }

 .menu-toggle {
   border: 1px solid rgba(31, 42, 68, 0.2);
   background: var(--white);
   width: 44px;
   height: 44px;
   border-radius: 10px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
 }

 .menu-icon {
   width: 20px;
   height: 2px;
   background: var(--navy);
   position: relative;
 }

 .menu-icon::before,
 .menu-icon::after {
   content: "";
   position: absolute;
   left: 0;
   width: 20px;
   height: 2px;
   background: var(--navy);
 }

 .menu-icon::before {
   top: -6px;
 }

 .menu-icon::after {
   top: 6px;
 }

 .nav-links {
   position: absolute;
   top: 72px;
   right: 4%;
   background: var(--white);
   border-radius: 14px;
   padding: 1rem;
   display: none;
   flex-direction: column;
   gap: 0.75rem;
   box-shadow: var(--shadow);
 }

 .nav-links a {
   font-weight: 500;
 }

 .nav-links.open {
   display: flex;
 }

 .hero {
   padding: 80px 0 70px;
   background: linear-gradient(120deg, #f7fbff, #f0f5ff);
 }

 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
 }

 .hero-card {
   background: var(--white);
   border-radius: 18px;
   padding: 1.5rem;
   box-shadow: var(--shadow);
 }

 .hero-highlight {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 .meta-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 .meta-item {
   display: flex;
   gap: 0.75rem;
   align-items: flex-start;
 }

 .icon-circle {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--sky);
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }

 .icon {
   width: 22px;
   height: 22px;
 }

 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }

 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }

 .card {
   background: var(--white);
   padding: 1.5rem;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }

 .card--soft {
   background: #f5f8ff;
   box-shadow: none;
 }

 .tag {
   display: inline-flex;
   align-items: center;
   padding: 0.25rem 0.8rem;
   border-radius: 999px;
   background: var(--mint);
   font-size: 0.85rem;
   margin-bottom: 0.75rem;
 }

 .stats-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 .stat {
   background: var(--white);
   border-radius: 16px;
   padding: 1.2rem;
   border: 1px solid rgba(31, 42, 68, 0.1);
 }

 .stat strong {
   display: block;
   font-size: 1.6rem;
 }

 .quote {
   background: var(--navy);
   color: var(--white);
   border-radius: 18px;
   padding: 2rem;
 }

 .quote p {
   font-size: 1.1rem;
 }

 .testimonial {
   background: var(--white);
   border-radius: 16px;
   padding: 1.5rem;
   box-shadow: var(--shadow);
 }

 .testimonial span {
   display: block;
   margin-top: 1rem;
   font-weight: 600;
 }

 .list-check {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }

 .list-check li {
   display: flex;
   gap: 0.6rem;
   align-items: flex-start;
 }

 .list-check svg {
   margin-top: 0.2rem;
 }

 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
 }

 .step {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }

 .step span {
   width: 34px;
   height: 34px;
   border-radius: 8px;
   background: var(--accent);
   color: var(--white);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }

 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 .comparison-card {
   border: 1px solid rgba(31, 42, 68, 0.12);
   border-radius: 16px;
   padding: 1.5rem;
 }

 .comparison-card strong {
   font-size: 1.2rem;
 }

 .faq {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 .faq-item {
   border-radius: 14px;
   border: 1px solid rgba(31, 42, 68, 0.12);
   padding: 1rem 1.2rem;
   background: var(--white);
 }

 .faq-question {
   width: 100%;
   background: none;
   border: none;
   text-align: left;
   font-weight: 600;
   font-size: 1rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   cursor: pointer;
 }

 .faq-answer {
   margin-top: 0.75rem;
   display: none;
 }

 .faq-item.open .faq-answer {
   display: block;
 }

 .cta {
   background: var(--accent);
   color: var(--white);
   border-radius: 24px;
   padding: 2rem;
 }

 .cta .btn {
   background: var(--white);
   color: var(--accent);
 }

 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }

 .info-card {
   border-radius: 16px;
   padding: 1.5rem;
   background: var(--white);
   border: 1px solid rgba(31, 42, 68, 0.1);
 }

 .site-footer {
   background: var(--navy);
   color: var(--white);
   padding: 48px 0;
 }

 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }

 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }

 .legal-links {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }

 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: var(--navy);
   color: var(--white);
   padding: 1rem 0;
   display: none;
   z-index: 30;
 }

 .cookie-banner.visible {
   display: block;
 }

 .cookie-inner {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }

 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 42, 68, 0.55);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 40;
 }

 .cookie-modal.open {
   display: flex;
 }

 .modal-content {
   background: var(--white);
   border-radius: 18px;
   padding: 1.8rem;
   width: min(560px, 92%);
   box-shadow: var(--shadow);
 }

 .modal-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1rem;
 }

 .icon-button {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: 1px solid rgba(31, 42, 68, 0.2);
   background: var(--white);
   cursor: pointer;
 }

 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin: 1.5rem 0;
 }

 .cookie-option {
   display: flex;
   justify-content: space-between;
   gap: 1rem;
   align-items: center;
 }

 .toggle {
   padding: 0.4rem 0.9rem;
   border-radius: 999px;
   border: 1px solid rgba(31, 42, 68, 0.2);
   background: var(--white);
   cursor: pointer;
   font-weight: 600;
 }

 .toggle.active {
   background: var(--accent);
   color: var(--white);
   border-color: var(--accent);
 }

 .toggle.is-locked {
   cursor: default;
   opacity: 0.8;
 }

 .modal-actions {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }

 .visually-hidden {
   border: 0;
   clip: rect(0 0 0 0);
   height: 1px;
   margin: -1px;
   overflow: hidden;
   padding: 0;
   position: absolute;
   width: 1px;
 }

 @media (min-width: 780px) {
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     background: transparent;
     padding: 0;
     box-shadow: none;
     gap: 1.5rem;
   }

   .menu-toggle {
     display: none;
   }

   .hero-grid {
     flex-direction: row;
     align-items: center;
   }

   .split {
     flex-direction: row;
   }

   .card-grid {
     flex-direction: row;
   }

   .card-grid .card {
     flex: 1;
   }

   .stats-list {
     flex-direction: row;
   }

   .stat {
     flex: 1;
   }

   .process-steps {
     flex-direction: row;
   }

   .step {
     flex: 1;
   }

   .comparison {
     flex-direction: row;
   }

   .comparison-card {
     flex: 1;
   }

   .info-grid {
     flex-direction: row;
   }

   .info-card {
     flex: 1;
   }

   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }

   .cookie-inner {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }

   .cookie-actions {
     flex-direction: row;
   }

   .modal-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
