 :root {
   --bg: #f6f7f9;
   --surface: #ffffff;
   --ink: #1f2933;
   --muted: #52606d;
   --brand: #2b6cb0;
   --brand-dark: #1a497a;
   --accent: #f2b705;
   --line: #e2e8f0;
   --success: #1f7a5c;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section--alt {
   background: var(--surface);
 }
 
 .section--accent {
   background: #fef6dc;
 }
 
 .section--dark {
   background: #182638;
   color: #eef2f6;
 }
 
 .eyebrow {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--brand);
   font-weight: 600;
 }
 
 .headline {
   font-size: clamp(2rem, 4vw, 3rem);
   margin: 12px 0 16px;
 }
 
 .subhead {
   font-size: 1.1rem;
   color: var(--muted);
   max-width: 700px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: background 0.2s ease;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--brand-dark);
 }
 
 .btn--ghost {
   background: transparent;
   color: var(--brand);
   border: 1px solid var(--brand);
 }
 
 .btn--light {
   background: #fff;
   color: var(--brand-dark);
 }
 
 .topbar {
   position: sticky;
   top: 0;
   z-index: 20;
   background: var(--surface);
   border-bottom: 1px solid var(--line);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 12px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   font-size: 1.05rem;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   padding: 16px;
   border-radius: 16px;
   box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
   position: absolute;
   right: 4%;
   top: 64px;
   min-width: 220px;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-links.is-open {
   display: flex;
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: transparent;
   padding: 10px 14px;
   border-radius: 999px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .hero {
   padding: 72px 0 80px;
   background: linear-gradient(120deg, #f7fafc 30%, #dbeafe 100%);
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 24px;
   border-radius: 18px;
   box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
 }
 
 .card-grid,
 .stats-grid,
 .feature-grid,
 .split-grid,
 .team-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .card--soft {
   background: #f8fafc;
 }
 
 .card h3 {
   margin: 8px 0 6px;
 }
 
 .icon-badge {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #e0f2fe;
   color: var(--brand-dark);
 }
 
 .stats-grid .stat {
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   border-left: 4px solid var(--accent);
 }
 
 .stat strong {
   font-size: 1.8rem;
   display: block;
 }
 
 .quote {
   font-size: 1.3rem;
   font-weight: 600;
   margin: 0;
 }
 
 .split-grid .panel {
   background: var(--surface);
   padding: 24px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   padding: 8px 14px;
   border-radius: 999px;
   background: #e2e8f0;
   font-weight: 600;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .step span {
   background: var(--brand);
   color: #fff;
   font-weight: 700;
   width: 32px;
   height: 32px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
 }
 
 .faq-item {
   border-bottom: 1px solid var(--line);
   padding: 16px 0;
 }
 
 .faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   display: none;
   padding-top: 12px;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .footer {
   background: #111827;
   color: #e2e8f0;
   padding: 48px 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 20px;
 }
 
 .footer a {
   color: #e2e8f0;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border-radius: 16px;
   padding: 16px 18px;
   box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
   display: none;
   z-index: 50;
   width: min(620px, 92%);
 }
 
 .cookie-banner.is-visible {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(15, 23, 42, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
   padding: 20px;
 }
 
 .modal-backdrop.is-visible {
   display: flex;
 }
 
 .modal {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
 }
 
 .modal h3 {
   margin-top: 0;
 }
 
 .modal-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 18px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison .compare-row {
   background: var(--surface);
   padding: 18px;
   border-radius: 14px;
   border-left: 4px solid var(--success);
 }
 
 .service-price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .contact-block {
   background: var(--surface);
   padding: 20px;
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .table {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: var(--surface);
   border-radius: 14px;
   padding: 16px;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     position: static;
     flex-direction: row;
     background: transparent;
     padding: 0;
     box-shadow: none;
     min-width: auto;
     display: flex;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
   }
 
   .card-grid,
   .stats-grid,
   .feature-grid,
   .split-grid,
   .team-grid,
   .testimonials,
   .comparison,
   .table {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .panel,
   .testimonial,
   .compare-row,
   .table-row,
   .team-card {
     flex: 1 1 calc(50% - 20px);
   }
 
   .cookie-actions,
   .modal-actions {
     flex-direction: row;
   }
 
   .contact-columns {
     display: flex;
     gap: 20px;
   }
 
   .contact-columns .contact-block {
     flex: 1;
   }
 }
 
 @media (min-width: 1024px) {
   .card,
   .stat,
   .panel,
   .testimonial,
   .compare-row,
   .table-row,
   .team-card {
     flex: 1 1 calc(33.33% - 20px);
   }
 }
