 :root {
   color-scheme: light;
   --bg: #f6f5f2;
   --surface: #ffffff;
   --ink: #1f2933;
   --muted: #52606d;
   --brand: #2f6b5f;
   --brand-dark: #20443c;
   --accent: #c7a44d;
   --line: #e2e0da;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 header {
   position: sticky;
   top: 0;
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   z-index: 10;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--line);
   padding: 0.5rem 0.8rem;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .site-nav {
   display: none;
   flex-direction: column;
   gap: 0.6rem;
   padding: 1rem 0 1.4rem;
 }
 
 .site-nav a {
   color: var(--muted);
   font-weight: 500;
 }
 
 .site-nav.open {
   display: flex;
 }
 
 .hero {
   padding: 3.5rem 0 2rem;
 }
 
 .hero .intro {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero .highlight {
   background: var(--surface);
   border-radius: 1.2rem;
   padding: 1.5rem;
   border: 1px solid var(--line);
 }
 
 .section {
   padding: 2.5rem 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section .section-head {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-bottom: 1.5rem;
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .card {
   background: var(--surface);
   border-radius: 1rem;
   padding: 1.4rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .card strong {
   color: var(--brand-dark);
 }
 
 .feature-row {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .feature-row .feature {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-row .feature svg {
   width: 42px;
   height: 42px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--surface);
   padding: 1.2rem;
   border-radius: 1rem;
   border: 1px solid var(--line);
 }
 
 .stat span {
   display: block;
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--brand);
 }
 
 .quote {
   background: var(--brand);
   color: #fff;
   border-radius: 1.2rem;
   padding: 1.6rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .quote strong {
   color: #fff;
 }
 
 .cta {
   background: var(--brand-dark);
   color: #fff;
   border-radius: 1.2rem;
   padding: 2rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.7rem 1.3rem;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #1f1b12;
   font-weight: 600;
 }
 
 .button.ghost {
   background: transparent;
   border-color: #fff;
   color: #fff;
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .list li {
   list-style: none;
   padding-left: 1.6rem;
   position: relative;
 }
 
 .list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0.6rem;
   width: 8px;
   height: 8px;
   background: var(--accent);
   border-radius: 50%;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .service-card {
   background: var(--surface);
   border-radius: 1rem;
   padding: 1.5rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison .panel {
   border: 1px solid var(--line);
   border-radius: 1rem;
   padding: 1.2rem;
   background: var(--surface);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 0.8rem;
   background: var(--surface);
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   padding: 1rem 1.2rem;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .faq-item .panel {
   display: none;
   padding: 0 1.2rem 1rem;
   color: var(--muted);
 }
 
 .faq-item.open .panel {
   display: block;
 }
 
 footer {
   border-top: 1px solid var(--line);
   padding: 2rem 0;
   background: var(--surface);
 }
 
 footer .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   width: min(680px, 92%);
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 1rem;
   padding: 1.2rem;
   display: none;
   flex-direction: column;
   gap: 0.9rem;
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 41, 51, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 30;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .modal-content {
   background: var(--surface);
   border-radius: 1.2rem;
   padding: 1.6rem;
   width: min(640px, 92%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border: 1px solid var(--line);
   border-radius: 0.8rem;
   padding: 0.8rem 1rem;
 }
 
 .toggle-row button {
   border-radius: 999px;
   border: 1px solid var(--line);
   background: none;
   padding: 0.4rem 0.9rem;
 }
 
 .toggle-row button.active {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 @media (min-width: 768px) {
   .site-nav {
     display: flex;
     flex-direction: row;
     gap: 1.6rem;
     padding: 0;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero .intro {
     flex-direction: row;
     align-items: center;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid .card {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .feature-row {
     flex-direction: row;
   }
 
   .feature-row .feature {
     flex: 1 1 0;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1 1 0;
   }
 
   .two-col {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .two-col > div {
     flex: 1 1 0;
   }
 
   .service-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison .panel {
     flex: 1 1 0;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 
   footer .footer-links {
     flex-direction: row;
     gap: 1.4rem;
     flex-wrap: wrap;
   }
 }
