 :root {
   color-scheme: light;
   --ink: #1e2a21;
   --muted: #516055;
   --accent: #2f7d5c;
   --accent-dark: #1f5c44;
   --accent-soft: #e6f3ec;
   --sand: #f8f4ee;
   --peach: #f3e8dd;
   --white: #ffffff;
   --line: #d9e2d5;
   --shadow: 0 18px 40px rgba(24, 36, 28, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--white);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 h1,
 h2,
 h3,
 h4 {
   line-height: 1.2;
   margin: 0 0 0.6rem;
 }
 
 p {
   margin: 0 0 1rem;
   color: var(--muted);
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.85rem 1.5rem;
   border-radius: 999px;
   background: var(--accent);
   color: var(--white);
   font-weight: 600;
   border: none;
   transition: background 0.2s ease;
 }
 
 .button:hover,
 .button:focus {
   background: var(--accent-dark);
 }
 
 .button.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent);
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 20;
   background: var(--white);
   border-bottom: 1px solid var(--line);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.65rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand img {
   width: 36px;
   height: 36px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 1rem;
   padding: 1rem;
   position: absolute;
   top: 72px;
   right: 4%;
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: 16px;
   box-shadow: var(--shadow);
   min-width: 220px;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--white);
   border-radius: 999px;
   padding: 0.5rem 0.85rem;
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-links.is-open {
   display: flex;
 }
 
 .hero {
   padding: 3.5rem 0 3rem;
   background: var(--sand);
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--white);
   padding: 1.5rem;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .section {
   padding: 3rem 0;
 }
 
 .section.alt {
   background: var(--accent-soft);
 }
 
 .section.peach {
   background: var(--peach);
 }
 
 .section-head {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   margin-bottom: 1.8rem;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--white);
   border-radius: 20px;
   padding: 1.5rem;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 0.9rem;
 }
 
 .card .icon {
   width: 40px;
   height: 40px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat-item {
   background: var(--white);
   border-radius: 18px;
   padding: 1.2rem 1.5rem;
   border: 1px solid var(--line);
 }
 
 .stat-item strong {
   display: block;
   font-size: 1.5rem;
   color: var(--ink);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .quote {
   background: var(--white);
   border-left: 4px solid var(--accent);
   padding: 1.5rem;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .testimonial {
   background: var(--white);
   border-radius: 18px;
   padding: 1.4rem;
   border: 1px solid var(--line);
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .list span {
   display: flex;
   align-items: flex-start;
   gap: 0.6rem;
 }
 
 .list span::before {
   content: "•";
   color: var(--accent);
   font-weight: 700;
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .price {
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   border: 1px solid var(--line);
   padding: 1rem;
   border-radius: 14px;
   background: var(--white);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 0.9rem 1rem;
   background: var(--white);
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   font-weight: 600;
   color: var(--ink);
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1rem;
   padding: 0;
 }
 
 .faq-panel {
   margin-top: 0.8rem;
 }
 
 .cta {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   background: var(--accent);
   color: var(--white);
   padding: 2rem;
   border-radius: 24px;
 }
 
 .cta p {
   color: rgba(255, 255, 255, 0.85);
 }
 
 .site-footer {
   padding: 2.5rem 0;
   background: var(--sand);
   border-top: 1px solid var(--line);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .footer-links a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--white);
   border: 1px solid var(--line);
   padding: 1rem;
   border-radius: 16px;
   box-shadow: var(--shadow);
   width: min(520px, 92%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   background: rgba(30, 42, 33, 0.55);
   z-index: 40;
   padding: 1rem;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--white);
   border-radius: 20px;
   padding: 1.8rem;
   width: min(560px, 92%);
   box-shadow: var(--shadow);
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 0.9rem;
   margin: 1rem 0 1.5rem;
 }
 
 .cookie-option {
   display: flex;
   gap: 0.7rem;
   align-items: flex-start;
 }
 
 .cookie-option input {
   margin-top: 0.2rem;
 }
 
 .is-hidden {
   display: none;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     align-items: center;
     background: transparent;
     box-shadow: none;
     border: none;
     padding: 0;
     min-width: auto;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat-item {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .pricing {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison-row {
     flex: 1 1 240px;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-start;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
