 :root {
   --bg: #f6f3ef;
   --surface: #ffffff;
   --primary: #2f4a4f;
   --secondary: #7a6c5d;
   --accent: #c28b5b;
   --text: #1e1e1e;
   --muted: #5a5a5a;
   --line: #e3ddd5;
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--text);
   background: var(--bg);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.soft {
   background: #f1ece6;
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-bottom: 28px;
 }
 
 .eyebrow {
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 12px;
   color: var(--secondary);
 }
 
 h1,
 h2,
 h3 {
   margin: 0;
   line-height: 1.2;
 }
 
 p {
   margin: 0;
   line-height: 1.6;
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--primary);
   color: #fff;
   font-weight: 600;
   border: 1px solid transparent;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--primary);
   border-color: var(--primary);
 }
 
 .chip-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .top-gap-16 {
   margin-top: 16px;
 }
 
 .top-gap-20 {
   margin-top: 20px;
 }
 
 .button-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .chip {
   padding: 6px 12px;
   border-radius: 999px;
   background: #ebe4dc;
   font-size: 13px;
   color: var(--secondary);
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   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;
   font-size: 20px;
   color: var(--primary);
 }
 
 .nav-toggle {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: transparent;
   border: 1px solid var(--line);
   padding: 8px 12px;
   border-radius: 999px;
   font-weight: 600;
   color: var(--primary);
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px;
   border-radius: 16px;
   background: var(--surface);
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
   position: absolute;
   right: 4%;
   top: 70px;
   min-width: 200px;
 }
 
 body.nav-open .nav-links {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--primary);
 }
 
 .hero {
   padding: 72px 0 40px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 24px;
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   border: 1px solid var(--line);
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .feature {
   display: flex;
   gap: 14px;
   align-items: flex-start;
   background: var(--surface);
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .feature-icon {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: #f0e7dd;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stats {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .stat {
   flex: 1 1 180px;
   background: var(--surface);
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .quote {
   background: var(--primary);
   color: #fff;
   padding: 32px;
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .quote p {
   color: #f3efe9;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .price {
   font-weight: 700;
   color: var(--primary);
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .process-step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 32px;
   height: 32px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .faq-question {
   width: 100%;
   padding: 16px;
   background: transparent;
   border: none;
   text-align: left;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .tagline {
   font-weight: 600;
   color: var(--secondary);
 }
 
 .footer {
   background: #1f2f33;
   color: #f1ede8;
   padding: 40px 0;
 }
 
 .footer a {
   color: #f1ede8;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px 18px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--surface);
   border-radius: 18px;
   padding: 16px;
   border: 1px solid var(--line);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
   display: none;
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 24px;
   z-index: 30;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px;
   border-radius: 12px;
   background: #f1ece6;
 }
 
 .toggle-row input {
   width: 18px;
   height: 18px;
 }
 
 .table-like {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   border-bottom: 1px solid var(--line);
   padding-bottom: 12px;
 }
 
 .contact-card {
   background: var(--surface);
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 @media (min-width: 840px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     position: static;
     flex-direction: row;
     background: transparent;
     box-shadow: none;
     padding: 0;
     gap: 20px;
   }
 
   body.nav-open .nav-links {
     display: flex;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > * {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .comparison-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .table-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
