 :root {
   color-scheme: light;
   --ink: #1b1b1b;
   --muted: #5a5a5a;
   --accent: #2f6f4e;
   --accent-dark: #1f4b36;
   --paper: #f7f4ef;
   --mist: #ece7df;
   --sage: #dfe8dc;
   --stone: #d9d2c7;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--paper);
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   padding: 32px 24px;
   background: var(--mist);
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .brand {
   font-size: 1.3rem;
   letter-spacing: 0.06em;
   text-transform: uppercase;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   line-height: 1.4;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .main {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   background: var(--sage);
 }
 
 .hero-text {
   flex: 1;
   min-width: 280px;
   padding: 48px 56px;
 }
 
 .hero-text h1 {
   font-size: 2.6rem;
   margin: 0 0 16px;
 }
 
 .hero-text p {
   max-width: 520px;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .hero-cta {
   margin-top: 24px;
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 20px;
   border: none;
   border-radius: 28px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: #fff;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .hero-visual {
   flex: 1;
   min-height: 320px;
   background-size: cover;
   background-position: center;
 }
 
 .bg-hero {
   background-image: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80");
 }
 
 .section.bg-ambient {
   background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .section.bg-ambient p {
   color: #f1eee7;
 }
 
 .section {
   padding: 56px;
   display: flex;
   gap: 32px;
   flex-wrap: wrap;
 }
 
 .section.light {
   background: #fff;
 }
 
 .section.mist {
   background: var(--mist);
 }
 
 .section.stone {
   background: var(--stone);
 }
 
 .section h2 {
   margin-top: 0;
   font-size: 2rem;
 }
 
 .section p {
   color: var(--muted);
   line-height: 1.6;
 }
 
 .split {
   display: flex;
   gap: 28px;
   flex: 1;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .image-wrap {
   flex: 1;
   min-width: 240px;
   background: #d7d0c6;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .image-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .image-wrap.small {
   width: 110px;
   height: 90px;
   flex: 0 0 110px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
   flex: 1;
   min-width: 260px;
 }
 
 .feature-card {
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   display: flex;
   gap: 16px;
   align-items: center;
 }
 
 .pricing-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .price-card {
   flex: 1;
   min-width: 220px;
   background: #fff;
   padding: 20px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-size: 1.4rem;
   color: var(--accent-dark);
 }
 
 .tag {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .inline-cta {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 .form-card {
   background: #fff;
   padding: 28px;
   border-radius: 20px;
   max-width: 520px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-card label {
   font-weight: 600;
 }
 
 .form-card input,
 .form-card select,
 .form-card textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cfc8bd;
   font-size: 0.95rem;
   font-family: inherit;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .footer {
   padding: 40px 56px;
   background: #1f2421;
   color: #f1eee7;
 }
 
 .footer a {
   color: #e1d8c8;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 24px;
   background: var(--accent-dark);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
   z-index: 20;
   cursor: pointer;
   border: none;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
   z-index: 30;
 }
 
 .cookie-banner.is-hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .page-header {
   padding: 40px 56px 16px;
 }
 
 .page-header h1 {
   margin: 0 0 10px;
 }
 
 .content-block {
   padding: 16px 56px 48px;
 }
 
 .notice {
   background: #fff;
   padding: 18px;
   border-radius: 14px;
 }
