 :root {
   color-scheme: light;
   --bg: #f7f2ee;
   --surface: #ffffff;
   --ink: #2a2420;
   --muted: #5a5049;
   --accent: #8a4b3b;
   --accent-strong: #6f362a;
   --sage: #c8d2c4;
   --sand: #efe4d7;
   --shadow: 0 14px 30px rgba(42, 36, 32, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   background: rgba(247, 242, 238, 0.96);
   backdrop-filter: blur(6px);
   z-index: 30;
   border-bottom: 1px solid rgba(42, 36, 32, 0.08);
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .menu-toggle {
   border: 1px solid var(--ink);
   background: transparent;
   padding: 8px 12px;
   border-radius: 999px;
   display: flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
 }
 
 .menu-toggle-icon {
   width: 18px;
   height: 2px;
   background: var(--ink);
   position: relative;
 }
 
 .menu-toggle-icon::before,
 .menu-toggle-icon::after {
   content: "";
   position: absolute;
   left: 0;
   width: 18px;
   height: 2px;
   background: var(--ink);
 }
 
 .menu-toggle-icon::before {
   top: -6px;
 }
 
 .menu-toggle-icon::after {
   top: 6px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 18px;
   background: var(--surface);
   border-radius: 18px;
   box-shadow: var(--shadow);
   position: absolute;
   top: 70px;
   right: 4%;
   width: 220px;
 }
 
 .nav-links a {
   font-weight: 500;
 }
 
 .nav-open .nav-links {
   display: flex;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .section.sage {
   background: var(--sage);
 }
 
 .section-header {
   margin-bottom: 28px;
 }
 
 .section-header h2 {
   margin: 0 0 10px;
   font-size: 28px;
 }
 
 .section-header p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero {
   padding: 72px 0 40px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero h1 {
   font-size: 36px;
   margin: 0 0 12px;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--accent);
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-1px);
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   flex: 1 1 220px;
   box-shadow: var(--shadow);
 }
 
 .card h3 {
   margin: 10px 0 8px;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   background: var(--surface);
   border-radius: 999px;
   padding: 8px 14px;
   font-size: 14px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split .panel {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .stats {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .stat {
   flex: 1 1 180px;
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   text-align: center;
 }
 
 .stat strong {
   font-size: 26px;
   display: block;
 }
 
 .quote {
   font-size: 20px;
   font-weight: 500;
   margin: 0;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .process-step {
   display: flex;
   gap: 16px;
   background: var(--surface);
   padding: 18px;
   border-radius: 16px;
 }
 
 .process-step span {
   font-weight: 700;
   color: var(--accent);
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 16px;
   padding: 16px;
 }
 
 .faq-question {
   background: none;
   border: none;
   width: 100%;
   text-align: left;
   font-weight: 600;
   font-size: 16px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-answer {
   margin-top: 10px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 16px;
   border-radius: 16px;
   background: var(--surface);
 }
 
 .comparison-row strong {
   color: var(--accent);
 }
 
 .cta-panel {
   background: var(--accent);
   color: #fff;
   padding: 30px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cta-panel .btn {
   border-color: #fff;
   color: #fff;
 }
 
 .site-footer {
   background: #1f1a17;
   color: #f9f4f0;
   padding: 40px 0;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   width: min(520px, 90%);
   display: none;
   z-index: 40;
 }
 
 .cookie-banner.show {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(42, 36, 32, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 50;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   width: min(520px, 92%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid rgba(42, 36, 32, 0.12);
 }
 
 .cookie-toggle button {
   border: 1px solid var(--accent);
   background: transparent;
   color: var(--accent);
   border-radius: 999px;
   padding: 6px 12px;
   cursor: pointer;
 }
 
 .cookie-toggle button[aria-pressed="true"] {
   background: var(--accent);
   color: #fff;
 }
 
 @media (min-width: 900px) {
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     position: static;
     flex-direction: row;
     background: transparent;
     box-shadow: none;
     width: auto;
     padding: 0;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .split {
     flex-direction: row;
   }
 
   .comparison-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
