 :root {
   color-scheme: light;
   --bg: #f7f6f2;
   --surface: #ffffff;
   --ink: #1d2a23;
   --muted: #4a5a51;
   --accent: #2f7e63;
   --accent-dark: #245e4a;
   --sun: #f1b24a;
   --sand: #efe6d8;
   --line: #d9dfd7;
   --shadow: 0 12px 30px rgba(23, 35, 28, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.tight {
   padding: 40px 0;
 }
 
 .section.light {
   background: var(--surface);
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .section.accent {
   background: #e7f2ec;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.78rem;
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-1px);
   background: var(--accent-dark);
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border-color: var(--accent-dark);
 }
 
 header {
   background: var(--surface);
   box-shadow: var(--shadow);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand svg {
   width: 36px;
   height: 36px;
 }
 
 .nav-links {
   position: fixed;
   inset: 0 0 0 30%;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding: 90px 32px 32px;
   transform: translateX(100%);
   transition: transform 0.3s ease;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .nav-links.is-open {
   transform: translateX(0);
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 8px 14px;
   font-weight: 600;
 }
 
 .nav-backdrop {
   display: none;
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.3);
 }
 
 .nav-backdrop.is-open {
   display: block;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: 24px;
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-visual {
   border-radius: 24px;
   background: linear-gradient(135deg, #cfe7d7, #f4e2c4);
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .feature-list,
 .stats,
 .cards,
 .testimonials,
 .faq-list,
 .service-list,
 .comparison,
 .steps {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
 }
 
 .card.accent {
   border-color: transparent;
   background: #f0f7f3;
 }
 
 .icon-circle {
   width: 46px;
   height: 46px;
   border-radius: 50%;
   background: #e7f2ec;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stat {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   font-size: 1.5rem;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 20px;
   padding: 24px;
   border-left: 6px solid var(--accent);
 }
 
 .faq-item {
   border-radius: 16px;
   background: var(--surface);
   border: 1px solid var(--line);
   overflow: hidden;
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 18px 20px;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .faq-item .answer {
   padding: 0 20px 18px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.is-open .answer {
   display: block;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   background: var(--surface);
   border: 1px solid var(--line);
   padding: 6px 14px;
   border-radius: 999px;
   font-size: 0.88rem;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
 }
 
 .service-card strong {
   font-size: 1.1rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .comparison-item {
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .steps .step {
   display: flex;
   gap: 16px;
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .steps .step span {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .highlight-panel {
   background: #213a31;
   color: #fff;
   border-radius: 22px;
   padding: 26px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer {
   background: #1a2a23;
   color: #f7f6f2;
   padding: 42px 0;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 50;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
   padding: 20px;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal .modal-content {
   background: var(--surface);
   border-radius: 20px;
   padding: 24px;
   width: min(560px, 92%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 0;
   border-bottom: 1px solid var(--line);
 }
 
 .toggle button {
   border-radius: 999px;
   border: 1px solid var(--line);
   padding: 6px 14px;
   background: #f3f6f2;
 }
 
 .toggle button[aria-pressed="true"] {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 @media (min-width: 768px) {
   .nav-links {
     position: static;
     transform: translateX(0);
     flex-direction: row;
     background: transparent;
     padding: 0;
     gap: 22px;
   }
 
   .nav-toggle,
   .nav-backdrop {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card,
   .hero-visual {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .cards,
   .feature-list,
   .stats,
   .testimonials,
   .service-list,
   .comparison,
   .steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .cards .card,
   .feature-list .card,
   .stats .stat,
   .testimonials .testimonial,
   .service-list .service-card,
   .comparison .comparison-item {
     flex: 1 1 260px;
   }
 
   .steps .step {
     flex: 1 1 280px;
   }
 
   .footer .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
