 :root {
   --bg: #f7f6f2;
   --text: #1d1f1a;
   --muted: #5b6056;
   --primary: #4b6a4f;
   --accent: #b9a26a;
   --white: #ffffff;
   --shadow: 0 12px 30px rgba(29, 31, 26, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   display: block;
   max-width: 100%;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 50;
   background: rgba(247, 246, 242, 0.96);
   backdrop-filter: blur(6px);
   border-bottom: 1px solid rgba(29, 31, 26, 0.08);
 }
 
 .header-inner {
   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.5px;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
   border-radius: 10px;
   background: var(--primary);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .brand-mark svg {
   width: 20px;
   height: 20px;
   fill: var(--white);
 }
 
 .nav-toggle {
   border: 1px solid rgba(29, 31, 26, 0.2);
   background: var(--white);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.95rem;
   display: flex;
   align-items: center;
   gap: 8px;
 }
 
 nav {
   display: none;
 }
 
 .mobile-menu {
   position: fixed;
   inset: 0;
   background: rgba(29, 31, 26, 0.4);
   display: none;
   align-items: flex-start;
   justify-content: flex-end;
   padding: 80px 24px 24px;
 }
 
 .mobile-menu.open {
   display: flex;
 }
 
 .mobile-menu-panel {
   background: var(--white);
   width: min(320px, 90%);
   padding: 24px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .mobile-menu-panel a {
   padding: 10px 0;
   border-bottom: 1px solid rgba(29, 31, 26, 0.08);
 }
 
 .hero {
   padding: 72px 0 48px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--white);
   padding: 28px;
   border-radius: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 1px;
   color: var(--muted);
 }
 
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   cursor: pointer;
 }
 
 .btn-primary {
   background: var(--primary);
   color: var(--white);
 }
 
 .btn-secondary {
   background: transparent;
   border-color: var(--primary);
   color: var(--primary);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section-title {
   margin: 0 0 14px;
   font-size: 1.8rem;
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--white);
   padding: 22px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(75, 106, 79, 0.12);
   color: var(--primary);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .price {
   font-weight: 700;
   color: var(--primary);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .testimonial {
   background: var(--white);
   border-radius: 20px;
   padding: 22px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .testimonial span {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .highlight {
   background: var(--primary);
   color: var(--white);
   border-radius: 24px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 footer {
   background: #ebe8df;
   padding: 32px 0;
   margin-top: 40px;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px 18px;
 }
 
 .contact-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   width: min(980px, 92%);
   background: var(--white);
   border-radius: 20px;
   box-shadow: var(--shadow);
   padding: 16px 20px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 60;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(29, 31, 26, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 24px;
   z-index: 70;
 }
 
 .cookie-modal.open {
   display: flex;
 }
 
 .cookie-modal-panel {
   background: var(--white);
   border-radius: 24px;
   width: min(640px, 96%);
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-option {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px 0;
   border-bottom: 1px solid rgba(29, 31, 26, 0.08);
 }
 
 .toggle {
   appearance: none;
   width: 44px;
   height: 24px;
   background: #c9cfc3;
   border-radius: 999px;
   position: relative;
   cursor: pointer;
 }
 
 .toggle::after {
   content: "";
   position: absolute;
   top: 3px;
   left: 4px;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   background: var(--white);
   transition: transform 0.2s ease;
 }
 
 .toggle:checked {
   background: var(--primary);
 }
 
 .toggle:checked::after {
   transform: translateX(18px);
 }
 
 @media (min-width: 900px) {
   nav {
     display: flex;
     gap: 20px;
     align-items: center;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .mobile-menu {
     display: none !important;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1 1 240px;
   }
 
   .footer-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
