 :root {
   color-scheme: light;
   --bg: #f7f4f1;
   --bg-alt: #ffffff;
   --bg-muted: #efe7e1;
   --text: #1f1b17;
   --muted: #5c5148;
   --accent: #8b5a2b;
   --accent-dark: #6d421f;
   --accent-soft: #e7d3bf;
   --border: #dccfc4;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section-muted {
   background: var(--bg-muted);
 }
 
 .section-accent {
   background: var(--accent-soft);
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 16px;
 }
 
 .section-lead {
   color: var(--muted);
   max-width: 680px;
 }
 
 .site-header {
   background: var(--bg-alt);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
   position: absolute;
   top: 70px;
   right: 4%;
   background: var(--bg-alt);
   border: 1px solid var(--border);
   border-radius: 10px;
   padding: 16px;
   min-width: 200px;
   opacity: 0;
   pointer-events: none;
   transform: translateY(-10px);
   transition: 0.2s ease;
 }
 
 .nav.is-open {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }
 
 .nav-toggle {
   border: 1px solid var(--border);
   background: var(--bg-alt);
   padding: 8px 12px;
   border-radius: 8px;
   font-size: 0.95rem;
 }
 
 .nav a {
   font-weight: 600;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   margin: 0;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: var(--accent);
   color: #fff;
   padding: 10px 18px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 32px;
 }
 
 .card {
   background: var(--bg-alt);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 16px;
 }
 
 .pill {
   background: var(--bg-alt);
   border: 1px solid var(--border);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .icon-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .icon-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .icon-item img {
   width: 48px;
   height: 48px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 24px;
 }
 
 .stat {
   background: var(--bg-alt);
   border-radius: 14px;
   padding: 18px;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.6rem;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin-top: 24px;
 }
 
 .timeline-item {
   padding: 16px;
   border-left: 3px solid var(--accent);
   background: var(--bg-alt);
 }
 
 .testimonial {
   padding: 20px;
   border-radius: 16px;
   background: var(--bg-alt);
   border: 1px solid var(--border);
   font-style: italic;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 24px;
 }
 
 .faq-item {
   background: var(--bg-alt);
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 14px 16px;
   background: transparent;
   border: none;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .faq-answer {
   padding: 0 16px 14px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight {
   background: var(--bg-alt);
   border-radius: 18px;
   padding: 24px;
   border: 1px solid var(--border);
 }
 
 .footer {
   background: #1f1b17;
   color: #f4efe9;
   padding: 40px 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-top: 16px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--bg-alt);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   width: min(520px, 92%);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 27, 23, 0.55);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 30;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--bg-alt);
   border-radius: 20px;
   padding: 24px;
   width: min(560px, 92%);
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-option {
   background: var(--bg);
   border-radius: 12px;
   padding: 12px;
   border: 1px solid var(--border);
 }
 
 @media (min-width: 768px) {
   .nav {
     position: static;
     flex-direction: row;
     align-items: center;
     gap: 18px;
     background: transparent;
     border: none;
     padding: 0;
     opacity: 1;
     pointer-events: auto;
     transform: none;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-content,
   .hero-card {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 calc(33% - 12px);
   }
 
   .icon-row {
     flex-direction: row;
   }
 
   .icon-item {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .highlight {
     flex: 1;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 }
