 :root {
   --bg: #f7f5f1;
   --surface: #ffffff;
   --ink: #1d2329;
   --muted: #5a6773;
   --accent: #0f5f5c;
   --accent-dark: #0b4a47;
   --accent-soft: #e0f0ee;
   --highlight: #f3c969;
   --border: #e4e7eb;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   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,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section-alt {
   background: var(--surface);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.72rem;
   color: var(--muted);
   margin-bottom: 0.5rem;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
 }
 
 h1 {
   font-size: 2.3rem;
 }
 
 h2 {
   font-size: 1.7rem;
   margin-bottom: 1rem;
 }
 
 h3 {
   font-size: 1.2rem;
   margin-bottom: 0.6rem;
 }
 
 p {
   margin-bottom: 1rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: background 0.2s ease;
 }
 
 .btn:hover,
 .btn:focus-visible {
   background: var(--accent-dark);
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .btn-outline:hover,
 .btn-outline:focus-visible {
   background: var(--accent-soft);
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--accent-dark);
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--border);
   padding: 0.5rem 0.8rem;
   border-radius: 6px;
   font-weight: 600;
 }
 
 .site-nav {
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   background: var(--surface);
   padding: 1rem;
   border: 1px solid var(--border);
   border-radius: 10px;
   position: absolute;
   right: 4%;
   top: 4.2rem;
   width: 70%;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 .site-nav a {
   font-weight: 600;
 }
 
 .nav-open .site-nav {
   display: flex;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 1.8rem;
   border-radius: 18px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.5rem;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .icon-badge {
   width: 46px;
   height: 46px;
   border-radius: 12px;
   background: var(--accent-soft);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 1.4rem;
 }
 
 .stat strong {
   font-size: 1.6rem;
   color: var(--accent-dark);
   display: block;
 }
 
 .quote {
   background: var(--accent);
   color: #fff;
   border-radius: 18px;
   padding: 2rem;
 }
 
 .quote p {
   color: #f0f5f4;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .step {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .step-number {
   min-width: 36px;
   height: 36px;
   border-radius: 50%;
   background: var(--highlight);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   color: #2c2c2c;
 }
 
 .testimonial-grid {
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 14px;
   border: 1px solid var(--border);
   padding: 1.4rem;
 }
 
 .tag-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
 }
 
 .tag {
   background: var(--accent-soft);
   color: var(--accent-dark);
   padding: 0.35rem 0.7rem;
   border-radius: 999px;
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 12px;
   border: 1px solid var(--border);
   overflow: hidden;
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   border: none;
   background: transparent;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-item .faq-panel {
   padding: 0 1.2rem 1rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 1rem;
   border-radius: 12px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .service-card {
   border: 1px solid var(--border);
   background: var(--surface);
   border-radius: 16px;
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .footer {
   background: var(--surface);
   border-top: 1px solid var(--border);
   padding: 2rem 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 1rem;
   right: 1rem;
   bottom: 1rem;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 1rem;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   display: none;
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-top: 1rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 23, 42, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
   padding: 1.5rem;
 }
 
 .cookie-modal-content {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.6rem;
   width: min(520px, 100%);
   border: 1px solid var(--border);
 }
 
 .cookie-modal-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 1rem;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .cookie-options label {
   display: flex;
   align-items: center;
   gap: 0.6rem;
 }
 
 .cookie-modal-actions {
   margin-top: 1.2rem;
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .modal-open {
   display: flex;
 }
 
 .banner-open {
   display: block;
 }
 
 @media (min-width: 768px) {
   h1 {
     font-size: 2.8rem;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .site-nav {
     display: flex;
     position: static;
     flex-direction: row;
     border: none;
     padding: 0;
     width: auto;
     box-shadow: none;
     gap: 1.5rem;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-actions {
     flex-direction: row;
   }
 
   .split {
     flex-direction: row;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1 1 180px;
   }
 
   .process {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .step {
     flex: 1 1 220px;
   }
 
   .testimonial-grid {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1 1 220px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 220px;
   }
 
   .service-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     flex: 1 1 280px;
   }
 
   .info-grid {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1.2rem;
   }
 
   .cookie-actions,
   .cookie-modal-actions {
     flex-direction: row;
     justify-content: flex-start;
   }
 }
