 :root {
   color-scheme: light;
   --ink: #1a1a1a;
   --muted: #5b5b5b;
   --accent: #2d6a4f;
   --accent-soft: #e6f4ee;
   --warm: #f6f1ec;
   --cool: #eef4f7;
   --line: #d9d9d9;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: #ffffff;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 a:hover,
 button:hover {
   filter: brightness(0.95);
 }
 
 img {
   display: block;
   max-width: 100%;
   object-fit: cover;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .site-header {
   padding: 24px 6vw;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .top-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .nav-links a {
   padding: 6px 0;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .hero {
   padding: 40px 6vw 80px;
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-copy h1 {
   font-size: clamp(2rem, 3vw, 3rem);
   margin: 0;
 }
 
 .hero-copy p {
   color: var(--muted);
   margin: 0;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .btn {
   border: none;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 20px;
   border-radius: 999px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .hero-media {
   flex: 1 1 360px;
   position: relative;
 }
 
 .hero-media .image-frame {
   background: #dce9e1;
   padding: 12px;
   border-radius: 24px;
   transform: translateY(20px);
 }
 
 .hero-media img {
   border-radius: 18px;
   width: 100%;
   height: 100%;
 }
 
 .section {
   padding: 64px 6vw;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section.offset {
   background: var(--warm);
   position: relative;
 }
 
 .split-row {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
 }
 
 .split-row.reverse {
   flex-direction: row-reverse;
 }
 
 .card-stack {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 240px;
   border: 1px solid var(--line);
   border-radius: 20px;
   padding: 20px;
   background: #ffffff;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   border-radius: 16px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .image-frame {
   background: #e8eef1;
   padding: 10px;
   border-radius: 18px;
 }
 
 .note-block {
   border-left: 4px solid var(--accent);
   padding-left: 16px;
   color: var(--muted);
 }
 
 .form-panel {
   background: var(--cool);
   border-radius: 22px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-panel label {
   font-weight: 600;
 }
 
 .form-panel input,
 .form-panel select,
 .form-panel textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 1rem;
   width: 100%;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .footer {
   margin-top: auto;
   padding: 40px 6vw;
   border-top: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 18px;
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 999px;
   padding: 8px;
   border: 1px solid var(--line);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
   z-index: 30;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   padding: 20px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 16px;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 40;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .hidden {
   display: none;
 }
 
 .banner-image {
   background: #e7ecef;
   border-radius: 20px;
   padding: 12px;
 }
 
 .banner-image img {
   border-radius: 16px;
 }
 
 .facts {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .facts div {
   flex: 1 1 180px;
   background: #ffffff;
   border-radius: 16px;
   padding: 16px;
   border: 1px solid var(--line);
 }
 
 .highlight {
   background: var(--accent-soft);
   padding: 16px;
   border-radius: 16px;
 }
 
 .offset-card {
   background: #ffffff;
   border-radius: 20px;
   padding: 22px;
   border: 1px solid var(--line);
   max-width: 520px;
 }
 
 .floating-panel {
   margin-top: -40px;
   align-self: flex-end;
 }
