 :root {
   color-scheme: light;
   --ink: #0e1a2b;
   --muted: #4b5a6a;
   --brand: #1b6f7a;
   --brand-2: #0b3c4b;
   --accent: #f1b24a;
   --bg: #f7f6f2;
   --panel: #ffffff;
   --soft: #eef2f3;
   --line: #d9e2e7;
   --shadow: 0 10px 28px rgba(11, 60, 75, 0.12);
   --radius: 14px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 12px;
   background: var(--brand-2);
   color: #fff;
   padding: 8px 14px;
   border-radius: 999px;
   z-index: 10;
 }
 
 .skip-link:focus {
   left: 16px;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 header {
   background: var(--panel);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav {
   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;
   letter-spacing: 0.2px;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
 }
 
 .nav-toggle {
   background: var(--brand);
   color: #fff;
   border: none;
   padding: 10px 14px;
   border-radius: 999px;
   font-size: 0.95rem;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: var(--radius);
   padding: 16px;
   position: absolute;
   right: 4vw;
   top: 72px;
   width: min(280px, 90vw);
   box-shadow: var(--shadow);
   opacity: 0;
   pointer-events: none;
   transform: translateY(-8px);
   transition: opacity 0.2s ease, transform 0.2s ease;
 }
 
 .nav-open .nav-links {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }
 
 .nav-links a {
   padding: 8px 10px;
   border-radius: 10px;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   background: var(--soft);
 }
 
 .cta-link {
   background: var(--accent);
   font-weight: 600;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding: 32px 0 64px;
 }
 
 section {
   background: var(--panel);
   padding: 28px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .hero {
   background: linear-gradient(135deg, #e8f3f5, #fef6e8);
   position: relative;
   overflow: hidden;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero h1 {
   margin: 0;
   font-size: clamp(2rem, 5vw, 3rem);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   background: var(--brand);
   color: #fff;
   border-radius: 999px;
   padding: 10px 18px;
   border: 1px solid transparent;
   font-weight: 600;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand-2);
   border-color: var(--brand-2);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--soft);
   padding: 18px;
   border-radius: 12px;
   border: 1px solid #e1eaee;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .feature-item svg {
   width: 32px;
   height: 32px;
   flex: 0 0 auto;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--brand-2);
   color: #fff;
   border-radius: 12px;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .stat strong {
   font-size: 1.6rem;
 }
 
 .quote {
   background: #0b3c4b;
   color: #fff;
   padding: 24px;
   border-radius: var(--radius);
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .testimonial .person {
   font-weight: 600;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   background: var(--soft);
   border-radius: 12px;
   padding: 14px;
 }
 
 .comparison-row span {
   font-weight: 600;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .timeline-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .timeline-item .dot {
   width: 12px;
   height: 12px;
   background: var(--accent);
   border-radius: 50%;
   margin-top: 6px;
   flex: 0 0 auto;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 12px;
   overflow: hidden;
 }
 
 .faq-question {
   background: var(--soft);
   padding: 14px 16px;
   width: 100%;
   text-align: left;
   border: none;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 14px 16px;
   display: none;
 }
 
 .faq-item[aria-expanded="true"] .faq-answer {
   display: block;
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   background: var(--soft);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.95rem;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-card {
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand-2);
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .info-block {
   background: var(--soft);
   padding: 16px;
   border-radius: 12px;
 }
 
 footer {
   background: #0b3c4b;
   color: #fff;
   padding: 40px 0 24px;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.95rem;
 }
 
 .cookie-banner,
 .cookie-modal {
   position: fixed;
   left: 50%;
   transform: translateX(-50%);
   background: var(--panel);
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
   border-radius: 14px;
   padding: 18px;
   width: min(520px, 92vw);
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.is-visible {
   bottom: 20px;
   display: block;
 }
 
 .cookie-modal.is-visible {
   top: 12vh;
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .overlay {
   position: fixed;
   inset: 0;
   background: rgba(14, 26, 43, 0.45);
   display: none;
   z-index: 25;
 }
 
 .overlay.is-visible {
   display: block;
 }
 
 .legal {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 @media (min-width: 860px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     flex-direction: row;
     width: auto;
     border: none;
     padding: 0;
     box-shadow: none;
     opacity: 1;
     pointer-events: auto;
     transform: none;
     background: transparent;
   }
 
   main {
     gap: 56px;
     padding-top: 48px;
   }
 
   section {
     padding: 36px;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > * {
     flex: 1;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .service-card {
     flex: 1 1 calc(50% - 16px);
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .comparison-row {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .info-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .info-block {
     flex: 1 1 calc(50% - 16px);
   }
 
   .footer-grid {
     flex-direction: row;
     align-items: flex-start;
     justify-content: space-between;
   }
 }
