 :root {
   --green-900: #0f3d2e;
   --green-700: #1b5a46;
   --green-500: #2c7a5f;
   --sand-100: #f7f4ef;
   --sand-200: #efe8de;
   --ink-900: #1b1b1b;
   --ink-600: #4b4b4b;
   --white: #ffffff;
   --accent: #e3a742;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink-900);
   background: var(--sand-100);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
 }
 
 .container {
   width: min(1100px, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section.alt {
   background: var(--sand-200);
 }
 
 .section.dark {
   background: var(--green-900);
   color: var(--white);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 0.8rem;
   color: var(--green-700);
   margin-bottom: 0.6rem;
 }
 
 .section.dark .eyebrow {
   color: #cfe3d9;
 }
 
 h1,
 h2,
 h3 {
   font-family: "Playfair Display", "Georgia", serif;
   margin: 0 0 1rem;
   line-height: 1.2;
 }
 
 p {
   margin: 0 0 1rem;
   color: var(--ink-600);
 }
 
 .section.dark p {
   color: #e2eee8;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.5rem;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--green-700);
   color: var(--white);
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn:hover {
   transform: translateY(-2px);
   background: var(--green-500);
 }
 
 .btn.outline {
   background: transparent;
   border-color: var(--green-700);
   color: var(--green-700);
 }
 
 .site-header {
   background: var(--white);
   border-bottom: 1px solid #e8e1d6;
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .menu-toggle {
   background: transparent;
   border: 1px solid #cfd6d0;
   padding: 0.5rem 0.9rem;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   padding: 1rem 0;
   width: 100%;
 }
 
 .nav-links a {
   padding: 0.25rem 0;
 }
 
 .nav-links[data-open="false"] {
   display: none;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   align-items: flex-start;
 }
 
 .hero-card {
   background: var(--white);
   padding: 1.5rem;
   border-radius: 1.25rem;
   box-shadow: 0 15px 30px rgba(22, 33, 28, 0.08);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--white);
   padding: 1.5rem;
   border-radius: 1rem;
   border: 1px solid #ece4d9;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .card.highlight {
   background: #fff7e6;
   border-color: #f2d7a4;
 }
 
 .icon-row {
   display: flex;
   gap: 1rem;
   align-items: center;
 }
 
 .stat-row {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--white);
   padding: 1rem 1.2rem;
   border-radius: 0.9rem;
   display: flex;
   justify-content: space-between;
   align-items: baseline;
 }
 
 .stat span {
   font-weight: 700;
   color: var(--green-700);
 }
 
 .testimonial {
   background: var(--white);
   border-radius: 1rem;
   padding: 1.5rem;
   border-left: 4px solid var(--accent);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-item svg {
   width: 32px;
   height: 32px;
   flex-shrink: 0;
 }
 
 .service-card {
   background: var(--white);
   padding: 1.5rem;
   border-radius: 1rem;
   border: 1px solid #ece4d9;
   display: flex;
   flex-direction: column;
   gap: 0.7rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--green-700);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison .card {
   border-color: #d9e6df;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .faq-item {
   background: var(--white);
   border-radius: 0.9rem;
   border: 1px solid #e6dfd4;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 1.2rem;
   background: transparent;
   border: none;
   font-weight: 600;
   text-align: left;
 }
 
 .faq-answer {
   max-height: 0;
   overflow: hidden;
   padding: 0 1.2rem;
   transition: max-height 0.25s ease;
 }
 
 .faq-item.is-open .faq-answer {
   max-height: 240px;
   padding-bottom: 1rem;
 }
 
 .page-hero {
   background: var(--sand-200);
   padding: 3rem 0;
 }
 
 .footer {
   background: var(--green-900);
   color: var(--white);
   padding: 2rem 0;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
 }
 
 .badge {
   background: #e8f0ec;
   color: var(--green-900);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .info-block {
   background: var(--white);
   padding: 1.5rem;
   border-radius: 1rem;
   border: 1px solid #e8e1d6;
 }
 
 .cookie-banner {
   position: fixed;
   left: 1rem;
   right: 1rem;
   bottom: 1rem;
   background: var(--white);
   border-radius: 1rem;
   border: 1px solid #e4ddd2;
   padding: 1rem 1.2rem;
   box-shadow: 0 20px 40px rgba(22, 33, 28, 0.2);
   display: none;
   z-index: 50;
 }
 
 .cookie-banner.is-visible {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 61, 46, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
   padding: 1.5rem;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--white);
   border-radius: 1.2rem;
   padding: 1.5rem;
   width: min(520px, 100%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .checkbox-row {
   display: flex;
   gap: 0.6rem;
   align-items: flex-start;
 }
 
 .visually-hidden {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   border: 0;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex !important;
     flex-direction: row;
     gap: 1.5rem;
     width: auto;
     padding: 0;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid > * {
     flex: 1 1 calc(50% - 1.5rem);
   }
 
   .stat-row {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison .card {
     flex: 1;
   }
 
   .footer-grid,
   .contact-grid {
     flex-direction: row;
   }
 
   .footer-grid > * {
     flex: 1;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 }
