 :root {
   --color-bg: #f7f8fb;
   --color-surface: #ffffff;
   --color-ink: #1c2430;
   --color-muted: #5a6675;
   --color-accent: #0f6ea8;
   --color-accent-dark: #0a4f79;
   --color-highlight: #e6f1f8;
   --color-border: #d9e1ea;
   --color-warm: #f4efe8;
   --radius-lg: 18px;
   --radius-md: 12px;
   --radius-sm: 8px;
   --shadow-soft: 0 12px 30px rgba(15, 25, 40, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", system-ui, sans-serif;
   color: var(--color-ink);
   background: var(--color-bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 90%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--color-surface);
   border-bottom: 1px solid var(--color-border);
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .header-inner {
   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-mark {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: var(--color-accent);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 700;
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--color-border);
   border-radius: 999px;
   padding: 8px 14px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .nav-links {
   display: none;
   gap: 24px;
   align-items: center;
   font-weight: 600;
 }
 
 .mobile-menu {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 16px;
   background: var(--color-surface);
   border-bottom: 1px solid var(--color-border);
 }
 
 .mobile-menu a {
   font-weight: 600;
 }
 
 .mobile-menu.is-hidden {
   display: none;
 }
 
 .hero {
   padding: 48px 0 32px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-panel {
   background: var(--color-surface);
   padding: 24px;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-soft);
 }
 
 .hero-panel strong {
   color: var(--color-accent);
 }
 
 .section {
   padding: 44px 0;
 }
 
 .section--alt {
   background: var(--color-surface);
 }
 
 .section-title {
   font-size: 1.75rem;
   margin-bottom: 12px;
 }
 
 .section-subtitle {
   color: var(--color-muted);
   max-width: 720px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-top: 24px;
 }
 
 .card {
   background: var(--color-surface);
   border-radius: var(--radius-md);
   padding: 20px;
   border: 1px solid var(--color-border);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card.highlight {
   background: var(--color-highlight);
   border-color: transparent;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .feature-item {
   display: flex;
   gap: 14px;
   padding: 16px;
   border-radius: var(--radius-md);
   background: var(--color-surface);
   border: 1px solid var(--color-border);
 }
 
 .icon {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: var(--color-highlight);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .stat-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 24px;
 }
 
 .stat {
   background: var(--color-warm);
   padding: 18px;
   border-radius: var(--radius-md);
 }
 
 .stat strong {
   font-size: 1.6rem;
   display: block;
 }
 
 .testimonial {
   background: var(--color-surface);
   padding: 20px;
   border-radius: var(--radius-md);
   border-left: 4px solid var(--color-accent);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-radius: var(--radius-md);
   background: var(--color-surface);
   border: 1px solid var(--color-border);
 }
 
 .comparison-row span {
   font-weight: 600;
 }
 
 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: var(--color-accent);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .faq-item {
   border: 1px solid var(--color-border);
   border-radius: var(--radius-md);
   background: var(--color-surface);
 }
 
 .accordion-trigger {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   padding: 16px;
   background: none;
   border: none;
   font-weight: 600;
   cursor: pointer;
   text-align: left;
 }
 
 .accordion-panel {
   padding: 0 16px 16px;
   display: none;
   color: var(--color-muted);
 }
 
 .accordion-panel.is-open {
   display: block;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--color-accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--color-accent);
   border: 1px solid var(--color-accent);
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 12px;
   background: var(--color-highlight);
   border-radius: 999px;
   font-size: 0.85rem;
   font-weight: 600;
   color: var(--color-accent-dark);
 }
 
 .footer {
   background: #0c1722;
   color: #e8edf4;
   padding: 36px 0;
   margin-top: 40px;
 }
 
 .footer a {
   color: #e8edf4;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--color-surface);
   padding: 16px;
   border-radius: var(--radius-md);
   border: 1px solid var(--color-border);
   box-shadow: var(--shadow-soft);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 60;
 }
 
 .cookie-banner.is-hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .modal-overlay {
   position: fixed;
   inset: 0;
   background: rgba(12, 23, 34, 0.55);
   display: none;
   z-index: 70;
   align-items: center;
   justify-content: center;
   padding: 20px;
 }
 
 .modal-overlay.is-visible {
   display: flex;
 }
 
 .modal-content {
   background: var(--color-surface);
   padding: 24px;
   border-radius: var(--radius-lg);
   width: min(520px, 92%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .pref-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .pref-item {
   display: flex;
   justify-content: space-between;
   gap: 16px;
   padding: 12px;
   border-radius: var(--radius-sm);
   background: var(--color-highlight);
 }
 
 .pref-item button {
   border: 1px solid var(--color-accent);
   background: #fff;
   color: var(--color-accent);
   border-radius: 999px;
   padding: 6px 12px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .pref-item button.is-active {
   background: var(--color-accent);
   color: #fff;
 }
 
 @media (min-width: 820px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .mobile-menu {
     display: none;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-panel,
   .hero-content {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .feature-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-item {
     flex: 1 1 280px;
   }
 
   .stat-grid {
     flex-direction: row;
   }
 
   .stat {
     flex: 1 1 200px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 240px;
   }
 
   .process-steps {
     flex-direction: row;
   }
 
   .step {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     align-items: center;
   }
 }
