 :root {
   color-scheme: light;
   --bg: #f7f7f5;
   --surface: #ffffff;
   --primary: #14b8ff;
   --primary-dark: #0b7fb0;
   --text: #0b1f2a;
   --muted: #5b6770;
   --accent: #ffe08a;
   --border: #e2e6ea;
   --shadow: 0 18px 40px rgba(11, 31, 42, 0.12);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 main {
   flex: 1;
 }
 
 .container {
   width: 100%;
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .site-header {
   background: var(--surface);
   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: 18px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.2px;
 }
 
 .brand svg {
   width: 36px;
   height: 36px;
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: var(--surface);
   color: var(--text);
   padding: 8px 12px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .site-nav {
   position: absolute;
   top: 72px;
   left: 0;
   right: 0;
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   display: none;
 }
 
 .nav-list {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 16px 20px 24px;
 }
 
 .nav-list a {
   font-weight: 600;
 }
 
 body.nav-open .site-nav {
   display: block;
 }
 
 .hero {
   padding: 72px 0 48px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   line-height: 1.2;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .button-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-primary {
   background: var(--primary);
   color: #041018;
 }
 
 .btn-outline {
   background: transparent;
   border-color: var(--primary);
   color: var(--primary-dark);
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section-title {
   font-size: 1.8rem;
   margin-bottom: 12px;
 }
 
 .section-lead {
   color: var(--muted);
   max-width: 720px;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 24px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   box-shadow: var(--shadow);
 }
 
 .card .price {
   font-weight: 700;
   color: var(--primary-dark);
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .pill-list {
   list-style: none;
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill-list li {
   padding: 8px 14px;
   border-radius: 999px;
   border: 1px solid var(--border);
   background: var(--surface);
   font-weight: 600;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .testimonial {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .testimonial span {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .cta-strip {
   background: var(--text);
   color: #fdfdfb;
   padding: 32px 0;
 }
 
 .cta-strip .cta-inner {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cta-strip .btn {
   width: fit-content;
 }
 
 .site-footer {
   background: var(--surface);
   border-top: 1px solid var(--border);
   padding: 32px 0 40px;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.95rem;
 }
 
 .footer-meta {
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-banner.active {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(11, 31, 42, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 30;
 }
 
 .cookie-modal.active {
   display: flex;
 }
 
 .cookie-modal .modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   width: 100%;
   max-width: 520px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 10px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .toggle-row:last-child {
   border-bottom: none;
 }
 
 .toggle-btn {
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 6px 14px;
   background: var(--bg);
   font-weight: 600;
   cursor: pointer;
 }
 
 .toggle-btn[aria-pressed="true"] {
   background: var(--primary);
   border-color: var(--primary);
   color: #041018;
 }
 
 .modal-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 @media (min-width: 768px) {
   .site-nav {
     position: static;
     display: block;
     border: none;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .nav-list {
     flex-direction: row;
     align-items: center;
     padding: 0;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-content,
   .hero-card {
     flex: 1;
   }
 
   .button-row {
     flex-direction: row;
     align-items: center;
   }
 
   .card-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 calc(50% - 16px);
   }
 
   .two-col {
     flex-direction: row;
   }
 
   .cta-strip .cta-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     align-items: center;
   }
 
   .modal-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
 
 @media (min-width: 1024px) {
   .card {
     flex: 1 1 calc(33.333% - 16px);
   }
 }
