 :root {
   --bg: #f7f7f5;
   --surface: #ffffff;
   --ink: #1f2a2e;
   --muted: #516068;
   --brand: #2d7c74;
   --brand-dark: #1f5d56;
   --accent: #e6f2f0;
   --warm: #fff3e2;
   --border: #dde3e1;
   --shadow: 0 12px 28px rgba(31, 42, 46, 0.12);
 }
 
 * {
   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 {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.2px;
 }
 
 .nav-toggle {
   border: 1px solid var(--border);
   background: var(--surface);
   padding: 8px 12px;
   border-radius: 8px;
   font-weight: 600;
 }
 
 .nav {
   display: none;
   flex-direction: column;
   gap: 12px;
   position: absolute;
   top: 64px;
   right: 4%;
   background: var(--surface);
   padding: 16px;
   border-radius: 12px;
   box-shadow: var(--shadow);
   min-width: 200px;
 }
 
 .nav.open {
   display: flex;
 }
 
 .nav a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.2);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s ease;
   z-index: 10;
 }
 
 .nav-overlay.visible {
   opacity: 1;
   pointer-events: auto;
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.warm {
   background: var(--warm);
 }
 
 .section.accent {
   background: var(--accent);
 }
 
 .eyebrow {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   color: var(--brand-dark);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(2rem, 4vw, 3.2rem);
   margin: 0 0 8px;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   font-weight: 600;
   color: var(--surface);
   background: var(--brand);
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand-dark);
   border-color: var(--brand-dark);
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--border);
   box-shadow: 0 6px 16px rgba(31, 42, 46, 0.08);
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .icon-card {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .icon {
   width: 48px;
   height: 48px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .stat {
   display: flex;
   align-items: baseline;
   gap: 12px;
 }
 
 .stat span {
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .quote {
   font-size: 1.2rem;
   font-weight: 600;
   margin: 0;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--border);
 }
 
 .testimonial p {
   margin: 0 0 12px;
 }
 
 .taglist {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }
 
 .tag {
   padding: 6px 12px;
   background: var(--surface);
   border-radius: 999px;
   border: 1px solid var(--border);
   font-size: 0.9rem;
 }
 
 .process-step {
   display: flex;
   gap: 14px;
 }
 
 .step-number {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: var(--brand);
   color: var(--surface);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   flex-shrink: 0;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-item {
   background: var(--surface);
   padding: 18px;
   border-radius: 14px;
   border: 1px solid var(--border);
 }
 
 .faq-item {
   border-bottom: 1px solid var(--border);
   padding: 12px 0;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   font-weight: 600;
   font-size: 1rem;
   padding: 8px 0;
 }
 
 .faq-answer {
   display: none;
   color: var(--muted);
   padding-bottom: 8px;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .service-card {
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   background: var(--surface);
 }
 
 .service-card strong {
   display: block;
   margin-top: 12px;
   color: var(--brand-dark);
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer {
   padding: 32px 0 80px;
   background: #0f1b1e;
   color: #e9efee;
 }
 
 .footer a {
   color: #e9efee;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--surface);
   border: 1px solid var(--border);
   box-shadow: var(--shadow);
   border-radius: 16px;
   padding: 16px;
   display: none;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-banner.visible {
   display: flex;
   flex-direction: column;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-footer {
   margin-top: 16px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 27, 30, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 40;
   padding: 16px;
 }
 
 .modal.visible {
   display: flex;
 }
 
 .modal-panel {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   box-shadow: var(--shadow);
 }
 
 .toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .switch {
   width: 44px;
   height: 24px;
   background: var(--border);
   border-radius: 999px;
   position: relative;
 }
 
 .switch::after {
   content: "";
   position: absolute;
   top: 3px;
   left: 4px;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   background: var(--surface);
   transition: transform 0.2s ease;
 }
 
 .switch.active {
   background: var(--brand);
 }
 
 .switch.active::after {
   transform: translateX(18px);
 }
 
 @media (min-width: 768px) {
   .nav {
     position: static;
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 20px;
     background: transparent;
     padding: 0;
     box-shadow: none;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .nav-overlay {
     display: none;
   }
 
   .grid.two {
     flex-direction: row;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .cards > * {
     flex: 1 1 calc(50% - 10px);
   }
 
   .stats {
     flex-direction: row;
     gap: 24px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-item {
     flex: 1;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 }
