 :root {
   color-scheme: light;
   --ink: #1c2430;
   --muted: #5b6675;
   --accent: #2857c5;
   --accent-dark: #1b3b86;
   --sand: #f4f1ec;
   --mist: #eef1f6;
   --pine: #1f3d34;
   --warm: #f8efe6;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .site-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 6vw;
   border-bottom: 1px solid #e7e9ee;
   gap: 24px;
 }
 
 .brand {
   font-size: 1.3rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .site-nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .site-nav a {
   padding: 4px 0;
   border-bottom: 2px solid transparent;
 }
 
 .site-nav a:hover {
   border-bottom-color: var(--accent);
 }
 
 .ad-label {
   font-size: 0.8rem;
   color: var(--muted);
   padding: 4px 8px;
   border-radius: 999px;
   background: var(--mist);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 80px;
   padding: 40px 6vw 80px;
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split {
   display: flex;
   align-items: center;
   gap: 40px;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .split .media-frame {
   flex: 1;
   border-radius: 18px;
   overflow: hidden;
   background: var(--mist);
 }
 
 .media-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .hero h1 {
   font-size: clamp(2.4rem, 3vw, 3.4rem);
   line-height: 1.1;
 }
 
 .eyebrow {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.16em;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #ffffff;
   box-shadow: 0 12px 24px rgba(40, 87, 197, 0.2);
 }
 
 .btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 16px 30px rgba(40, 87, 197, 0.28);
 }
 
 .btn-light {
   border: 1px solid #d8dde6;
   color: var(--ink);
   background: #ffffff;
 }
 
 .btn-accent {
   background: var(--pine);
   color: #ffffff;
 }
 
 .tagline {
   max-width: 520px;
   color: var(--muted);
 }
 
 .panel {
   padding: 32px;
   border-radius: 24px;
   background: var(--mist);
 }
 
 .panel.warm {
   background: var(--warm);
 }
 
 .panel.dark {
   background: var(--pine);
   color: #ffffff;
 }
 
 .panel.dark a {
   color: #ffffff;
   text-decoration: underline;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   flex: 1 1 240px;
   min-width: 240px;
   border-radius: 20px;
   border: 1px solid #e4e7ef;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   background: #ffffff;
 }
 
 .card .image-shell {
   background: #e9edf3;
 }
 
 .card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
 }
 
 .card-content {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 20px;
 }
 
 .price {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .inline-links a {
   text-decoration: underline;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .steps span {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--accent);
   color: #ffffff;
   font-weight: 700;
   margin-right: 12px;
 }
 
 .quote {
   font-style: italic;
   color: var(--muted);
 }
 
 .form-shell {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d4d9e2;
   font-size: 1rem;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 12px;
   display: flex;
   justify-content: center;
   padding: 12px;
   margin: 0 6vw 24px;
   background: rgba(255, 255, 255, 0.9);
   border-radius: 16px;
   box-shadow: 0 10px 30px rgba(20, 24, 36, 0.12);
 }
 
 .site-footer {
   padding: 40px 6vw 60px;
   background: #111720;
   color: #dce2ee;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .disclaimer {
   font-size: 0.85rem;
   color: #b8c0d0;
   max-width: 760px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   max-width: 360px;
   background: #ffffff;
   border-radius: 16px;
   padding: 20px;
   box-shadow: 0 20px 40px rgba(16, 24, 40, 0.2);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .cookie-banner.is-hidden {
   display: none;
 }
 
 .section.bg-savings {
   background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
   padding: 48px;
   border-radius: 28px;
 }
 
 .section.bg-savings .panel {
   background: rgba(17, 23, 32, 0.7);
   color: #ffffff;
 }
 
 .info-block {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .contact-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .contact-block strong {
   color: var(--ink);
 }
 
 .list-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .list-columns ul {
   list-style: none;
   flex: 1 1 240px;
 }
 
 .list-columns li {
   margin-bottom: 10px;
 }
 
 .reference-links a {
   text-decoration: underline;
 }
 
 @media (max-width: 980px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .site-header {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .site-nav {
     gap: 12px;
   }
 
   .sticky-cta {
     margin: 0 4vw 24px;
   }
 }
