 :root {
   color-scheme: light;
   --ink: #1b1d22;
   --muted: #5c616b;
   --accent: #e4572e;
   --accent-dark: #b33e1e;
   --soft: #f4f1ed;
   --soft-2: #f9f7f4;
   --edge: #ded7d1;
   --green: #2b6f64;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--soft-2);
   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;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 6vw;
   background: var(--white);
   border-bottom: 1px solid var(--edge);
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   font-weight: 600;
   letter-spacing: 0.02em;
 }
 
 .brand span {
   font-size: 12px;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 15px;
 }
 
 .nav-links a {
   padding: 6px 10px;
   border-radius: 999px;
   background: transparent;
   transition: background 0.2s ease;
 }
 
 .nav-links a:hover {
   background: var(--soft);
 }
 
 .cta-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: var(--white);
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .cta-btn.secondary {
   background: var(--green);
 }
 
 .cta-btn.ghost {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent);
   color: var(--white);
   padding: 14px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
   z-index: 50;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 70px 6vw 40px;
   background: var(--white);
 }
 
 .hero-top {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-highlight {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 13px;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: var(--muted);
 }
 
 .hero h1 {
   font-size: clamp(2.4rem, 3.5vw, 3.8rem);
   margin: 0;
 }
 
 .hero p {
   font-size: 1.05rem;
   max-width: 620px;
 }
 
 .hero-visual {
   display: flex;
   align-items: center;
   gap: 16px;
   background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=900&q=80") center/cover;
   border-radius: 28px;
   min-height: 280px;
   padding: 24px;
   color: var(--white);
 }
 
 .hero-visual .overlay {
   background: rgba(27, 29, 34, 0.55);
   padding: 20px;
   border-radius: 20px;
   max-width: 320px;
 }
 
 .split-section {
   display: flex;
   flex-direction: column;
   gap: 28px;
   padding: 60px 6vw;
 }
 
 .split-section.alt {
   background: var(--soft);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split.reverse {
   flex-direction: column;
 }
 
 .split .copy {
   flex: 1;
 }
 
 .split .media {
   flex: 1;
   border-radius: 22px;
   overflow: hidden;
   box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--soft);
   color: var(--muted);
   font-size: 13px;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 20px;
   border-radius: 18px;
   background: var(--white);
   border: 1px solid var(--edge);
 }
 
 .card img {
   border-radius: 14px;
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .price-item {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 18px;
   border-radius: 16px;
   background: var(--white);
   border: 1px solid var(--edge);
 }
 
 .price-tag {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .form-wrapper {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 24px;
   background: var(--white);
   border-radius: 22px;
   border: 1px solid var(--edge);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   display: flex;
   flex-direction: column;
   gap: 6px;
   font-size: 14px;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--edge);
   font: inherit;
 }
 
 .footer {
   margin-top: auto;
   padding: 32px 6vw;
   background: var(--ink);
   color: var(--white);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer a {
   color: var(--white);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--white);
   border-radius: 18px;
   border: 1px solid var(--edge);
   padding: 16px;
   max-width: 320px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
   z-index: 60;
   display: none;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .banner-btn {
   padding: 8px 14px;
   border-radius: 999px;
   border: 1px solid var(--edge);
   background: var(--soft);
   cursor: pointer;
 }
 
 .banner-btn.primary {
   background: var(--green);
   color: var(--white);
   border-color: transparent;
 }
 
 .single-column {
   padding: 70px 6vw;
   background: var(--white);
 }
 
 .single-column h1 {
   margin-top: 0;
 }
 
 .meta-block {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-radius: 16px;
   background: var(--soft);
   color: var(--muted);
 }
 
 @media (min-width: 860px) {
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-top {
     flex: 1;
   }
 
   .hero-visual {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .pricing {
     flex-direction: row;
   }
 
   .price-item {
     flex: 1;
   }
 
   .form-wrapper {
     max-width: 520px;
   }
 }
