 :root {
   --bg: #f6f3ef;
   --surface: #ffffff;
   --ink: #1e2a2d;
   --muted: #4b5b60;
   --brand: #355c58;
   --brand-light: #7fa39b;
   --accent: #b45f4d;
   --line: #e0dad3;
   --shadow: 0 18px 45px rgba(16, 26, 30, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: min(1120px, 90%);
   margin: 0 auto;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.75rem;
   color: var(--brand);
   font-weight: 600;
 }
 
 .section h2 {
   font-size: clamp(1.6rem, 2.4vw, 2.4rem);
   margin: 0.6rem 0 1.2rem;
 }
 
 .section p {
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.7rem 1.4rem;
   border-radius: 999px;
   border: 1px solid var(--brand);
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--brand);
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-1px);
   box-shadow: 0 10px 25px rgba(53, 92, 88, 0.2);
 }
 
 .site-header {
   background: var(--surface);
   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: 1rem 0;
   gap: 1rem;
 }
 
 .logo {
   font-weight: 700;
   font-size: 1.1rem;
   letter-spacing: 0.03em;
 }
 
 .primary-nav {
   display: none;
   gap: 1.4rem;
   font-weight: 600;
 }
 
 .primary-nav a {
   color: var(--muted);
 }
 
 .primary-nav a:hover,
 .primary-nav a:focus-visible {
   color: var(--brand);
 }
 
 .menu-toggle {
   background: transparent;
   border: 1px solid var(--line);
   padding: 0.5rem 1rem;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .mobile-nav {
   position: fixed;
   inset: 0;
   background: rgba(14, 20, 22, 0.5);
   display: none;
   align-items: flex-start;
   justify-content: flex-end;
   padding: 1rem;
 }
 
 .mobile-nav.is-open {
   display: flex;
 }
 
 .mobile-nav-inner {
   background: var(--surface);
   width: min(320px, 90%);
   border-radius: 1rem;
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   box-shadow: var(--shadow);
 }
 
 .menu-close {
   align-self: flex-end;
   background: transparent;
   border: none;
   font-weight: 600;
 }
 
 .hero {
   padding: 4rem 0 3rem;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.6rem);
   margin-bottom: 1rem;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: 1.5rem;
   padding: 2rem;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero-actions {
   margin-top: 1.6rem;
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card-grid.space-top {
   margin-top: 2rem;
 }
 
 .card {
   background: var(--surface);
   border-radius: 1.2rem;
   padding: 1.5rem;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-item svg {
   width: 34px;
   height: 34px;
   flex-shrink: 0;
   color: var(--brand);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .stat {
   background: var(--surface);
   padding: 1.5rem;
   border-radius: 1rem;
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }
 
 .stat strong {
   font-size: 1.8rem;
 }
 
 .testimonial {
   background: var(--surface);
   padding: 1.6rem;
   border-radius: 1.2rem;
   border-left: 4px solid var(--accent);
 }
 
 .testimonial span {
   display: block;
   margin-top: 0.8rem;
   color: var(--muted);
   font-weight: 600;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .process-step {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
   background: var(--surface);
   padding: 1.2rem;
   border-radius: 1rem;
 }
 
 .process-step span {
   font-weight: 700;
   color: var(--accent);
   font-size: 1.3rem;
 }
 
 .services-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .service-card {
   background: var(--surface);
   padding: 1.5rem;
   border-radius: 1.2rem;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .comparison-item {
   background: var(--surface);
   padding: 1.2rem;
   border-radius: 1rem;
   border: 1px solid var(--line);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 0.9rem;
   background: var(--surface);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 1rem 1.2rem;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   gap: 1rem;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1.1rem;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .cta-panel {
   background: var(--brand);
   color: #fff;
   padding: 2.4rem;
   border-radius: 1.6rem;
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .cta-panel .btn {
   background: #fff;
   color: var(--brand);
   border-color: #fff;
 }
 
 .site-footer {
   background: #1c2628;
   color: #f9f4f0;
   padding: 3rem 0;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .footer-links a {
   color: #c9d5d2;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .tag {
   background: var(--surface);
   color: var(--brand);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.5rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   box-shadow: var(--shadow);
   border-radius: 1.2rem;
   padding: 1.4rem;
   width: min(520px, 92%);
   display: none;
   flex-direction: column;
   gap: 1rem;
   z-index: 40;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(14, 20, 22, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1rem;
   z-index: 50;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--surface);
   width: min(560px, 95%);
   padding: 2rem;
   border-radius: 1.4rem;
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   padding: 0.8rem 0;
   border-bottom: 1px solid var(--line);
 }
 
 .toggle-button {
   border: 1px solid var(--line);
   padding: 0.4rem 1rem;
   border-radius: 999px;
   background: transparent;
   font-weight: 600;
 }
 
 .toggle-button[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 .page-hero {
   padding: 3.5rem 0 2.5rem;
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .legal {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 @media (min-width: 768px) {
   .primary-nav {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
   }
 
   .card-grid,
   .stats,
   .services-grid,
   .comparison,
   .info-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .service-card,
   .comparison-item {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .feature-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-item {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .process-steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .process-step {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
   }
 }
