 :root {
   --bg: #f7f4f1;
   --text: #1e1c1a;
   --muted: #6f6a64;
   --brand: #8b5e5a;
   --brand-dark: #6e4542;
   --accent: #caa57a;
   --card: #ffffff;
   --line: #e6e0da;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: auto;
   width: 1px;
   height: 1px;
   overflow: hidden;
 }
 
 .skip-link:focus {
   position: static;
   width: auto;
   height: auto;
   padding: 8px 12px;
   background: var(--brand);
   color: #fff;
 }
 
 header {
   background: #fff;
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 30;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav-links {
   display: none;
   gap: 18px;
   align-items: center;
 }
 
 .nav-links a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .nav-cta {
   padding: 10px 16px;
   border-radius: 999px;
   background: var(--brand);
   color: #fff;
   font-size: 0.9rem;
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--line);
   padding: 8px 10px;
   border-radius: 8px;
 }
 
 .mobile-menu {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 14px 20px 20px;
   border-top: 1px solid var(--line);
   background: #fff;
 }
 
 .mobile-menu a {
   color: var(--muted);
 }
 
 .mobile-menu.open {
   display: flex;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 36px;
   padding: 24px 0 60px;
 }
 
 section {
   background: #fff;
   border-radius: 16px;
   padding: 28px;
   border: 1px solid var(--line);
 }
 
 .hero {
   background: linear-gradient(135deg, #fff 0%, #f2e9e3 100%);
   border: none;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   color: var(--brand);
   font-size: 0.95rem;
 }
 
 .btn.primary {
   background: var(--brand);
   color: #fff;
 }
 
 .section-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--card);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card.highlight {
   background: #fdf6f0;
   border-color: #ead9cc;
 }
 
 .icon {
   width: 36px;
   height: 36px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 14px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .stat {
   display: flex;
   align-items: baseline;
   justify-content: space-between;
   padding-bottom: 8px;
   border-bottom: 1px dashed var(--line);
 }
 
 .stat strong {
   font-size: 1.4rem;
   color: var(--brand-dark);
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-left: 4px solid var(--accent);
   background: #fcfaf8;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .compare {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .compare-row {
   display: flex;
   justify-content: space-between;
   gap: 12px;
   padding: 12px;
   border-radius: 12px;
   background: #f7f2ee;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 12px;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: #fff;
   border: none;
   padding: 14px 16px;
   font-size: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   display: none;
   padding: 0 16px 14px;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   padding: 4px 10px;
   border-radius: 999px;
   background: #f1e6dc;
   color: var(--brand-dark);
   font-size: 0.8rem;
 }
 
 footer {
   background: #fff;
   border-top: 1px solid var(--line);
   padding: 28px 0 40px;
   color: var(--muted);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: #fff;
   border-top: 1px solid var(--line);
   padding: 16px 20px;
   display: none;
   z-index: 50;
 }
 
 .cookie-banner.open {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
 }
 
 .cookie-modal.open {
   display: flex;
 }
 
 .modal-panel {
   background: #fff;
   border-radius: 16px;
   width: 90%;
   max-width: 520px;
   padding: 22px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 12px;
   border-radius: 12px;
   background: #f7f2ee;
 }
 
 @media (min-width: 900px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .section-grid.two {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .section-grid.two .card {
     flex: 1 1 calc(50% - 18px);
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > div {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 calc(50% - 16px);
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
