 :root {
   --bg: #f8f6f2;
   --surface: #ffffff;
   --ink: #1f1d1a;
   --muted: #6f6a63;
   --accent: #2f6f68;
   --accent-2: #b57a4b;
   --line: #e7e1d8;
   --highlight: #f0ede8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, 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, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--highlight);
 }
 
 .section.dark {
   background: #1f2322;
   color: #f7f4ef;
 }
 
 .section.dark a {
   color: #f7f4ef;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.72rem;
   color: var(--accent);
   font-weight: 600;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0 0 12px;
 }
 
 h1 {
   font-size: clamp(2rem, 4vw, 3rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 3vw, 2.4rem);
 }
 
 h3 {
   font-size: 1.1rem;
 }
 
 p {
   margin: 0 0 14px;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .btn.ghost {
   background: transparent;
   border-color: #fff;
   color: #fff;
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-1px);
 }
 
 .header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 30;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   font-size: 1.05rem;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 12px;
   background: var(--accent);
   color: #fff;
   font-weight: 700;
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: #fff;
   border-radius: 10px;
   padding: 8px 12px;
   font-weight: 600;
 }
 
 .nav {
   position: fixed;
   inset: 0 0 0 auto;
   width: min(280px, 80%);
   background: #fff;
   transform: translateX(100%);
   transition: transform 0.2s ease;
   padding: 80px 24px 24px;
   box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
 }
 
 .nav.open {
   transform: translateX(0);
 }
 
 .nav ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .nav a {
   font-weight: 600;
 }
 
 .nav-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.3);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s ease;
 }
 
 .nav-overlay.open {
   opacity: 1;
   pointer-events: auto;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 24px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-visual {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .pill {
   display: inline-flex;
   gap: 8px;
   align-items: center;
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--highlight);
   color: var(--accent);
   font-weight: 600;
   font-size: 0.85rem;
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
.service-card strong {
  font-size: 1.05rem;
  color: var(--accent-2);
}

 .card.highlight {
   border-color: var(--accent);
   background: #f3fbf9;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   font-size: 1.6rem;
   color: var(--accent);
 }
 
 .quote {
   font-size: 1.2rem;
   font-weight: 600;
 }
 
 .testimonial {
   border-left: 4px solid var(--accent);
   padding-left: 16px;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 36px;
   height: 36px;
   border-radius: 10px;
   background: var(--accent);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-radius: 14px;
   border: 1px solid var(--line);
   background: var(--surface);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 12px;
   background: #fff;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px;
   background: transparent;
   border: none;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   gap: 10px;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .cta-panel {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 28px;
   border-radius: 20px;
   background: var(--accent);
   color: #fff;
 }
 
 .footer {
   background: #141615;
   color: #e9e4dc;
   padding: 40px 0;
 }
 
 .footer a {
   color: #e9e4dc;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 16px 16px 16px;
   background: #fff;
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 16px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
   display: none;
   z-index: 40;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 50;
   padding: 16px;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-modal-card {
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   width: min(520px, 100%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .toggle-row button {
   border-radius: 999px;
   border: 1px solid var(--line);
   padding: 6px 14px;
   background: #fff;
   font-weight: 600;
 }
 
 .toggle-row button[aria-pressed="true"] {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 .divider {
   height: 1px;
   background: var(--line);
   border: none;
   margin: 24px 0;
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .info-item {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }
 
 .tag {
   padding: 8px 12px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .icon-row {
   display: flex;
   align-items: center;
   gap: 12px;
 }
 
 .icon-circle {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: #f3fbf9;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 @media (min-width: 800px) {
   .nav {
     position: static;
     transform: none;
     box-shadow: none;
     width: auto;
     padding: 0;
     background: transparent;
   }
 
   .nav ul {
     flex-direction: row;
     gap: 24px;
   }
 
   .nav-toggle,
   .nav-overlay {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid .card {
     flex: 1 1 calc(33.333% - 14px);
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .step {
     flex: 1 1 calc(50% - 12px);
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .two-col {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .two-col > * {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
