 :root {
   --bg: #f7f4ef;
   --ink: #1b1a16;
   --muted: #6b6257;
   --brand: #2a6b4f;
   --brand-dark: #1f4f3b;
   --accent: #d97b3d;
   --card: #ffffff;
   --line: #e2d8ca;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 20px;
   display: flex;
   flex-direction: column;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: #f0e9df;
 }
 
 .section.dark {
   background: #1b1a16;
   color: #f9f6f1;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 .section-title {
   font-size: 1.8rem;
   margin: 10px 0 16px;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   transition: background 0.2s ease, color 0.2s ease;
 }
 
 .btn.outline {
   background: transparent;
   color: var(--brand);
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--brand-dark);
   color: #fff;
 }
 
 .btn.outline:hover,
 .btn.outline:focus {
   background: var(--brand);
   color: #fff;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 50;
   background: #fff;
   border-bottom: 1px solid var(--line);
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 14px 0;
 }
 
 .logo {
   font-weight: 700;
   font-size: 1.2rem;
   color: var(--brand-dark);
 }
 
 .menu-toggle {
   display: inline-flex;
   background: transparent;
   border: 1px solid var(--line);
   padding: 8px 12px;
   border-radius: 6px;
 }
 
 .nav {
   display: none;
   flex-direction: column;
   gap: 10px;
   padding: 16px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 8px;
 }
 
 body.nav-open .nav {
   display: flex;
 }
 
 .nav a {
   padding: 8px 10px;
   border-radius: 6px;
 }
 
 .nav a:hover,
 .nav a:focus {
   background: #f1ede6;
 }
 
 .hero {
   padding: 60px 0 40px;
 }
 
 .hero .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--card);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .badge {
   display: inline-flex;
   background: #f4e2d4;
   color: #8b4a1f;
   font-size: 0.8rem;
   padding: 4px 10px;
   border-radius: 999px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 40px;
   height: 40px;
   border-radius: 10px;
   background: #e7f0ea;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .stat {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 16px;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .timeline-item {
   padding: 14px;
   border-left: 3px solid var(--accent);
   background: #fff;
   border-radius: 8px;
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   background: #e7f0ea;
   color: var(--brand-dark);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .comparison .card {
   border-left: 4px solid var(--brand);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 12px;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   padding: 16px;
   background: transparent;
   border: none;
   text-align: left;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .cta {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .site-footer {
   background: #1b1a16;
   color: #f9f6f1;
   padding: 40px 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
   z-index: 100;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 120;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-modal .modal-card {
   background: #fff;
   border-radius: 16px;
   padding: 24px;
   width: 100%;
   max-width: 520px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .checkbox-row {
   display: flex;
   align-items: center;
   gap: 10px;
 }
 
 .notice {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 20px;
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .info-block {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 18px;
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 @media (min-width: 768px) {
   .menu-toggle {
     display: none;
   }
 
   .nav {
     display: flex;
     flex-direction: row;
     gap: 16px;
     background: transparent;
     border: none;
     padding: 0;
   }
 
   body.nav-open .nav {
     display: flex;
   }
 
   .hero .hero-grid {
     flex-direction: row;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 220px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .two-col {
     flex-direction: row;
   }
 }
