 :root {
   color-scheme: light;
   --ink: #1f2a2b;
   --muted: #5d6b6f;
   --bg: #f6f7f5;
   --paper: #ffffff;
   --accent: #1f6f5c;
   --accent-soft: #e3f1ec;
   --accent-dark: #0f4337;
   --line: #d7e0da;
   --warn: #c98b2d;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 40px;
   background: var(--paper);
   border-bottom: 1px solid var(--line);
   gap: 24px;
 }
 
 .nav-left {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 .nav-center {
   font-size: 0.9rem;
   color: var(--muted);
   max-width: 360px;
 }
 
 .nav-right {
   display: flex;
   gap: 18px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .nav-right a {
   font-size: 0.95rem;
 }
 
 .nav-right a:hover,
 .btn:hover,
 .btn-outline:hover,
 .link-cta:hover,
 .sticky-cta:hover {
   color: var(--accent-dark);
 }
 
 .section {
   padding: 70px 40px;
 }
 
 .section.alt {
   background: var(--paper);
 }
 
 .section.tint {
   background: var(--accent-soft);
 }
 
 .container {
   max-width: 1100px;
   margin: 0 auto;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content {
   flex: 1;
 }
 
 .split-media {
   flex: 1;
   min-height: 320px;
   border-radius: 18px;
   overflow: hidden;
   background: #cfd8d1;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 .hero-title {
   font-size: 2.6rem;
   line-height: 1.15;
   margin-bottom: 18px;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .small {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .btn,
 .btn-outline {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid var(--accent);
   cursor: pointer;
 }
 
 .btn {
   background: var(--accent);
   color: #ffffff;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 26px;
 }
 
 .inline-image {
   max-width: 240px;
   border-radius: 14px;
   overflow: hidden;
   background: #d8e2dc;
   margin-top: 20px;
 }
 
 .card-row {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1;
   min-width: 240px;
   background: var(--paper);
   border: 1px solid var(--line);
   border-radius: 18px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .card-media {
   height: 170px;
   background: #cfd8d1;
 }
 
 .card-body {
   padding: 18px 20px 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   background: #ffffff;
   border-radius: 999px;
   border: 1px solid var(--line);
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .quote {
   font-style: italic;
   border-left: 3px solid var(--accent);
   padding-left: 16px;
   color: var(--muted);
 }
 
 .form-card {
   background: var(--paper);
   border-radius: 22px;
   padding: 28px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-field {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .form-field input,
 .form-field select,
 .form-field textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .form-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .form-row .form-field {
   flex: 1;
   min-width: 220px;
 }
 
 .banner {
   background-color: #516b5d;
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   color: #ffffff;
   border-radius: 24px;
   padding: 40px;
   position: relative;
   overflow: hidden;
 }
 
 .banner::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.35);
 }
 
 .banner-content {
   position: relative;
   z-index: 1;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .pricing-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .pricing-item {
   display: flex;
   gap: 18px;
   align-items: flex-start;
   padding: 18px;
   border-radius: 16px;
   background: var(--paper);
   border: 1px solid var(--line);
 }
 
 .pricing-item svg {
   width: 32px;
   height: 32px;
   flex-shrink: 0;
 }
 
 .footer {
   background: #101d1b;
   color: #d6e3df;
   padding: 50px 40px 70px;
   margin-top: auto;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-grid {
   display: flex;
   gap: 32px;
   flex-wrap: wrap;
 }
 
 .footer-col {
   min-width: 200px;
 }
 
 .footer .small {
   font-size: 0.85rem;
   color: #b3c2be;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: var(--paper);
   border: 1px solid var(--line);
   padding: 18px;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
   z-index: 20;
 }
 
 .cookie-banner.is-hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 110px;
   background: var(--warn);
   color: #1b1204;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   z-index: 10;
 }
 
 .callout {
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .link-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 @media (max-width: 960px) {
   .nav {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 16px;
   }
 }
