 :root {
   --bg: #f6f7f2;
   --bg-dark: #16251e;
   --text: #1c2a22;
   --muted: #4f635a;
   --accent: #3a7d5b;
   --accent-soft: #d9eadf;
   --sand: #efe8da;
   --white: #ffffff;
   --shadow: 0 18px 40px rgba(20, 30, 25, 0.12);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   background: var(--bg);
   color: var(--text);
   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, 90%);
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 28px 0;
 }
 
 .nav-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
 }
 
 .pill {
   padding: 10px 16px;
   border-radius: 999px;
   background: var(--accent-soft);
   color: var(--text);
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }
 
 .button {
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: var(--white);
   border: none;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
 }
 
 .button.secondary {
   background: var(--text);
 }
 
 .button.ghost {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .sticky-cta {
   position: sticky;
   top: 16px;
   align-self: flex-start;
   background: var(--sand);
   padding: 18px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section.alt {
   background: var(--white);
 }
 
 .section.dark {
   background: var(--bg-dark);
   color: var(--white);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .split-content {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 12px;
   color: var(--muted);
 }
 
 .headline {
   font-size: clamp(28px, 5vw, 44px);
   line-height: 1.2;
 }
 
 .lead {
   font-size: 17px;
   color: var(--muted);
 }
 
 .dark .lead,
 .dark .eyebrow {
   color: #cfe2d7;
 }
 
 .highlight {
   background: var(--accent-soft);
   padding: 14px 18px;
   border-radius: 16px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--white);
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   border-radius: 14px;
 }
 
 .price {
   font-size: 20px;
   font-weight: 600;
 }
 
 .form-card {
   background: var(--white);
   border-radius: 22px;
   padding: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 13px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.12em;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #c9d7cf;
   font-size: 15px;
   background: #fdfdfb;
 }
 
 .footer {
   margin-top: auto;
   padding: 36px 0;
   background: var(--text);
   color: var(--white);
 }
 
 .footer a {
   color: #cfe2d7;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
   border-bottom: 1px solid currentColor;
 }
 
 .banner {
   position: fixed;
   inset: auto 16px 16px 16px;
   background: var(--white);
   border-radius: 18px;
   box-shadow: var(--shadow);
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 14px;
   z-index: 40;
 }
 
 .banner-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .split-nav {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .split-nav .nav-links {
   justify-content: flex-start;
 }
 
 .notice {
   font-size: 14px;
   color: var(--muted);
 }
 
 @media (min-width: 768px) {
   .nav-row {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .split-content,
   .split-visual {
     flex: 1;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .banner-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
