 :root {
   color-scheme: light;
   --ink: #1b1b1f;
   --muted: #5c6670;
   --sand: #f4efe9;
   --ocean: #215b73;
   --gum: #d8a66c;
   --foam: #e7f1f5;
   --night: #0f2732;
   --accent: #d96c4f;
   --border: rgba(27, 27, 31, 0.12);
   --shadow: 0 20px 60px rgba(15, 39, 50, 0.14);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 header {
   padding: 2rem 0 1.5rem;
 }
 
 .nav-wrap {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 2rem;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.12em;
   font-size: 0.95rem;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 1.5rem;
   align-items: center;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 0.35rem;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   padding: 2.5rem 0 3rem;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-copy {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero-title {
   font-size: clamp(2.6rem, 4vw, 3.8rem);
   line-height: 1.05;
 }
 
 .hero-card {
   background: var(--foam);
   padding: 1.5rem;
   border-radius: 1.5rem;
   box-shadow: var(--shadow);
 }
 
 .hero-card p {
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   align-items: center;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.85rem 1.6rem;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-secondary {
   border-color: var(--ink);
 }
 
 .tag {
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   color: var(--muted);
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section-alt {
   background: var(--sand);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .offset-block {
   background: #fff;
   padding: 2rem;
   border-radius: 1.5rem;
   box-shadow: var(--shadow);
   margin-left: auto;
 }
 
 .offset-panel {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   border-left: 3px solid var(--accent);
   padding-left: 1.5rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   display: flex;
   align-items: baseline;
   gap: 0.8rem;
 }
 
 .stat span {
   font-size: 2rem;
   font-weight: 700;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: #fff;
   border: 1px solid var(--border);
   padding: 1.5rem;
   border-radius: 1.25rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card h3 {
   font-size: 1.2rem;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--ocean);
 }
 
 .quote {
   background: var(--night);
   color: #fff;
   padding: 2.5rem;
   border-radius: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .quote p {
   color: rgba(255, 255, 255, 0.78);
 }
 
 .inline-media {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .inline-media img {
   border-radius: 1rem;
 }
 
 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
 }
 
 .pricing-card {
   background: #fff;
   border-radius: 1.5rem;
   padding: 1.5rem;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .pricing-card .price {
   font-size: 1.35rem;
   font-weight: 700;
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 label {
   font-size: 0.9rem;
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 0.8rem 1rem;
   border-radius: 0.75rem;
   border: 1px solid var(--border);
   font-family: inherit;
   font-size: 1rem;
 }
 
 .sticky-cta {
   position: sticky;
   top: 1rem;
   background: #fff;
   border-radius: 1.25rem;
   border: 1px solid var(--border);
   padding: 1.25rem;
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 footer {
   margin-top: auto;
   padding: 2rem 0 3rem;
   background: var(--night);
   color: #fff;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   font-size: 0.95rem;
 }
 
 .footer-meta {
   margin-top: 1rem;
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.85rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 1rem;
   right: 1rem;
   bottom: 1rem;
   background: #fff;
   border-radius: 1rem;
   box-shadow: var(--shadow);
   border: 1px solid var(--border);
   padding: 1rem 1.25rem;
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.8rem;
   flex-wrap: wrap;
 }
 
 .banner-hidden {
   display: none;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .pill {
   padding: 0.4rem 0.9rem;
   border-radius: 999px;
   border: 1px solid var(--border);
   font-size: 0.85rem;
 }
 
 @media (min-width: 860px) {
   .hero-grid,
   .split,
   .form-wrap {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-copy,
   .hero-card,
   .split > div,
   .form-main,
   .sticky-cta {
     flex: 1;
   }
 
   .hero-card {
     margin-top: 2rem;
   }
 
   .offset-block {
     width: min(480px, 100%);
   }
 
   .cards,
   .pricing-grid {
     flex-direction: row;
   }
 
   .card,
   .pricing-card {
     flex: 1;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
   }
 }
