 :root {
   color-scheme: light;
   --ink: #0b1b2a;
   --muted: #516273;
   --surface: #f5f7fa;
   --surface-strong: #e3ebf5;
   --accent: #2b6df3;
   --accent-dark: #1b4db8;
   --highlight: #f1c84b;
   --line: #d2dbe6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 6vw;
   border-bottom: 1px solid var(--line);
   background: #fff;
 }
 
 .brand {
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 0.03em;
 }
 
 .nav {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .nav a:hover {
   color: var(--ink);
 }
 
 .hero-band {
   display: flex;
   flex-direction: column;
   gap: 20px;
   padding: 40px 6vw 30px;
   background: linear-gradient(120deg, #f8fbff 0%, #eef4ff 45%, #ffffff 100%);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
   padding: 56px 6vw;
 }
 
 .split.alt {
   background: var(--surface);
 }
 
 .split.tight {
   padding-top: 40px;
   padding-bottom: 40px;
 }
 
 .split .panel {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .split .panel.visual {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 22px;
   box-shadow: 0 16px 40px rgba(12, 30, 54, 0.08);
 }
 
 .split .panel.visual.no-frame {
   background: transparent;
   border: none;
   box-shadow: none;
   padding: 0;
 }
 
 .split .panel.wide {
   gap: 26px;
 }
 
 .headline {
   font-size: 2.4rem;
   line-height: 1.1;
   margin: 0;
 }
 
 .lead {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: background 0.2s ease;
 }
 
 .button:hover {
   background: var(--accent-dark);
 }
 
 .button.ghost {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .chip-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .chip {
   padding: 8px 12px;
   border-radius: 999px;
   background: #fff;
   border: 1px solid var(--line);
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--line);
   background: #fff;
 }
 
 .card h3 {
   margin: 0;
   font-size: 1.1rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .quote {
   border-left: 4px solid var(--highlight);
   padding-left: 16px;
   color: var(--muted);
 }
 
 .form-card {
   padding: 24px;
   border-radius: 18px;
   background: #fff;
   border: 1px solid var(--line);
   box-shadow: 0 20px 40px rgba(15, 26, 45, 0.12);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .footer {
   margin-top: auto;
   padding: 32px 6vw;
   background: #0f2235;
   color: #d6e1ee;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.9rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--highlight);
   color: #1b1b1b;
   font-weight: 700;
   box-shadow: 0 12px 24px rgba(30, 30, 30, 0.2);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #0f2235;
   color: #e4edf8;
   padding: 16px 18px;
   border-radius: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-actions .button {
   padding: 10px 16px;
 }
 
 .cookie-actions .ghost {
   border-color: #c8d6ea;
   color: #c8d6ea;
 }
 
 .notice {
   padding: 12px 16px;
   border-radius: 14px;
   background: var(--surface-strong);
   color: var(--muted);
 }
 
 .subtle {
   color: var(--muted);
   font-size: 0.92rem;
 }
 
 .icon-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .icon-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .icon-item img {
   width: 36px;
 }
 
 .visual-stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .visual-stack img {
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .tagline {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   color: var(--muted);
 }
 
 .link-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .divider {
   height: 1px;
   background: var(--line);
   margin: 8px 0;
 }
 
 @media (min-width: 900px) {
   .hero-band {
     flex-direction: row;
     align-items: center;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .split .panel {
     flex: 1;
   }
 
   .two-col {
     flex-direction: row;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .card-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 }
