 :root {
   --bg: #f7f5f2;
   --text: #1f2a33;
   --muted: #556270;
   --accent: #2d6f6a;
   --accent-dark: #215652;
   --accent-soft: #e2f0ee;
   --sand: #f0e8dc;
   --white: #ffffff;
   --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
   --radius: 16px;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   display: block;
   max-width: 100%;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--white);
   position: sticky;
   top: 0;
   z-index: 20;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.6px;
   text-transform: lowercase;
   color: var(--accent-dark);
 }
 
 .site-nav {
   display: flex;
   align-items: center;
   gap: 12px;
   position: relative;
 }
 
 .mobile-toggle {
   background: var(--accent);
   color: var(--white);
   border: none;
   padding: 10px 14px;
   border-radius: 12px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   position: absolute;
   right: 0;
   top: 52px;
   background: var(--white);
   padding: 16px;
   border-radius: 14px;
   box-shadow: var(--shadow);
   min-width: 200px;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--text);
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--white);
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .section-title {
   font-size: clamp(1.6rem, 2vw, 2.2rem);
   margin-bottom: 16px;
 }
 
 .lead {
   color: var(--muted);
   max-width: 760px;
 }
 
 .hero {
   padding: 72px 0 64px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.2rem);
   line-height: 1.2;
 }
 
 .hero-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: var(--white);
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent-dark);
   border: 2px solid var(--accent);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .card {
   background: var(--white);
   padding: 22px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.sand {
   background: var(--sand);
 }
 
 .icon {
   width: 42px;
   height: 42px;
   color: var(--accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .stat {
   background: var(--white);
   padding: 18px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   box-shadow: var(--shadow);
 }
 
 .stat span {
   font-size: 1.4rem;
   font-weight: 700;
 }
 
 .testimonial {
   background: var(--white);
   padding: 22px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .quote {
   font-style: italic;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 14px;
 }
 
 .pill {
   padding: 8px 14px;
   background: var(--accent-soft);
   color: var(--accent-dark);
   border-radius: 999px;
   font-weight: 600;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin-top: 18px;
 }
 
 .step {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .step-number {
   min-width: 32px;
   height: 32px;
   border-radius: 50%;
   background: var(--accent);
   color: var(--white);
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 14px;
   background: var(--white);
   border-radius: 12px;
   box-shadow: var(--shadow);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .faq-item {
   background: var(--white);
   border-radius: 12px;
   box-shadow: var(--shadow);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px 18px;
   background: transparent;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 18px 16px;
   color: var(--muted);
 }
 
 .tag {
   background: var(--accent);
   color: var(--white);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
   display: inline-flex;
   align-items: center;
   gap: 6px;
 }
 
 .highlight {
   background: var(--accent-soft);
   padding: 22px;
   border-radius: var(--radius);
 }
 
 .footer {
   background: var(--text);
   color: var(--white);
   padding: 36px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer a {
   color: var(--white);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--white);
   padding: 18px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: none;
   z-index: 50;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 42, 51, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
 }
 
 .modal.is-open {
   display: flex;
 }
 
 .modal-content {
   background: var(--white);
   padding: 24px;
   border-radius: 18px;
   width: min(560px, 92%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .switch-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px;
   border-radius: 12px;
   background: var(--bg);
 }
 
 .switch-row input {
   width: 20px;
   height: 20px;
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-top: 12px;
 }
 
 .note {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 @media (min-width: 768px) {
   .hero-grid,
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-grid > div,
   .split > div {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 calc(33.333% - 12px);
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .nav-links {
     display: flex;
     position: static;
     flex-direction: row;
     background: transparent;
     padding: 0;
     box-shadow: none;
     min-width: 0;
     gap: 18px;
   }
 
   .mobile-toggle {
     display: none;
   }
 }
