 :root {
   --bg: #f7f4ef;
   --text: #1f1f1f;
   --muted: #5d5a55;
   --brand: #2b6a6f;
   --brand-dark: #184449;
   --accent: #d57a4a;
   --panel: #ffffff;
   --line: #e2ded6;
 }
 
 * {
   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;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img, svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: min(1100px, 92vw);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--panel);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.5px;
   color: var(--brand-dark);
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--panel);
   color: var(--text);
   padding: 10px 14px;
   border-radius: 6px;
   font-weight: 600;
 }
 
 .nav-menu {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px;
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 10px;
   position: absolute;
   right: 4vw;
   top: 64px;
   min-width: 220px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 .nav-menu a {
   font-weight: 600;
   color: var(--brand-dark);
 }
 
 .nav-menu.is-open {
   display: flex;
 }
 
 .nav-inline {
   display: none;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand-dark);
   border-color: var(--brand-dark);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--panel);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 1px;
   font-size: 12px;
   color: var(--accent);
   font-weight: 700;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(30px, 5vw, 48px);
   line-height: 1.1;
   margin: 8px 0;
 }
 
 .hero-card {
   background: var(--panel);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--panel);
   padding: 22px;
   border-radius: 16px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .icon {
   width: 42px;
   height: 42px;
   color: var(--brand);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--panel);
   padding: 18px;
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .tag-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   background: #efe7dc;
   color: var(--brand-dark);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 13px;
   font-weight: 600;
 }
 
 .quote {
   background: var(--brand-dark);
   color: #fff;
   padding: 28px;
   border-radius: 18px;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .step {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .step-number {
   font-weight: 700;
   color: var(--accent);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 12px;
   background: var(--panel);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   border: 0;
   background: transparent;
   padding: 16px;
   font-weight: 700;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
 }
 
 .footer {
   padding: 36px 0 50px;
   background: #1d2c2c;
   color: #f9f4ee;
 }
 
 .footer a {
   color: #f9f4ee;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
   width: min(520px, 92vw);
   display: none;
   z-index: 50;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
 }
 
 .cookie-banner.is-visible {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .modal-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
 }
 
 .modal-overlay.is-visible {
   display: flex;
 }
 
 .modal {
   background: var(--panel);
   border-radius: 16px;
   padding: 20px;
   width: min(560px, 92vw);
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 12px 14px;
   margin: 10px 0;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .info-block {
   background: #efe7dc;
   padding: 18px;
   border-radius: 14px;
 }
 
 @media (min-width: 860px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-menu {
     position: static;
     display: none;
   }
 
   .nav-inline {
     display: flex;
     gap: 18px;
     align-items: center;
   }
 
   .nav-inline a {
     font-weight: 600;
     color: var(--brand-dark);
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-card, .hero-content {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 calc(50% - 20px);
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 18px;
   }
 }
