 :root {
   color-scheme: light;
   --ink: #0f1c2e;
   --muted: #516173;
   --accent: #2a6df4;
   --accent-dark: #1d4fb6;
   --surface: #f5f7fb;
   --surface-strong: #e6edf7;
   --border: #d7e0ee;
   --highlight: #f0f6ff;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 header {
   border-bottom: 1px solid var(--border);
   background: #ffffff;
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand img {
   width: 34px;
   height: 34px;
 }
 
 nav {
   display: flex;
   align-items: center;
   gap: 1.5rem;
 }
 
 .nav-links {
   display: none;
   gap: 1.5rem;
   font-weight: 500;
 }
 
 .nav-links a {
   color: var(--muted);
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--border);
   padding: 0.5rem 0.75rem;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .mobile-nav {
   position: fixed;
   inset: 0;
   background: rgba(15, 28, 46, 0.5);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s ease;
 }
 
 .mobile-nav.active {
   opacity: 1;
   pointer-events: auto;
 }
 
 .mobile-panel {
   background: #ffffff;
   width: min(85%, 320px);
   height: 100%;
   padding: 2rem 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .mobile-panel a {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.7rem 1.4rem;
   border-radius: 999px;
   font-weight: 600;
   background: var(--accent);
   color: #ffffff;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: #ffffff;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 4rem;
   padding: 2.5rem 0 4rem;
 }
 
 section {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero {
   background: var(--highlight);
   padding: 2.5rem 0;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero h1 {
   font-size: 2.2rem;
   line-height: 1.2;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .tag {
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   background: #ffffff;
   border: 1px solid var(--border);
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: #ffffff;
   border: 1px solid var(--border);
   border-radius: 1rem;
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .card.highlight {
   background: var(--surface);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .split .panel {
   background: var(--surface);
   border-radius: 1rem;
   padding: 1.5rem;
   border: 1px solid var(--border);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-item img {
   width: 40px;
   height: 40px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   padding: 1rem 1.25rem;
   border-radius: 0.75rem;
   background: var(--surface-strong);
 }
 
 .stat strong {
   display: block;
   font-size: 1.4rem;
 }
 
 .quote-block {
   background: var(--ink);
   color: #ffffff;
   padding: 2rem;
   border-radius: 1rem;
 }
 
 .quote-block span {
   color: #cdd9f2;
 }
 
 .testimonial {
   background: #ffffff;
   border: 1px solid var(--border);
   padding: 1.25rem;
   border-radius: 1rem;
 }
 
 .testimonial p {
   color: var(--muted);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   padding: 1rem;
   border-radius: 0.75rem;
   background: var(--surface);
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 0.75rem;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: #ffffff;
   border: none;
   padding: 1rem;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 1rem 1rem;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.active .faq-answer {
   display: block;
 }
 
 .cta-panel {
   background: var(--accent);
   color: #ffffff;
   padding: 2rem;
   border-radius: 1rem;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 footer {
   background: var(--ink);
   color: #cbd5f0;
   padding: 2.5rem 0;
 }
 
 footer a {
   color: #cbd5f0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 1rem 1rem 1rem;
   background: #ffffff;
   border: 1px solid var(--border);
   border-radius: 1rem;
   padding: 1rem;
   box-shadow: 0 12px 30px rgba(15, 28, 46, 0.12);
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   z-index: 100;
 }
 
 .cookie-banner.active {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(15, 28, 46, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 120;
 }
 
 .modal-backdrop.active {
   display: flex;
 }
 
 .modal {
   background: #ffffff;
   border-radius: 1rem;
   padding: 1.5rem;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .toggle-item {
   border: 1px solid var(--border);
   border-radius: 0.75rem;
   padding: 0.8rem;
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
 }
 
 .toggle-controls {
   display: flex;
   gap: 0.6rem;
   flex-wrap: wrap;
 }
 
 .section-title {
   font-size: 1.5rem;
 }
 
 .muted {
   color: var(--muted);
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-text {
     max-width: 520px;
   }
 
   .hero-actions {
     flex-direction: row;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .split {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split .panel {
     flex: 1 1 0;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1 1 0;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 0;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
