 :root {
   --bg: #f8f5f1;
   --ink: #1d1c1a;
   --muted: #5b5651;
   --accent: #7a4e2d;
   --accent-soft: #c7a489;
   --paper: #ffffff;
   --line: #e7dfd6;
   --shadow: rgba(21, 18, 15, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 0;
   background: var(--accent);
   color: var(--paper);
   padding: 8px 12px;
   z-index: 2000;
 }
 
 .skip-link:focus {
   left: 10px;
 }
 
 .site-header {
   background: var(--paper);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 1000;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 2px;
 }
 
 .brand strong {
   font-size: 1.2rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .brand span {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--paper);
   padding: 10px 12px;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .nav-toggle:focus-visible {
   outline: 2px solid var(--accent);
   outline-offset: 3px;
 }
 
 .site-nav {
   position: absolute;
   left: 0;
   right: 0;
   top: 70px;
   background: var(--paper);
   border-bottom: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 18px;
   transform: translateY(-12px);
   opacity: 0;
   pointer-events: none;
   transition: all 0.2s ease;
 }
 
 .site-nav.open {
   transform: translateY(0);
   opacity: 1;
   pointer-events: auto;
 }
 
 .site-nav a {
   font-weight: 500;
 }
 
 .site-nav a:hover {
   color: var(--accent);
 }
 
 .nav-inline {
   display: none;
 }
 
 @media (min-width: 860px) {
   .nav-toggle {
     display: none;
   }
 
   .site-nav {
     position: static;
     flex-direction: row;
     gap: 24px;
     padding: 0;
     border: none;
     opacity: 1;
     pointer-events: auto;
     transform: none;
   }
 
   .nav-inline {
     display: flex;
     align-items: center;
     gap: 24px;
   }
 }
 
 .hero {
   padding: 64px 0 40px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.3rem);
   line-height: 1.1;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--paper);
   background: var(--accent);
   font-weight: 600;
   gap: 8px;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .section {
   padding: 54px 0;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin: 0 0 16px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--paper);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 8px 20px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card svg {
   width: 40px;
 }
 
 .feature-row {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .feature-block {
   background: var(--paper);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 22px;
 }
 
 .highlight-panel {
   background: var(--accent);
   color: var(--paper);
   border-radius: 20px;
   padding: 28px;
 }
 
 .highlight-panel p {
   color: rgba(255, 255, 255, 0.85);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .stat {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: var(--paper);
   border-radius: 14px;
   padding: 16px;
   border: 1px solid var(--line);
 }
 
 .stat span {
   font-size: 1.5rem;
   font-weight: 700;
 }
 
 .testimonial {
   background: var(--paper);
   border-left: 4px solid var(--accent);
   padding: 20px;
   border-radius: 12px;
   box-shadow: 0 8px 16px var(--shadow);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .timeline-dot {
   width: 12px;
   height: 12px;
   background: var(--accent);
   border-radius: 999px;
   margin-top: 6px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 16px;
   background: var(--paper);
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .comparison-row strong {
   color: var(--accent);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 12px;
   background: var(--paper);
 }
 
 .faq-question {
   width: 100%;
   background: transparent;
   border: none;
   padding: 16px;
   font-size: 1rem;
   font-weight: 600;
   text-align: left;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .badge-list {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }
 
 .badge {
   padding: 6px 12px;
   background: var(--paper);
   border: 1px solid var(--line);
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .footer {
   background: #1a1816;
   color: #f4efe9;
   padding: 48px 0 24px;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-columns {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer small {
   color: #c7c0b8;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 16px;
   border-radius: 999px;
   background: var(--paper);
   border: 1px solid var(--line);
   font-weight: 600;
 }
 
 .cookie-banner,
 .cookie-modal {
   position: fixed;
   left: 0;
   right: 0;
   z-index: 3000;
 }
 
 .cookie-banner {
   bottom: 0;
   background: var(--paper);
   border-top: 1px solid var(--line);
   box-shadow: 0 -6px 18px var(--shadow);
   padding: 18px 0;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-banner .actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   top: 0;
   bottom: 0;
   background: rgba(10, 9, 8, 0.7);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 24px;
 }
 
 .cookie-modal.open {
   display: flex;
 }
 
 .cookie-modal .panel {
   background: var(--paper);
   border-radius: 18px;
   padding: 24px;
   max-width: 560px;
   width: 100%;
   box-shadow: 0 20px 40px var(--shadow);
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin: 16px 0;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   padding: 12px;
   border: 1px solid var(--line);
   border-radius: 12px;
 }
 
 .toggle-button {
   padding: 6px 12px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: transparent;
   color: var(--accent);
   cursor: pointer;
 }
 
 .toggle-button.active {
   background: var(--accent);
   color: var(--paper);
 }
 
 .section.alt {
   background: #f1ece6;
 }
 
 @media (min-width: 760px) {
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 calc(50% - 18px);
   }
 
   .feature-row,
   .split,
   .footer-columns,
   .comparison {
     flex-direction: row;
   }
 
   .feature-block,
   .comparison-row {
     flex: 1 1 0;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 calc(50% - 12px);
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-copy {
     flex: 1 1 60%;
   }
 
   .hero-art {
     flex: 1 1 40%;
   }
 
   .cookie-banner .actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
 
 @media (min-width: 1040px) {
   .card {
     flex: 1 1 calc(33.33% - 18px);
   }
 
   .stat {
     flex: 1 1 calc(25% - 12px);
   }
 }
