 :root {
   color-scheme: light;
   --bg: #f6f4f1;
   --surface: #ffffff;
   --accent: #2f5c4f;
   --accent-dark: #1f3b33;
   --muted: #6e6a62;
   --border: #d8d3cc;
   --highlight: #efe5d4;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: #1b1a18;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .brand svg {
   width: 34px;
   height: 34px;
 }
 
 .nav-toggle {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 10px 14px;
   border-radius: 8px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 nav {
   display: flex;
   align-items: center;
 }
 
 .nav-links {
   list-style: none;
   display: none;
   flex-direction: column;
   gap: 12px;
   position: absolute;
   top: 72px;
   right: 20px;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 18px;
   min-width: 190px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 .nav-links.is-open {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .cta-link {
   background: var(--accent);
   color: #fff;
   padding: 10px 16px;
   border-radius: 999px;
 }
 
 main {
   padding: 40px 0 70px;
 }
 
 .section {
   padding: 36px 0;
 }
 
 .section-alt {
   background: var(--surface);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
 }
 
 .section-highlight {
   background: var(--highlight);
 }
 
 .section-title {
   font-size: 1.6rem;
   margin-bottom: 18px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 1.4px;
   font-size: 0.75rem;
   color: var(--muted);
   margin-bottom: 10px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
   font-size: 0.95rem;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent);
 }
 
 .cards {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   width: 48px;
   height: 48px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 14px;
   padding: 18px;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.8rem;
   color: var(--accent-dark);
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 20px;
   border-radius: 12px;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .timeline-dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: var(--accent);
   margin-top: 6px;
 }
 
 .compare {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .compare-card {
   flex: 1;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 18px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px;
   background: transparent;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .info-box {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 18px;
 }
 
 footer {
   background: #141312;
   color: #f7f4ef;
   padding: 40px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 16px;
   border-radius: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 50;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(17, 16, 15, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
   padding: 20px;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 18px;
   padding: 22px;
   width: 100%;
   max-width: 520px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-option {
   display: flex;
   gap: 10px;
   align-items: flex-start;
 }
 
 .cookie-option input {
   margin-top: 4px;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     flex-direction: row;
     display: flex;
     background: transparent;
     border: none;
     box-shadow: none;
     padding: 0;
     gap: 20px;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-actions {
     flex-direction: row;
   }
 
   .cards,
   .stats,
   .service-list,
   .compare {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .service-card,
   .compare-card {
     flex: 1 1 240px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .info-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .info-box {
     flex: 1 1 260px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 }
