 :root {
   color-scheme: light;
   --ink: #1c1f24;
   --muted: #5d6572;
   --accent: #2f6b57;
   --accent-soft: #e4f1ec;
   --sun: #f3f0ea;
   --line: #d7dbe2;
   --shadow: 0 24px 40px rgba(25, 30, 40, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #fbfbf9;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 280px;
   background: #f5f6f2;
   border-right: 1px solid var(--line);
   padding: 32px 24px;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand h1 {
   font-size: 22px;
   letter-spacing: 0.5px;
 }
 
 .brand span {
   color: var(--muted);
   font-size: 14px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 15px;
 }
 
 .nav a {
   padding: 10px 12px;
   border-radius: 14px;
   background: transparent;
   transition: background 0.2s ease;
 }
 
 .nav a:hover {
   background: var(--accent-soft);
 }
 
 .side-cta {
   margin-top: auto;
   padding: 16px;
   background: var(--accent);
   color: white;
   border-radius: 16px;
   text-align: left;
   font-weight: 600;
 }
 
 main {
   flex: 1;
   padding: 48px 6vw 80px;
   display: flex;
   flex-direction: column;
   gap: 56px;
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero {
   display: flex;
   gap: 32px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .hero-text {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero h2 {
   font-size: clamp(32px, 4vw, 46px);
   line-height: 1.15;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 18px;
 }
 
 .hero-media {
   flex: 1 1 320px;
   background: var(--sun);
   border-radius: 28px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 14px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: white;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.outline {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .split {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
 }
 
 .panel {
   flex: 1 1 280px;
   background: white;
   border-radius: 24px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .panel h3 {
   font-size: 20px;
   margin-bottom: 12px;
 }
 
 .panel p {
   color: var(--muted);
 }
 
 .cards {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   background: #ffffff;
   border-radius: 20px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .card small {
   color: var(--muted);
 }
 
 .band {
   background: #f0f4f5;
   border-radius: 28px;
   padding: 28px;
   position: relative;
   overflow: hidden;
 }
 
 .band::before {
   content: "";
   position: absolute;
   width: 160px;
   height: 160px;
   border-radius: 50%;
   background: rgba(47, 107, 87, 0.12);
   right: -40px;
   top: -40px;
 }
 
 .band .band-content {
   position: relative;
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .metrics {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .metric {
   flex: 1 1 140px;
   background: white;
   padding: 16px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .metric strong {
   font-size: 20px;
   display: block;
 }
 
 .timeline {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .step {
   flex: 1 1 220px;
   padding: 18px;
   border-left: 3px solid var(--accent);
   background: #fff;
   border-radius: 16px;
 }
 
 .quote {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .quote blockquote {
   flex: 2 1 320px;
   font-size: 18px;
   font-style: italic;
   color: var(--muted);
 }
 
 .quote img {
   flex: 1 1 200px;
   border-radius: 18px;
 }
 
 .pricing-grid {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .price-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 22px;
   padding: 22px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price-card strong {
   font-size: 20px;
 }
 
 .form-wrap {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
   align-items: flex-start;
 }
 
 form {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #ffffff;
   padding: 24px;
   border-radius: 22px;
   border: 1px solid var(--line);
 }
 
 label {
   font-weight: 600;
   font-size: 14px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 14px;
   border: 1px solid var(--line);
   font-size: 15px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent);
   color: white;
   padding: 14px 20px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   font-weight: 600;
   z-index: 10;
 }
 
 .footer {
   border-top: 1px solid var(--line);
   padding-top: 24px;
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   color: var(--muted);
   font-size: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   max-width: 320px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 20px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .hidden {
   display: none;
 }
 
 .two-column {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .two-column > div {
   flex: 1 1 280px;
 }
 
 @media (max-width: 960px) {
   .page {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
   }
 
   .side-cta {
     margin-top: 0;
   }
 }
 
 @media (max-width: 680px) {
   .sidebar {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
