 :root {
   color-scheme: light;
   --cream: #f7f1eb;
   --sand: #efe4d8;
   --clay: #c48a7a;
   --wine: #5b2a33;
   --ink: #2a1b1f;
   --olive: #8d7a65;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--cream);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 90%);
   margin: 0 auto;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   background: var(--white);
   border-bottom: 1px solid rgba(0, 0, 0, 0.08);
   z-index: 20;
 }
 
 .nav-inner {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   padding: 1rem 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.5px;
   color: var(--wine);
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
 }
 
 .nav-toggle {
   align-self: flex-start;
   padding: 0.6rem 0.9rem;
   border: 1px solid var(--wine);
   background: transparent;
   color: var(--wine);
   border-radius: 999px;
   font-size: 0.9rem;
   cursor: pointer;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   list-style: none;
   margin: 0;
   padding: 0;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
 }
 
 .nav-links.open {
   max-height: 300px;
 }
 
 .nav-links a {
   padding: 0.3rem 0;
   font-weight: 500;
 }
 
 .cta-link {
   color: var(--wine);
   font-weight: 600;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section-alt {
   background: var(--sand);
 }
 
 .section-dark {
   background: var(--wine);
   color: var(--white);
 }
 
 .section h2 {
   margin-top: 0;
   font-size: clamp(1.6rem, 2.8vw, 2.3rem);
 }
 
 .hero {
   padding: 4rem 0 3.5rem;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--white);
   padding: 2rem;
   border-radius: 24px;
   box-shadow: 0 18px 40px rgba(42, 27, 31, 0.1);
 }
 
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.spaced-note {
  margin-top: 0.8rem;
}

 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.4rem;
   padding: 0.75rem 1.3rem;
   border-radius: 999px;
   border: 1px solid var(--wine);
   background: var(--wine);
   color: var(--white);
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.outline {
   background: transparent;
   color: var(--wine);
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
   padding: 0;
   margin: 1.2rem 0 0;
   list-style: none;
 }
 
 .pill-list li {
   background: var(--white);
   border-radius: 999px;
   padding: 0.35rem 0.9rem;
   border: 1px solid rgba(0, 0, 0, 0.08);
   font-size: 0.9rem;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--white);
   padding: 1.6rem;
   border-radius: 18px;
   box-shadow: 0 12px 26px rgba(42, 27, 31, 0.08);
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--white);
   padding: 1.2rem 1.5rem;
   border-radius: 16px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
 }
 
 .testimonial {
   background: var(--white);
   padding: 1.6rem;
   border-radius: 18px;
   border-left: 4px solid var(--clay);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .feature {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 42px;
   height: 42px;
   border-radius: 12px;
   background: var(--clay);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-item {
   background: var(--white);
   border-radius: 16px;
   padding: 1.4rem;
   border: 1px solid rgba(0, 0, 0, 0.08);
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   background: var(--white);
   border-radius: 16px;
   overflow: hidden;
   border: 1px solid rgba(0, 0, 0, 0.08);
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   background: transparent;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-item .answer {
   padding: 0 1.2rem 1rem;
   display: none;
 }
 
 .faq-item.open .answer {
   display: block;
 }
 
 .footer {
   padding: 2.5rem 0;
   background: var(--ink);
   color: var(--white);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin: 1.2rem 0 0;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.2rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--white);
   border-radius: 20px;
   box-shadow: 0 18px 40px rgba(42, 27, 31, 0.2);
   padding: 1.2rem 1.5rem;
   width: min(960px, 92%);
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.active {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   margin-top: 1rem;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 40;
   padding: 1.5rem;
 }
 
 .modal.active {
   display: flex;
 }
 
 .modal-content {
   background: var(--white);
   border-radius: 20px;
   padding: 2rem;
   width: min(720px, 95%);
   max-height: 90vh;
   overflow-y: auto;
 }
 
 .modal-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .modal-close {
   border: none;
   background: transparent;
   font-size: 1.5rem;
   cursor: pointer;
 }
 
 .checkbox-group {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   margin: 1.5rem 0;
 }
 
 .checkbox-group label {
   display: flex;
   gap: 0.6rem;
   align-items: flex-start;
 }
 
 @media (min-width: 768px) {
   .nav-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     flex-direction: row;
     gap: 1.5rem;
     max-height: none;
     overflow: visible;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 250px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .feature-list {
     flex-direction: row;
   }
 
   .feature {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-item {
     flex: 1;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-start;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1.5rem;
   }
 }
