:root {
   color-scheme: light;
   --bg: #f8f4ef;
   --surface: #ffffff;
   --ink: #2b2622;
   --muted: #5c514a;
   --accent: #7b4f2a;
   --accent-dark: #5b381d;
   --soft: #efe6da;
   --highlight: #e4d2bb;
   --border: #d9cbb9;
   --radius: 18px;
   --shadow: 0 14px 30px rgba(43, 38, 34, 0.12);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 header {
   background: var(--surface);
   position: sticky;
   top: 0;
   z-index: 20;
   border-bottom: 1px solid var(--border);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 600;
   letter-spacing: 0.04em;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--border);
   padding: 0.6rem 0.9rem;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .nav-links {
   position: absolute;
   top: 72px;
   left: 0;
   right: 0;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   padding: 1rem 4%;
   border-bottom: 1px solid var(--border);
   transform: translateY(-200%);
   transition: transform 0.3s ease;
 }
 
 .nav-links a {
   font-weight: 500;
 }
 
 .nav-links.is-open {
   transform: translateY(0%);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 0.7rem 1.4rem;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 3.5rem;
   padding: 2.5rem 0 4rem;
 }
 
 section {
   background: var(--surface);
   padding: 2.2rem;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .hero {
   background: linear-gradient(135deg, var(--soft), var(--surface));
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   background: var(--highlight);
   padding: 0.35rem 0.8rem;
   border-radius: 999px;
   font-size: 0.85rem;
   font-weight: 600;
   width: fit-content;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card {
   background: var(--soft);
   border-radius: 16px;
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 0.9rem;
 }
 
 .card.alternate {
   background: var(--surface);
   border: 1px solid var(--border);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 0.7rem;
   color: var(--muted);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   display: flex;
   align-items: baseline;
   gap: 1rem;
   border-bottom: 1px solid var(--border);
   padding-bottom: 0.8rem;
 }
 
 .stat strong {
   font-size: 1.8rem;
   color: var(--accent-dark);
 }
 
 .testimonial {
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 1.4rem 1.6rem;
   border-radius: 12px;
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .feature {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 40px;
   height: 40px;
   background: var(--highlight);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   border: 1px solid var(--border);
   padding: 1rem;
   border-radius: 12px;
   background: var(--surface);
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   padding: 0.9rem 1.1rem;
   background: var(--surface);
 }
 
 .faq-question {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: none;
   border: none;
   font-size: 1rem;
   font-weight: 600;
   text-align: left;
   cursor: pointer;
   color: var(--ink);
 }
 
 .faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   max-height: 240px;
   padding-top: 0.6rem;
 }
 
 .footer {
   background: var(--surface);
   border-top: 1px solid var(--border);
   padding: 2rem 0 3rem;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 1.6rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 1rem;
   right: 1rem;
   bottom: 1rem;
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 1rem;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   z-index: 40;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(43, 38, 34, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 50;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   padding: 2rem;
   border-radius: 18px;
   width: min(560px, 100%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   gap: 1rem;
   padding: 0.7rem 0;
   border-bottom: 1px solid var(--border);
   color: var(--muted);
 }
 
 .toggle-btn {
   border: 1px solid var(--border);
   padding: 0.3rem 0.9rem;
   border-radius: 999px;
   background: var(--soft);
   cursor: pointer;
 }
 
 .toggle-btn[aria-pressed="true"] {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 .section-accent {
   background: var(--soft);
 }
 
 .section-highlight {
   background: var(--highlight);
 }
 
 .icon {
   width: 22px;
   height: 22px;
   fill: none;
   stroke: var(--accent-dark);
   stroke-width: 1.6;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     position: static;
     flex-direction: row;
     transform: translateY(0%);
     background: none;
     border: none;
     padding: 0;
     gap: 1.5rem;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-grid > div {
     flex: 1;
   }
 
   .cards {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > div {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex-direction: column;
     align-items: flex-start;
     border-bottom: none;
     border-right: 1px solid var(--border);
     padding-right: 1.2rem;
     flex: 1;
   }
 
   .stat:last-child {
     border-right: none;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
