 :root {
   color-scheme: light;
   --ink: #1b1f1b;
   --muted: #4f5b4f;
   --accent: #2f6b49;
   --accent-soft: #e6f0e8;
   --sand: #f5f3ee;
   --fog: #f0f4f2;
   --sun: #f6d58e;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 .nav-shell {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 28px 6vw 12px;
 }
 
 .nav-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.08em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.95rem;
 }
 
 .nav-tagline {
   max-width: 520px;
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .section {
   padding: 64px 6vw;
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .section.alt {
   background: var(--fog);
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .section.sun {
   background: var(--sun);
 }
 
 .section h2 {
   font-size: clamp(1.6rem, 2.8vw, 2.4rem);
   margin: 0;
 }
 
 .section p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: #fff;
   padding: 24px;
   border-left: 4px solid var(--accent);
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
 }
 
 .hero-media {
   position: relative;
   overflow: hidden;
   border-radius: 24px;
 }
 
 .hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .hero-overlay {
   position: absolute;
   bottom: 18px;
   left: 18px;
   background: rgba(27, 31, 27, 0.8);
   color: #fff;
   padding: 12px 18px;
   border-radius: 12px;
   font-size: 0.95rem;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
 }
 
 .btn.secondary {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .btn.ghost {
   background: transparent;
   color: var(--ink);
   border: 1px dashed var(--ink);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 20px;
   border-radius: 18px;
   background: #fff;
   box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
 }
 
 .card img {
   border-radius: 12px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .split-block {
   flex: 1;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .timeline-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px 20px;
   background: #fff;
   border-radius: 16px;
   border-left: 3px solid var(--accent);
 }
 
 .logo-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .logo-chip {
   padding: 10px 16px;
   border-radius: 999px;
   background: #fff;
   border: 1px solid #d2d8d2;
   font-size: 0.9rem;
 }
 
 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .price-card {
   background: #fff;
   padding: 22px;
   border-radius: 18px;
   border: 1px solid #e3e9e3;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-size: 1.4rem;
   font-weight: 700;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .step span {
   font-weight: 700;
   color: var(--accent);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .quote {
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
 }
 
 .form-shell {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .form-wrap {
   background: #fff;
   padding: 24px;
   border-radius: 22px;
   box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.95rem;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px;
   border-radius: 12px;
   border: 1px solid #cdd7cd;
   font-family: inherit;
 }
 
 .sticky-cta {
   position: sticky;
   top: 20px;
   align-self: flex-start;
   background: var(--accent);
   color: #fff;
   padding: 18px 20px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer {
   padding: 36px 6vw 48px;
   background: #101510;
   color: #e4ebe4;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer a {
   color: #dbe9db;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
   padding: 16px;
   max-width: 320px;
   display: none;
   z-index: 999;
 }
 
 .cookie-banner.active {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   gap: 8px;
   margin-top: 12px;
 }
 
 .utility-page {
   padding: 48px 6vw;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .utility-page h1 {
   margin: 0;
 }
 
 .utility-page ul {
   margin: 0;
   padding-left: 20px;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 @media (min-width: 860px) {
   .hero-grid {
     flex-direction: row;
     align-items: stretch;
   }
 
   .cards {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .pricing-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .price-card {
     flex: 1;
     min-width: 220px;
   }
 
   .form-shell {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .form-wrap {
     flex: 2;
   }
 
   .sticky-cta {
     flex: 1;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .quote {
     flex: 1;
   }
 }
