 :root {
   --bg: #f7f6f2;
   --ink: #1e2a26;
   --muted: #5a6b66;
   --accent: #2f7d5c;
   --accent-dark: #245d45;
   --sand: #efe9dc;
   --mist: #e4efe9;
   --sun: #f4d88c;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
   border-radius: 16px;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 24px 0;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: lowercase;
 }
 
 .nav {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav a {
   padding: 6px 10px;
   border-radius: 999px;
   background: transparent;
   transition: background 0.2s ease;
 }
 
 .nav a:hover {
   background: var(--mist);
 }
 
 .hero {
   padding: 48px 0 36px;
 }
 
 .hero h1 {
   font-size: clamp(2.1rem, 3vw, 3.2rem);
   margin: 0 0 16px;
 }
 
 .hero p {
   color: var(--muted);
   max-width: 560px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn.secondary {
   background: var(--sand);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
   padding: 50px 0;
 }
 
 .split.reverse {
   flex-direction: column;
 }
 
 .split__content {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .split__content h2 {
   margin: 0;
   font-size: clamp(1.6rem, 2.4vw, 2.3rem);
 }
 
 .split__content p {
   color: var(--muted);
   margin: 0;
 }
 
 .highlight {
   background: var(--mist);
   padding: 18px;
   border-radius: 16px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #fff;
   padding: 18px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--sun);
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .form-card {
   background: #fff;
   padding: 22px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
 }
 
 label {
   font-weight: 600;
   font-size: 0.95rem;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #d0d9d4;
   font-size: 0.95rem;
 }
 
 .sticky-cta {
   position: sticky;
   top: 16px;
   background: var(--accent);
   color: #fff;
   padding: 18px;
   border-radius: 16px;
 }
 
 .inline-cta {
   color: var(--accent-dark);
   font-weight: 600;
   text-decoration: underline;
 }
 
 .section-bg {
   background: var(--sand);
 }
 
 .section-mist {
   background: var(--mist);
 }
 
 footer {
   padding: 40px 0;
   background: #0f1a17;
   color: #d9e3df;
 }
 
 footer a {
   color: #d9e3df;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: #1a2521;
   color: #fff;
   padding: 16px 18px;
   border-radius: 16px;
   display: none;
   gap: 12px;
   flex-direction: column;
   width: min(520px, 92%);
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 @media (min-width: 900px) {
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
