 :root {
   --bg: #f8f6f4;
   --surface: #ffffff;
   --ink: #1f2a2e;
   --muted: #5b6a70;
   --brand: #3a6ea5;
   --brand-strong: #2a4e76;
   --accent: #5ab1a7;
   --border: #e3e0dc;
   --shadow: 0 10px 30px rgba(31, 42, 46, 0.08);
   --radius: 16px;
   --radius-sm: 10px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   color: var(--muted);
   font-size: 0.78rem;
   font-weight: 600;
 }
 
 .lead {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   transition: all 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   border-color: var(--brand);
   color: var(--brand);
 }
 
 .btn.ghost {
   background: transparent;
   border-color: var(--border);
   color: var(--ink);
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-1px);
   box-shadow: var(--shadow);
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
   gap: 24px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
   border-radius: 12px;
   background: linear-gradient(135deg, var(--brand), var(--accent));
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 700;
 }
 
 .nav-links {
   display: none;
   align-items: center;
   gap: 20px;
   font-weight: 600;
 }
 
 .nav-links a {
   color: var(--muted);
 }
 
 .nav-links a:hover,
 .nav-links a:focus-visible {
   color: var(--ink);
 }
 
 .nav-actions {
   display: flex;
   align-items: center;
   gap: 12px;
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: transparent;
   padding: 8px 12px;
   border-radius: 10px;
   font-weight: 600;
 }
 
 .mobile-menu {
   display: none;
   flex-direction: column;
   gap: 16px;
   padding: 20px;
   background: var(--surface);
   border-top: 1px solid var(--border);
 }
 
 .mobile-menu.open {
   display: flex;
 }
 
 .hero {
   padding: 70px 0 40px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 24px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 22px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .feature {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: rgba(90, 177, 167, 0.15);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .stat-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 20px;
   border-left: 4px solid var(--accent);
 }
 
 .quote {
   background: var(--brand-strong);
   color: #fff;
   padding: 32px;
   border-radius: var(--radius);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .timeline-item {
   padding: 18px;
   border-radius: var(--radius-sm);
   border: 1px solid var(--border);
   background: var(--surface);
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(58, 110, 165, 0.1);
   color: var(--brand-strong);
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 18px;
   background: var(--surface);
   border-radius: var(--radius-sm);
   border: 1px solid var(--border);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: var(--radius-sm);
   background: var(--surface);
 }
 
 .faq-question {
   width: 100%;
   padding: 16px 18px;
   background: transparent;
   border: none;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 0 18px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .pillars {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .pill {
   padding: 18px;
   border-radius: var(--radius-sm);
   background: rgba(58, 110, 165, 0.08);
 }
 
 .footer {
   margin-top: auto;
   padding: 40px 0;
   background: var(--surface);
   border-top: 1px solid var(--border);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   color: var(--muted);
 }
 
 .contact-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .highlight-panel {
   background: linear-gradient(120deg, rgba(58, 110, 165, 0.08), rgba(90, 177, 167, 0.12));
   border-radius: var(--radius);
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .list-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--brand-strong);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   right: 16px;
   left: 16px;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 16px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 50;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.35);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 60;
 }
 
 .modal.show {
   display: flex;
 }
 
 .modal-content {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 24px;
   width: min(520px, 100%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .toggle-row:last-child {
   border-bottom: none;
 }
 
 .toggle-row input {
   accent-color: var(--brand);
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .mobile-menu {
     display: none !important;
   }
 
   .hero-grid,
   .split,
   .card-grid,
   .list-grid,
   .stat-grid,
   .pillars,
   .footer-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .hero-grid > * {
     flex: 1 1 46%;
   }
 
   .card-grid .card,
   .list-grid .service-card,
   .stat-grid .stat,
   .pillars .pill,
   .timeline .timeline-item {
     flex: 1 1 calc(50% - 12px);
   }
 
   .feature-list,
   .comparison,
   .faq {
     max-width: 760px;
   }
 
   .footer-grid {
     justify-content: space-between;
   }
 
   .footer-grid > * {
     flex: 1 1 200px;
   }
 }
 
 @media (min-width: 1024px) {
   .card-grid .card,
   .list-grid .service-card,
   .stat-grid .stat,
   .pillars .pill,
   .timeline .timeline-item {
     flex: 1 1 calc(33% - 14px);
   }
 }
