 :root {
   --green-900: #0f3b2f;
   --green-700: #1f5f4a;
   --green-500: #2f7f63;
   --teal-500: #1e8f8a;
   --amber-500: #f2b544;
   --slate-900: #1a1d1c;
   --slate-700: #3f4644;
   --slate-300: #d9e1dd;
   --slate-100: #f4f7f5;
   --white: #ffffff;
   --shadow: 0 12px 30px rgba(15, 59, 47, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--slate-900);
   background: var(--white);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92vw);
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 0;
   background: var(--green-700);
   color: var(--white);
   padding: 8px 14px;
   border-radius: 999px;
   z-index: 1000;
 }
 
 .skip-link:focus {
   left: 16px;
   top: 16px;
 }
 
 header {
   border-bottom: 1px solid var(--slate-300);
   background: var(--white);
   position: sticky;
   top: 0;
   z-index: 200;
 }
 
 .nav {
   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.4px;
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-toggle {
   border: 1px solid var(--slate-300);
   background: var(--white);
   padding: 8px 12px;
   border-radius: 8px;
   font-weight: 600;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px;
   background: var(--white);
   border: 1px solid var(--slate-300);
   border-radius: 12px;
   box-shadow: var(--shadow);
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--slate-700);
 }
 
 .nav-links.active {
   display: flex;
 }
 
 .hero {
   padding: 56px 0 40px;
   background: linear-gradient(120deg, rgba(47, 127, 99, 0.12), rgba(242, 181, 68, 0.2));
 }
 
 .hero h1 {
   font-size: clamp(2rem, 3.2vw, 3rem);
   margin-bottom: 16px;
 }
 
 .hero p {
   font-size: 1.05rem;
   color: var(--slate-700);
   margin-bottom: 24px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   background: var(--green-700);
   color: var(--white);
 }
 
 .btn.secondary {
   background: transparent;
   border-color: var(--green-700);
   color: var(--green-700);
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section.alt {
   background: var(--slate-100);
 }
 
 .section h2 {
   margin-bottom: 16px;
   font-size: clamp(1.5rem, 2.6vw, 2.3rem);
 }
 
 .section p {
   color: var(--slate-700);
 }
 
 .flex {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .split {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .column-60 {
   flex: 1 1 320px;
 }
 
 .column-40 {
   flex: 1 1 260px;
 }
 
 .column-50 {
   flex: 1 1 280px;
 }
 
 .column-55 {
   flex: 1 1 300px;
 }
 
 .column-45 {
   flex: 1 1 240px;
 }
 
 .card {
   border: 1px solid var(--slate-300);
   border-radius: 16px;
   padding: 20px;
   background: var(--white);
   box-shadow: var(--shadow);
   flex: 1 1 240px;
 }
 
 .card h3 {
   margin-top: 8px;
 }
 
 .icon {
   width: 40px;
   height: 40px;
 }
 
 .highlight {
   background: var(--green-900);
   color: var(--white);
   padding: 32px;
   border-radius: 20px;
 }
 
 .highlight p {
   color: rgba(255, 255, 255, 0.85);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 14px 18px;
   border-radius: 12px;
   background: var(--white);
   border: 1px solid var(--slate-300);
 }
 
 .stat strong {
   font-size: 1.4rem;
   color: var(--green-700);
 }
 
 .testimonial {
   background: var(--white);
   border-left: 4px solid var(--amber-500);
   padding: 20px;
   border-radius: 12px;
   box-shadow: var(--shadow);
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pill {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--slate-100);
   border: 1px solid var(--slate-300);
   font-weight: 600;
 }
 
 .accordion {
   border-top: 1px solid var(--slate-300);
 }
 
 .accordion-item {
   border-bottom: 1px solid var(--slate-300);
 }
 
 .accordion-button {
   width: 100%;
   background: none;
   border: none;
   text-align: left;
   padding: 16px 0;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
 }
 
 .accordion-content {
   display: none;
   padding-bottom: 16px;
   color: var(--slate-700);
 }
 
 .accordion-item.active .accordion-content {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-radius: 12px;
   background: var(--white);
   border: 1px solid var(--slate-300);
 }
 
 .footer {
   background: var(--slate-900);
   color: var(--white);
   padding: 40px 0;
 }
 
 .footer a {
   color: var(--white);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer small {
   color: rgba(255, 255, 255, 0.7);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--white);
   border: 1px solid var(--slate-300);
   border-radius: 16px;
   padding: 16px;
   display: none;
   box-shadow: var(--shadow);
   z-index: 300;
 }
 
 .cookie-banner.active {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 16px;
   z-index: 400;
 }
 
 .modal.active {
   display: flex;
 }
 
 .modal-content {
   background: var(--white);
   border-radius: 16px;
   padding: 24px;
   width: min(540px, 90vw);
   box-shadow: var(--shadow);
 }
 
 .modal-content h3 {
   margin-top: 0;
 }
 
 .modal-footer {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 20px;
 }
 
 .tagline {
   font-weight: 600;
   color: var(--teal-500);
 }
 
 .page-title {
   padding: 40px 0 24px;
 }
 
 .page-title p {
   color: var(--slate-700);
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     align-items: center;
     padding: 0;
     border: none;
     box-shadow: none;
     background: transparent;
   }
 
   .hero {
     padding: 80px 0 60px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 }
