 :root {
   color-scheme: light;
   --bg: #f6f9f6;
   --surface: #ffffff;
   --surface-alt: #eef4ef;
   --text: #1c2b22;
   --muted: #4a5b50;
   --primary: #1f7a4a;
   --primary-dark: #145333;
   --accent: #8ccf88;
   --border: #d6e2d8;
   --shadow: 0 10px 24px rgba(16, 48, 32, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section.alt {
   background: var(--surface-alt);
 }
 
 .section.dark {
   background: var(--primary-dark);
   color: #f2f7f3;
 }
 
 .section .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.78rem;
   color: var(--primary);
   font-weight: 600;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 1.5rem;
   box-shadow: var(--shadow);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   background: var(--primary);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--primary);
   border: 1px solid var(--primary);
 }
 
 .btn:focus-visible {
   outline: 3px solid var(--accent);
   outline-offset: 3px;
 }
 
 .btn:hover {
   background: var(--primary-dark);
   transform: translateY(-1px);
 }
 
 .header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand svg {
   width: 34px;
   height: 34px;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   position: absolute;
   top: 72px;
   right: 0;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 1.2rem;
   box-shadow: var(--shadow);
   width: min(240px, 90vw);
   opacity: 0;
   pointer-events: none;
   transform: translateY(-8px);
   transition: all 0.2s ease;
 }
 
 body.nav-open .nav-links {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--text);
 }
 
 .menu-toggle {
   background: transparent;
   border: 1px solid var(--border);
   border-radius: 10px;
   padding: 0.5rem 0.7rem;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
 }
 
 .menu-toggle svg {
   width: 24px;
   height: 24px;
 }
 
 @media (min-width: 860px) {
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     flex-direction: row;
     background: transparent;
     border: none;
     box-shadow: none;
     padding: 0;
     width: auto;
     opacity: 1;
     pointer-events: auto;
     transform: none;
     gap: 1.5rem;
   }
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .hero-panels {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .hero-panels .panel {
   padding: 1.2rem;
   border-radius: 16px;
   background: var(--surface);
   border: 1px solid var(--border);
 }
 
 @media (min-width: 900px) {
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-content,
   .hero-panels {
     flex: 1;
   }
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .grid.two {
   flex-direction: column;
 }
 
 .grid.three {
   flex-direction: column;
 }
 
 @media (min-width: 760px) {
   .grid.two {
     flex-direction: row;
   }
 
   .grid.two > * {
     flex: 1;
   }
 
   .grid.three {
     flex-direction: row;
   }
 
   .grid.three > * {
     flex: 1;
   }
 }
 
 .stat-bar {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   padding: 1rem 1.2rem;
   background: var(--surface);
   border-radius: 14px;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.5rem;
   display: block;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--primary);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .feature-list li {
   list-style: none;
   display: flex;
   gap: 0.8rem;
   align-items: flex-start;
 }
 
 .feature-list svg {
   width: 20px;
   height: 20px;
   margin-top: 0.2rem;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.4rem;
   border: 1px solid var(--border);
 }
 
 .testimonial span {
   display: block;
   margin-top: 0.8rem;
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison .card {
   border-left: 4px solid var(--accent);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .timeline-item {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 1rem 1.2rem;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 14px;
   background: var(--surface);
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   background: transparent;
   border: none;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-item button:focus-visible {
   outline: 3px solid var(--accent);
   outline-offset: 2px;
 }
 
 .faq-item .answer {
   padding: 0 1.2rem 1rem;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .answer {
   display: block;
 }
 
 .footer {
   padding: 2rem 0;
   background: var(--surface);
   border-top: 1px solid var(--border);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 @media (min-width: 760px) {
   .footer-links {
     flex-direction: row;
     gap: 1.5rem;
   }
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 1rem 1.4rem;
   box-shadow: var(--shadow);
   width: min(960px, 92%);
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.visible {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   margin-top: 1rem;
 }
 
 @media (min-width: 700px) {
   .cookie-actions {
     flex-direction: row;
     align-items: center;
   }
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(13, 26, 18, 0.55);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 40;
 }
 
 .modal.visible {
   display: flex;
 }
 
 .modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 1.6rem;
   width: min(680px, 96%);
   border: 1px solid var(--border);
 }
 
 .preference {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0.7rem 0;
   border-bottom: 1px solid var(--border);
 }
 
 .preference:last-child {
   border-bottom: none;
 }
 
 .toggle {
   background: var(--surface-alt);
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 0.35rem 0.9rem;
   cursor: pointer;
 }
 
 .toggle[aria-pressed="true"] {
   background: var(--primary);
   color: #fff;
   border-color: var(--primary);
 }
 
 .section-note {
   color: var(--muted);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 @media (min-width: 900px) {
   .split {
     flex-direction: row;
   }
 
   .split > * {
     flex: 1;
   }
 }
