 :root {
   color-scheme: light;
   --ink: #1a1a1a;
   --muted: #5f6167;
   --accent: #c25a2a;
   --accent-dark: #8f3f1c;
   --sand: #f5f1ec;
   --mist: #eef2f4;
   --olive: #2e3a2d;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--white);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .topbar {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 22px 6vw;
   border-bottom: 1px solid #e3e3e3;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
   border-radius: 10px;
   background: var(--accent);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 18px;
 }
 
 .topnav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 15px;
 }
 
 .topnav a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .topnav a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
   padding: 36px 6vw 48px;
 }
 
 .split-section {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 38px 6vw;
 }
 
 .split-section.reverse {
   background: var(--sand);
 }
 
 .split-content,
 .split-visual {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .split-visual {
   align-items: center;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 12px;
   color: var(--muted);
 }
 
 .title {
   font-size: 30px;
   line-height: 1.2;
 }
 
 .lead {
   color: var(--muted);
   font-size: 17px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 10px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   transition: 0.2s ease;
 }
 
 .btn.primary {
   background: var(--accent);
   color: var(--white);
 }
 
 .btn.primary:hover {
   background: var(--accent-dark);
 }
 
 .btn.ghost {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .btn.ghost:hover {
   background: var(--accent);
   color: var(--white);
 }
 
 .info-pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--mist);
   font-size: 13px;
 }
 
 .image-card {
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--white);
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card img {
   border-radius: 14px;
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
   color: var(--olive);
 }
 
 .form-block {
   background: var(--olive);
   color: var(--white);
   border-radius: 22px;
   padding: 26px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-block label {
   font-size: 14px;
   margin-bottom: 6px;
 }
 
 .form-block input,
 .form-block select,
 .form-block textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: none;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .floating-cta {
   position: fixed;
   right: 16px;
   bottom: 16px;
   z-index: 10;
   background: var(--accent);
   color: var(--white);
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
 }
 
 .footer {
   margin-top: auto;
   padding: 32px 6vw;
   background: #111;
   color: #f3f3f3;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 14px;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   background: rgba(255, 255, 255, 0.1);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   right: 18px;
   bottom: 18px;
   background: var(--white);
   border-radius: 18px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .split-table {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-radius: 16px;
   background: var(--mist);
 }
 
 .legal {
   padding: 36px 6vw 48px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 @media (min-width: 860px) {
   .topbar {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .split-section {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split-section.reverse {
     flex-direction: row-reverse;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .form-row {
     flex-direction: row;
   }
 
   .table-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
