 :root {
   --bg: #f7f8f5;
   --panel: #ffffff;
   --ink: #1c1f24;
   --muted: #5a6472;
   --brand: #1f7a5c;
   --brand-dark: #145643;
   --accent: #f2b544;
   --line: #e2e6e9;
   --shadow: 0 10px 30px rgba(20, 32, 25, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 0;
   background: var(--brand);
   color: #fff;
   padding: 0.6rem 1rem;
   z-index: 5;
 }
 
 .skip-link:focus {
   left: 1rem;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section-tight {
   padding: 2.5rem 0;
 }
 
 .section-alt {
   background: var(--panel);
 }
 
 .section-accent {
   background: #f0f6f3;
 }
 
 .eyebrow {
   color: var(--brand);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 0.78rem;
 }
 
 h1, h2, h3 {
   line-height: 1.2;
   margin: 0 0 0.8rem;
 }
 
 h1 {
   font-size: clamp(2rem, 5vw, 3rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 4vw, 2.4rem);
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   margin: 0 0 1rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.4rem;
   background: var(--brand);
   color: #fff;
   padding: 0.7rem 1.2rem;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--brand);
   border-color: var(--brand);
 }
 
 .btn.ghost {
   background: transparent;
   color: var(--ink);
   border-color: var(--line);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   padding: 0.3rem 0.7rem;
   background: #e6f2ed;
   color: var(--brand-dark);
   border-radius: 999px;
   font-size: 0.8rem;
   font-weight: 600;
 }
 
 .site-header {
   background: var(--panel);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   padding: 1rem 0;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.05em;
   text-transform: lowercase;
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--line);
   padding: 0.45rem 0.7rem;
   border-radius: 0.5rem;
   font-weight: 600;
 }
 
 .primary-nav {
   display: none;
   flex-direction: column;
   gap: 0.75rem;
   background: var(--panel);
   position: absolute;
   right: 4%;
   top: 4.2rem;
   padding: 1rem;
   border-radius: 0.8rem;
   box-shadow: var(--shadow);
 }
 
 .primary-nav.open {
   display: flex;
 }
 
 .primary-nav a {
   font-weight: 600;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--panel);
   padding: 1.8rem;
   border-radius: 1.4rem;
   box-shadow: var(--shadow);
 }
 
 .hero-highlights {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   background: var(--panel);
   padding: 1.4rem;
   border-radius: 1rem;
   border: 1px solid var(--line);
 }
 
 .feature-item img {
   width: 52px;
   height: 52px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--panel);
   padding: 1.6rem;
   border-radius: 1rem;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
 }
 
 .stat-bar {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .stat {
   background: var(--panel);
   padding: 1rem 1.2rem;
   border-radius: 0.8rem;
   border: 1px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
 }
 
 .stat span {
   font-weight: 700;
   color: var(--brand);
 }
 
 .quote {
   background: var(--brand);
   color: #fff;
   padding: 2rem;
   border-radius: 1.2rem;
 }
 
 .quote p {
   color: rgba(255, 255, 255, 0.86);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .panel {
   background: var(--panel);
   border-radius: 1rem;
   padding: 1.5rem;
   border: 1px solid var(--line);
 }
 
 .icon-row {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .icon-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .icon-item img {
   width: 40px;
 }
 
 .services-grid {
   display: flex;
   flex-direction: column;
   gap: 1.3rem;
 }
 
 .service-card {
   border: 1px solid var(--line);
   background: var(--panel);
   border-radius: 1rem;
   padding: 1.4rem;
 }
 
 .service-card h3 {
   margin-bottom: 0.4rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 0.9rem;
   padding: 1rem;
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 0.8rem;
   background: var(--panel);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   background: transparent;
   border: none;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1rem;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .cta {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   align-items: flex-start;
   background: var(--panel);
   border-radius: 1.3rem;
   padding: 2rem;
   border: 1px solid var(--line);
 }
 
 .footer {
   border-top: 1px solid var(--line);
   padding: 2rem 0;
   background: var(--panel);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 1rem;
   right: 1rem;
   bottom: 1rem;
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 1rem;
   padding: 1.2rem;
   box-shadow: var(--shadow);
   display: none;
   z-index: 50;
 }
 
 .cookie-banner.show {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-top: 1rem;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(17, 25, 23, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
 }
 
 .modal-backdrop.show {
   display: flex;
 }
 
 .modal {
   background: var(--panel);
   padding: 2rem;
   border-radius: 1.2rem;
   width: min(560px, 90%);
   border: 1px solid var(--line);
 }
 
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

 .preference-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border: 1px solid var(--line);
   border-radius: 0.8rem;
   padding: 0.8rem 1rem;
   margin-bottom: 0.8rem;
 }
 
 .toggle {
   border: 1px solid var(--brand);
   background: transparent;
   color: var(--brand);
   border-radius: 999px;
   padding: 0.3rem 0.8rem;
   font-weight: 600;
 }
 
 .toggle[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 0.7rem;
   padding-left: 1.1rem;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .info-block {
   background: var(--panel);
   border-radius: 1rem;
   padding: 1.5rem;
   border: 1px solid var(--line);
 }
 
 @media (min-width: 768px) {
   .primary-nav {
     display: flex;
     position: static;
     flex-direction: row;
     box-shadow: none;
     padding: 0;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card {
     flex: 1.1;
   }
 
   .hero-highlights {
     flex: 0.9;
   }
 
   .feature-list,
   .cards,
   .services-grid,
   .comparison,
   .contact-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-item,
   .card,
   .service-card,
   .comparison-row,
   .info-block {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > * {
     flex: 1;
   }
 
   .icon-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .icon-item {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .stat-bar {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .cookie-actions {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1.6rem;
   }
 }
