 :root {
   color-scheme: light;
   --bg: #f7f6f2;
   --bg-alt: #ffffff;
   --ink: #1f2a2a;
   --muted: #5d6b6a;
   --brand: #2f6f6a;
   --brand-dark: #245652;
   --accent: #c7a64a;
   --line: #e3e0d8;
   --panel: #eef1ee;
   --shadow: 0 12px 32px rgba(22, 26, 25, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, 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, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--bg-alt);
 }
 
 .section.panel {
   background: var(--panel);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.75rem;
   color: var(--brand);
   margin: 0 0 12px;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0 0 12px;
 }
 
 h1 {
   font-size: 2.2rem;
 }
 
 h2 {
   font-size: 1.75rem;
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   margin: 0 0 16px;
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--brand);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   transition: background 0.2s ease;
   border: none;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand-dark);
   border: 1px solid var(--brand);
 }
 
 .button:focus-visible {
   outline: 3px solid rgba(47, 111, 106, 0.3);
   outline-offset: 2px;
 }
 
 .header {
   background: var(--bg-alt);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .brand svg {
   width: 28px;
   height: 28px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--bg-alt);
   position: absolute;
   top: 64px;
   right: 4vw;
   padding: 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-links a.active {
   color: var(--brand);
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--line);
   padding: 8px 12px;
   border-radius: 10px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .nav-toggle svg {
   width: 18px;
   height: 18px;
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .hero {
   padding: 72px 0 48px;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--bg-alt);
   border-radius: 24px;
   padding: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .trust-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .trust-item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 14px 16px;
   background: var(--panel);
   border-radius: 16px;
 }
 
 .trust-item svg {
   width: 24px;
   height: 24px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--bg-alt);
   padding: 20px;
   border-radius: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight {
   background: var(--brand);
   color: #fff;
   padding: 28px;
   border-radius: 20px;
 }
 
 .highlight p {
   color: rgba(255, 255, 255, 0.85);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--bg-alt);
   padding: 20px;
   border-radius: 16px;
   border-left: 4px solid var(--accent);
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
   color: var(--ink);
 }
 
 .quote {
   background: var(--panel);
   padding: 28px;
   border-radius: 20px;
   font-style: italic;
 }
 
 .process-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .process-step span {
   background: var(--accent);
   color: var(--ink);
   width: 32px;
   height: 32px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .testimonial {
   border-left: 3px solid var(--brand);
   padding-left: 16px;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--bg-alt);
   border-radius: 16px;
   border: 1px solid var(--line);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px 20px;
   background: transparent;
   border: none;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 20px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 14px;
   background: var(--bg-alt);
   border-radius: 14px;
 }
 
 .comparison-row strong {
   color: var(--brand-dark);
 }
 
 .footer {
   background: var(--ink);
   color: #fff;
   padding: 36px 0;
 }
 
 .footer a {
   color: rgba(255, 255, 255, 0.9);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer small {
   color: rgba(255, 255, 255, 0.7);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--bg-alt);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   width: min(540px, 92vw);
   box-shadow: var(--shadow);
   display: none;
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(18, 22, 21, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
 }
 
 .cookie-modal.open {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--bg-alt);
   padding: 24px;
   border-radius: 18px;
   width: min(620px, 92vw);
 }
 
 .cookie-option {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 0;
   border-bottom: 1px solid var(--line);
 }
 
 .cookie-toggle {
   border: 1px solid var(--line);
   background: var(--panel);
   padding: 6px 12px;
   border-radius: 999px;
   cursor: pointer;
 }
 
 .cookie-toggle[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 .contact-block {
   background: var(--bg-alt);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .service-price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 @media (min-width: 768px) {
   h1 {
     font-size: 2.8rem;
   }
 
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     gap: 20px;
     background: transparent;
     padding: 0;
     box-shadow: none;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .trust-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > * {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 220px;
   }
 
   .comparison-row {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
