 :root {
   --bg: #f7f4f0;
   --text: #1d1a16;
   --muted: #5a5248;
   --brand: #2f6f6d;
   --brand-dark: #1f4d4c;
   --accent: #e8c45b;
   --surface: #ffffff;
   --surface-alt: #efe9e2;
   --border: #e0d7cf;
   --shadow: 0 20px 40px rgba(31, 29, 27, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 30;
 }
 
 .nav-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.1rem;
   letter-spacing: 0.02em;
 }
 
 .nav-toggle {
   border: 1px solid var(--border);
   background: var(--surface-alt);
   color: var(--text);
   padding: 0.6rem 1rem;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .site-nav {
   position: absolute;
   top: 64px;
   right: 4%;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   padding: 1rem;
   min-width: 200px;
   opacity: 0;
   pointer-events: none;
   transform: translateY(-8px);
   transition: 0.2s ease;
 }
 
 .site-nav.open {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }
 
 .site-nav a {
   color: var(--text);
   font-weight: 500;
 }
 
 .mobile-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(28, 26, 24, 0.3);
   opacity: 0;
   pointer-events: none;
   transition: 0.2s ease;
   z-index: 20;
 }
 
 .mobile-backdrop.visible {
   opacity: 1;
   pointer-events: auto;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 3rem;
   padding: 2.5rem 0 4rem;
 }
 
 section {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .section-card {
   background: var(--surface);
   border-radius: 24px;
   padding: 2rem;
   box-shadow: var(--shadow);
 }
 
 .section-soft {
   background: var(--surface-alt);
   border-radius: 24px;
   padding: 2rem;
 }
 
 .eyebrow {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   color: var(--brand);
   font-weight: 600;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.25;
 }
 
 h1 {
   font-size: clamp(2rem, 4vw, 3.2rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 3vw, 2.4rem);
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   background: var(--surface);
   padding: 2.5rem;
   border-radius: 28px;
   box-shadow: var(--shadow);
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.9rem 1.5rem;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
 }
 
 .button.primary {
   background: var(--brand);
   color: #fff;
 }
 
 .button.secondary {
   background: transparent;
   border-color: var(--brand);
   color: var(--brand);
 }
 
 .grid-cards {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .card {
   background: var(--surface);
   border-radius: 20px;
   padding: 1.5rem;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .card-icon {
   width: 42px;
   height: 42px;
   border-radius: 12px;
   background: rgba(47, 111, 109, 0.12);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat-item {
   background: var(--surface);
   border-radius: 18px;
   padding: 1.2rem;
   border: 1px solid var(--border);
 }
 
 .stat-value {
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 22px;
   padding: 1.8rem;
   border-left: 4px solid var(--accent);
 }
 
 .testimonial span {
   font-weight: 600;
   color: var(--text);
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 16px;
   overflow: hidden;
   background: var(--surface);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   background: var(--surface);
   border: none;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1.2rem;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .highlight-row {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--surface-alt);
   border-radius: 999px;
   padding: 0.5rem 0.9rem;
   font-size: 0.9rem;
   color: var(--brand-dark);
 }
 
 .pill-spaced {
   margin-top: 1rem;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .service-card {
   background: var(--surface);
   border-radius: 22px;
   padding: 1.6rem;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   background: var(--surface);
   border-radius: 16px;
   padding: 1rem;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .info-block {
   background: var(--surface);
   padding: 1.4rem;
   border-radius: 18px;
   border: 1px solid var(--border);
 }
 
 footer {
   border-top: 1px solid var(--border);
   padding: 2rem 0 3rem;
   background: var(--surface);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-top: 1rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 1rem;
   width: min(960px, 92%);
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 1rem;
   z-index: 40;
 }
 
 .cookie-banner.visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(20, 18, 16, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 50;
 }
 
 .cookie-modal.visible {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 22px;
   padding: 2rem;
   width: min(600px, 100%);
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0.8rem 1rem;
   border-radius: 14px;
   border: 1px solid var(--border);
   background: var(--surface-alt);
 }
 
 .toggle button {
   border: 1px solid var(--brand);
   background: transparent;
   color: var(--brand);
   padding: 0.4rem 0.9rem;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .toggle button.active {
   background: var(--brand);
   color: #fff;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .site-nav {
     position: static;
     flex-direction: row;
     opacity: 1;
     pointer-events: auto;
     transform: none;
     background: transparent;
     border: none;
     box-shadow: none;
     padding: 0;
     gap: 1.5rem;
   }
 
   .mobile-backdrop {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     gap: 2.5rem;
   }
 
   .hero-actions {
     flex-direction: row;
   }
 
   .grid-cards,
   .stats,
   .highlight-row,
   .service-list,
   .comparison,
   .contact-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid-cards .card,
   .stats .stat-item,
   .highlight-row .section-card,
   .service-list .service-card,
   .comparison .comparison-row,
   .contact-grid .info-block {
     flex: 1 1 280px;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1.2rem;
   }
 }
