 :root {
   --brand: #2e5bff;
   --brand-dark: #1f3fa8;
   --accent: #ffb703;
   --text: #1f2430;
   --muted: #5d667a;
   --bg: #f7f8fb;
   --white: #ffffff;
   --border: #e5e7ee;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   padding: 0 20px;
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--white);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .logo {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.3px;
 }
 
 .logo-mark {
   width: 32px;
   height: 32px;
   border-radius: 10px;
   background: linear-gradient(135deg, var(--brand), var(--accent));
 }
 
 .nav-links {
   display: none;
   gap: 22px;
   align-items: center;
 }
 
 .nav-links a {
   font-weight: 500;
   color: var(--muted);
 }
 
 .nav-links a:hover {
   color: var(--text);
 }
 
 .menu-toggle {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 10px 16px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .mobile-menu {
   display: none;
   flex-direction: column;
   gap: 16px;
   padding: 20px;
   border-top: 1px solid var(--border);
   background: var(--white);
 }
 
 .mobile-menu.is-open {
   display: flex;
 }
 
 .mobile-menu a {
   color: var(--muted);
   font-weight: 500;
 }
 
 .hero {
   padding: 64px 0 40px;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero-card {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
   background: var(--brand);
   color: var(--white);
 }
 
 .btn-secondary {
   background: var(--white);
   color: var(--brand);
   border: 1px solid var(--brand);
 }
 
 .btn-ghost {
   background: transparent;
   color: var(--text);
   border: 1px solid var(--border);
 }
 
 .section {
   padding: 40px 0;
 }
 
 .section-title {
   font-size: 28px;
   margin-bottom: 12px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(46, 91, 255, 0.12);
   color: var(--brand);
   font-size: 14px;
   font-weight: 600;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .testimonial-card {
   background: var(--white);
   border-left: 4px solid var(--accent);
   border-radius: 16px;
   padding: 18px 20px;
 }
 
 .cta-bar {
   background: var(--brand-dark);
   color: var(--white);
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 footer {
   padding: 30px 0 40px;
   background: var(--white);
   border-top: 1px solid var(--border);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer-links a {
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(31, 36, 48, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 30;
 }
 
 .cookie-modal-backdrop.is-visible {
   display: flex;
 }
 
 .cookie-modal {
   background: var(--white);
   border-radius: 20px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .preference-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 10px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .preference-row:last-child {
   border-bottom: none;
 }
 
 .tag {
   font-size: 13px;
   color: var(--muted);
 }
 
 .page-hero {
   padding: 40px 0 20px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 0;
   margin: 0;
   list-style: none;
 }
 
 .list li {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 14px 16px;
 }
 
 .two-column {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .mobile-menu {
     display: none;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-content > * {
     flex: 1;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .card-row .card {
     flex: 1;
   }
 
   .cta-bar {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .two-column {
     flex-direction: row;
   }
 
   .two-column > * {
     flex: 1;
   }
 }
