 :root {
   --bg: #f7f8fb;
   --surface: #ffffff;
   --ink: #1f2633;
   --muted: #5d6675;
   --accent: #1d4ed8;
   --accent-dark: #123899;
   --accent-soft: #e6efff;
   --warm: #f4efe8;
   --line: #e3e7ee;
   --success: #2f855a;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--ink);
   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.warm {
   background: var(--warm);
 }
 
 .section-title {
   font-size: 1.8rem;
   margin-bottom: 16px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.75rem;
   color: var(--accent);
   margin-bottom: 12px;
 }
 
 .lead {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: 0;
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .button:hover,
 .button:focus {
   background: var(--accent-dark);
   transform: translateY(-1px);
 }
 
 .button.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .button.ghost {
   background: transparent;
   color: var(--ink);
   border: 1px solid var(--line);
 }
 
 .header {
   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;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   padding: 20px;
   border-radius: 16px;
   position: absolute;
   right: 4%;
   top: 70px;
   box-shadow: 0 10px 30px rgba(18, 22, 33, 0.1);
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 500;
   color: var(--muted);
 }
 
 .nav-actions {
   display: flex;
   gap: 12px;
   align-items: center;
 }
 
 .menu-toggle {
   background: transparent;
   border: 1px solid var(--line);
   border-radius: 10px;
   padding: 8px 10px;
   cursor: pointer;
 }
 
 .menu-toggle svg {
   width: 22px;
   height: 22px;
 }
 
 .hero {
   padding: 80px 0 72px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: 24px;
   padding: 28px;
   box-shadow: 0 16px 40px rgba(18, 22, 33, 0.1);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-card h1 {
   font-size: 2.4rem;
   line-height: 1.2;
 }
 
 .hero-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .meta-item {
   background: var(--accent-soft);
   color: var(--accent-dark);
   padding: 10px 14px;
   border-radius: 12px;
   font-size: 0.9rem;
 }
 
 .grid-3,
 .grid-2,
 .grid-4 {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   font-size: 1.2rem;
 }
 
 .icon-badge {
   width: 42px;
   height: 42px;
   border-radius: 12px;
   background: var(--accent-soft);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .icon-badge svg {
   width: 24px;
   height: 24px;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 12px;
   border-radius: 999px;
   background: #eef2f7;
   color: var(--muted);
   font-size: 0.85rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 20px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   font-size: 1.8rem;
   display: block;
 }
 
 .quote {
   background: var(--accent);
   color: #fff;
   border-radius: 24px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .quote span {
   font-size: 0.95rem;
   color: #dbe7ff;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .process-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 36px;
   height: 36px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
   border-radius: 20px;
   border: 1px solid var(--line);
   background: var(--surface);
   padding: 20px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .comparison-row span {
   color: var(--muted);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border-radius: 16px;
   border: 1px solid var(--line);
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px;
   background: transparent;
   border: 0;
   font-weight: 600;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .footer {
   background: #0f172a;
   color: #e2e8f0;
   padding: 48px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer a {
   color: #e2e8f0;
 }
 
 .footer small {
   color: #94a3b8;
 }
 
 .cookie-banner {
   position: fixed;
   left: 12px;
   right: 12px;
   bottom: 12px;
   background: var(--surface);
   border-radius: 18px;
   box-shadow: 0 16px 40px rgba(18, 22, 33, 0.15);
   padding: 18px;
   display: none;
   z-index: 50;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .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: 20px;
 }
 
 .cookie-modal.open {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 22px;
   padding: 24px;
   width: min(640px, 94%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 0;
   border-bottom: 1px solid var(--line);
 }
 
 .toggle {
   display: inline-flex;
   align-items: center;
   gap: 10px;
 }
 
 .toggle-button {
   width: 44px;
   height: 26px;
   border-radius: 999px;
   background: #cbd5f5;
   border: 0;
   cursor: pointer;
   position: relative;
 }
 
 .toggle-button::after {
   content: "";
   position: absolute;
   width: 20px;
   height: 20px;
   border-radius: 999px;
   background: #fff;
   top: 3px;
   left: 3px;
   transition: transform 0.2s ease;
 }
 
 .toggle-button[aria-pressed="true"] {
   background: var(--accent);
 }
 
 .toggle-button[aria-pressed="true"]::after {
   transform: translateX(18px);
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .info-block {
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   color: var(--muted);
 }
 
 .highlight-panel {
   background: var(--accent-soft);
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-item {
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 18px;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .banner {
   border-radius: 22px;
   padding: 24px;
   background: #0b1220;
   color: #f8fafc;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .banner .button {
   align-self: flex-start;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .table-like {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 14px;
   border-radius: 14px;
   background: var(--surface);
   border: 1px solid var(--line);
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   background: #f1f5f9;
   color: var(--muted);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .legal {
   display: flex;
   flex-direction: column;
   gap: 18px;
   color: var(--muted);
 }
 
 .legal h2,
 .legal h3 {
   color: var(--ink);
 }
 
 @media (min-width: 760px) {
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     background: transparent;
     padding: 0;
     box-shadow: none;
     gap: 24px;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-grid,
   .grid-3,
   .grid-2,
   .grid-4,
   .stats,
   .info-grid,
   .service-list,
   .split,
   .footer-grid,
   .contact-grid {
     flex-direction: row;
   }
 
   .grid-2 > * {
     flex: 1;
   }
 
   .grid-3 > * {
     flex: 1;
   }
 
   .grid-4 > * {
     flex: 1;
   }
 
   .stats > * {
     flex: 1;
   }
 
   .info-grid > * {
     flex: 1;
   }
 
   .service-list > * {
     flex: 1;
   }
 
   .split > * {
     flex: 1;
   }
 
   .footer-grid {
     justify-content: space-between;
   }
 
   .hero-card h1 {
     font-size: 2.9rem;
   }
 }
