 :root {
   --bg: #f7f4ef;
   --bg-alt: #ffffff;
   --text: #1f2421;
   --muted: #5a6460;
   --brand: #3a5a40;
   --brand-2: #588157;
   --accent: #e9c46a;
   --border: #d9d2c7;
   --shadow: 0 10px 30px rgba(31, 36, 33, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   padding: 0 20px;
   max-width: 1100px;
   margin: 0 auto;
 }
 
 header {
   background: var(--bg-alt);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .brand svg {
   width: 28px;
   height: 28px;
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: var(--bg);
   padding: 10px 12px;
   border-radius: 8px;
   font-weight: 600;
 }
 
 nav {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding-bottom: 16px;
 }
 
 nav.is-open {
   display: flex;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav-links a {
   padding: 6px 0;
   color: var(--muted);
 }
 
 .nav-cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: var(--brand);
   color: #fff;
   padding: 10px 14px;
   border-radius: 8px;
   font-weight: 600;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section--alt {
   background: var(--bg-alt);
 }
 
 .section--panel {
   background: #edf1ea;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 1.5px;
   font-size: 12px;
   color: var(--brand);
   margin-bottom: 10px;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0 0 14px;
 }
 
 h1 {
   font-size: 32px;
 }
 
 h2 {
   font-size: 26px;
 }
 
 h3 {
   font-size: 20px;
 }
 
 p {
   margin: 0 0 16px;
   color: var(--muted);
 }
 
 .grid,
 .flex {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   background: var(--bg-alt);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 20px;
   flex: 1 1 240px;
   box-shadow: var(--shadow);
 }
 
 .card--flat {
   box-shadow: none;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 16px;
   border-radius: 8px;
   border: 1px solid var(--brand);
   color: var(--brand);
   font-weight: 600;
   background: transparent;
 }
 
 .button.button--solid {
   background: var(--brand);
   color: #fff;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-visual {
   background: var(--bg-alt);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 20px;
 }
 
 .stat {
   flex: 1 1 140px;
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 14px;
   border-radius: 12px;
   background: #fefaf0;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 22px;
   color: var(--text);
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-card .price {
   color: var(--brand);
   font-weight: 700;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 32px;
   height: 32px;
   border-radius: 8px;
   background: #e0eadf;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .testimonial {
   background: #fff;
   border-left: 4px solid var(--brand);
   padding: 18px;
   border-radius: 12px;
 }
 
 .quote {
   font-style: italic;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 10px;
   border-radius: 999px;
   background: #f1f5f3;
   color: var(--brand);
   font-size: 12px;
   font-weight: 600;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   padding: 14px;
   border: 1px dashed var(--border);
   border-radius: 12px;
   background: #fdfcf9;
 }
 
 .comparison-row span {
   flex: 1 1 180px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   padding: 14px;
   background: #fff;
 }
 
 .faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   background: none;
   border: none;
   font-weight: 600;
   text-align: left;
   padding: 0;
 }
 
 .faq-answer {
   display: none;
   margin-top: 10px;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 footer {
   background: #1f2421;
   color: #f0f3ef;
   padding: 40px 0;
 }
 
 footer a {
   color: #f0f3ef;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .footer-col {
   flex: 1 1 200px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   z-index: 50;
   display: none;
 }
 
 .cookie-banner.is-visible {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(31, 36, 33, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
 }
 
 .modal-backdrop.is-open {
   display: flex;
 }
 
 .modal {
   background: #fff;
   border-radius: 16px;
   padding: 20px;
   width: min(92%, 520px);
   border: 1px solid var(--border);
   box-shadow: var(--shadow);
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 10px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .toggle-row:last-child {
   border-bottom: none;
 }
 
 .toggle-button {
   padding: 6px 12px;
   border-radius: 999px;
   border: 1px solid var(--border);
   background: #f6f7f4;
   font-weight: 600;
 }
 
 .toggle-button[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 .notice {
   background: #fff8e8;
   border: 1px solid #f1d4a7;
   padding: 14px;
   border-radius: 12px;
 }
 
 .list-check {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .list-check span {
   display: flex;
   gap: 10px;
   align-items: flex-start;
 }
 
 .list-check svg {
   width: 18px;
   height: 18px;
   color: var(--brand);
 }
 
 .contact-block {
   background: var(--bg-alt);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 20px;
 }
 
 @media (min-width: 820px) {
   h1 {
     font-size: 42px;
   }
 
   nav {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     padding-bottom: 0;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     flex-direction: row;
     align-items: center;
     gap: 18px;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-copy,
   .hero-visual {
     flex: 1 1 50%;
   }
 }
