 :root {
   --bg: #f7f3ef;
   --text: #2b2420;
   --muted: #6a5f58;
   --brand: #e07a5f;
   --brand-dark: #b65c45;
   --accent: #3d6d66;
   --light: #ffffff;
   --panel: #f1e7df;
   --border: #e2d6cb;
   --shadow: 0 10px 30px rgba(43, 36, 32, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 0;
   background: var(--brand);
   color: var(--light);
   padding: 8px 12px;
   border-radius: 6px;
   z-index: 1000;
 }
 
 .skip-link:focus {
   left: 16px;
   top: 16px;
 }
 
 header {
   background: var(--light);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 14px 0;
   gap: 12px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.3px;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
 }
 
 .nav-links {
   display: none;
   gap: 18px;
   align-items: center;
 }
 
 .nav-links a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--text);
 }
 
 .menu-toggle {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 8px;
   padding: 8px 10px;
   display: flex;
   align-items: center;
   gap: 6px;
   color: var(--text);
 }
 
 .menu-toggle svg {
   width: 20px;
   height: 20px;
 }
 
 .mobile-nav {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--light);
   padding: 14px 20px 20px;
   border-top: 1px solid var(--border);
 }
 
 .mobile-nav.open {
   display: flex;
 }
 
 .mobile-nav a {
   color: var(--muted);
   padding: 6px 0;
 }
 
 .mobile-nav a:focus,
 .mobile-nav a:hover {
   color: var(--text);
 }
 
 main {
   padding: 28px 0 60px;
 }
 
 .section {
   padding: 42px 0;
 }
 
 .section.alt {
   background: var(--panel);
 }
 
 .section.light {
   background: var(--light);
 }
 
 .section h2 {
   margin-top: 0;
   font-size: 1.8rem;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 1.5px;
   font-size: 0.72rem;
   color: var(--accent);
   font-weight: 600;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   background: var(--light);
   padding: 36px 24px;
   border-radius: 22px;
   box-shadow: var(--shadow);
 }
 
 .hero h1 {
   margin: 0;
   font-size: 2.2rem;
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.primary {
   background: var(--brand);
   color: var(--light);
 }
 
 .button.primary:hover,
 .button.primary:focus {
   background: var(--brand-dark);
 }
 
 .button.ghost {
   background: transparent;
   border-color: var(--border);
   color: var(--text);
 }
 
 .button.ghost:hover,
 .button.ghost:focus {
   border-color: var(--brand);
   color: var(--brand);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--light);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card h3 {
   margin: 0;
   font-size: 1.2rem;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: var(--panel);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .quote {
   background: var(--accent);
   color: var(--light);
   border-radius: 20px;
   padding: 24px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   justify-content: space-between;
   background: var(--light);
   border-radius: 14px;
   padding: 14px 18px;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.3rem;
 }
 
 .badge-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   background: var(--light);
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 6px 14px;
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   background: var(--light);
   padding: 16px;
   border-radius: 16px;
   border: 1px solid var(--border);
 }
 
 .pricing {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .timeline-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .timeline-dot {
   width: 12px;
   height: 12px;
   background: var(--brand);
   border-radius: 50%;
   margin-top: 6px;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--light);
   border-radius: 16px;
   border: 1px solid var(--border);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 14px 18px;
   background: none;
   border: none;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 18px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .cta-panel {
   background: var(--brand);
   color: var(--light);
   border-radius: 24px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 footer {
   background: var(--text);
   color: var(--light);
   padding: 32px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .footer-links a {
   color: rgba(255, 255, 255, 0.7);
   font-size: 0.92rem;
 }
 
 .footer-links a:hover,
 .footer-links a:focus {
   color: var(--light);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--light);
   border: 1px solid var(--border);
   padding: 18px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   width: calc(100% - 40px);
   max-width: 560px;
   display: none;
   z-index: 50;
 }
 
 .cookie-banner.show {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(43, 36, 32, 0.55);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 60;
 }
 
 .modal.open {
   display: flex;
 }
 
 .modal-content {
   background: var(--light);
   border-radius: 18px;
   padding: 22px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .checkbox-group {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .checkbox-group label {
   display: flex;
   gap: 10px;
   align-items: flex-start;
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .info-card {
   background: var(--light);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 18px;
 }
 
 .map-card {
   background: var(--panel);
   border-radius: 18px;
   padding: 18px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding-left: 16px;
 }
 
 .list li {
   color: var(--muted);
 }
 
 .pill {
   background: var(--panel);
   border-radius: 999px;
   padding: 6px 14px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
 }
 
 @media (min-width: 720px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .mobile-nav {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-actions {
     flex-direction: row;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .feature-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature {
     flex: 1 1 220px;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 220px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 280px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .info-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .info-card {
     flex: 1 1 240px;
   }
 }
