 :root {
   --ink: #1c1f1d;
   --muted: #5b6a63;
   --paper: #f6f5f2;
   --accent: #2b6f5a;
   --accent-soft: #e4f1ea;
   --card: #ffffff;
   --line: #dde4df;
   --highlight: #f0ede7;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .top-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 18px 6vw;
   background: var(--card);
   border-bottom: 1px solid var(--line);
 }
 
 .brand {
   font-weight: 600;
   font-size: 1.1rem;
   letter-spacing: 0.02em;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
   padding: 48px 6vw 38px;
 }
 
 .hero-card {
   display: flex;
   flex-direction: column;
   gap: 24px;
   background: var(--card);
   border-radius: 18px;
   padding: 28px;
   box-shadow: 0 18px 40px rgba(15, 20, 18, 0.08);
 }
 
 .hero-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
 }
 
 .hero-copy {
   flex: 1 1 320px;
 }
 
 .hero-image {
   flex: 1 1 320px;
 }
 
 .img-frame {
   background: #dfe8e2;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .section {
   padding: 38px 6vw;
 }
 
 .section.alt {
   background: var(--highlight);
 }
 
 .section-title {
   font-size: 1.6rem;
   margin-bottom: 12px;
 }
 
 .section-note {
   color: var(--muted);
   max-width: 680px;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
   margin-top: 24px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--card);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
   font-size: 1.1rem;
 }
 
 .price {
   font-weight: 600;
   color: var(--accent);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
 }
 
 .btn {
   border: none;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 26px;
   align-items: center;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .form-card {
   background: var(--card);
   border-radius: 18px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .form-stack {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-family: inherit;
   font-size: 0.95rem;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .footer {
   margin-top: auto;
   padding: 26px 6vw 40px;
   background: var(--card);
   border-top: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 10px;
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--card);
   border-radius: 999px;
   padding: 10px 12px;
   box-shadow: 0 10px 30px rgba(10, 16, 13, 0.18);
   border: 1px solid var(--line);
   display: flex;
   align-items: center;
   gap: 10px;
   z-index: 999;
 }
 
 .sticky-cta span {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 50%;
   bottom: 22px;
   transform: translateX(-50%);
   background: var(--card);
   border-radius: 18px;
   border: 1px solid var(--line);
   box-shadow: 0 18px 40px rgba(10, 16, 13, 0.18);
   padding: 18px 20px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   max-width: 820px;
   width: calc(100% - 40px);
   z-index: 998;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 @media (max-width: 720px) {
   .top-bar {
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
   }
 
   .sticky-cta {
     left: 18px;
     right: 18px;
     justify-content: space-between;
   }
 }
