 :root {
   color-scheme: light;
   --bg: #f6f4f1;
   --ink: #171717;
   --muted: #5a5a5a;
   --accent: #1f5a4b;
   --accent-light: #cfe6d8;
   --accent-2: #9a6b2f;
   --surface: #ffffff;
   --line: #d9d3cb;
   --shadow: 0 18px 40px rgba(23, 23, 23, 0.12);
   --radius: 20px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .inline-link {
   color: var(--accent-2);
   font-weight: 600;
   text-decoration: underline;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 .container {
   width: min(1180px, 92vw);
   margin: 0 auto;
 }
 
 .topbar {
   padding: 24px 0 10px;
 }
 
 .topbar-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .logo {
   display: flex;
   flex-direction: column;
   font-weight: 700;
   letter-spacing: 1px;
 }
 
 .logo span {
   font-size: 12px;
   color: var(--muted);
   font-weight: 500;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   font-size: 15px;
 }
 
 .nav a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   padding: 40px 0 70px;
 }
 
 .hero-wrap {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 32px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .hero-title {
   font-size: clamp(32px, 5vw, 54px);
   line-height: 1.1;
   margin: 0 0 18px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 24px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 14px 22px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-outline {
   border-color: var(--accent);
   color: var(--accent);
   background: transparent;
 }
 
 .btn-ghost {
   border-color: transparent;
   background: #efe9e1;
 }
 
 .hero-visual {
   position: relative;
   display: flex;
   justify-content: flex-end;
 }
 
 .hero-visual .visual-frame {
   background: linear-gradient(140deg, #e8efe9, #f5f1eb);
   border-radius: 36px;
   padding: 24px;
   width: min(520px, 90vw);
   transform: translateX(10%);
   box-shadow: var(--shadow);
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.alt {
   background: #fbfaf7;
 }
 
 .section-heading {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-bottom: 26px;
 }
 
 .section-heading h2 {
   margin: 0;
   font-size: clamp(26px, 4vw, 38px);
 }
 
 .section-heading p {
   margin: 0;
   color: var(--muted);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .offset-card {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 24px;
   box-shadow: var(--shadow);
   position: relative;
 }
 
 .offset-card.badge {
   border-left: 6px solid var(--accent-2);
 }
 
 .stat-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 14px 18px;
   background: #f0ede7;
   border-radius: 16px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card img,
 .card svg {
   border-radius: 14px;
 }
 
 .price-tag {
   font-weight: 700;
   color: var(--accent);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .testimonial {
   background: #ffffff;
   padding: 18px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .timeline-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .timeline-step span {
   font-weight: 700;
   color: var(--accent);
 }
 
 .form-wrap {
   background: #ffffff;
   padding: 28px;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 15px;
   font-family: inherit;
 }
 
 .form-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .sticky-cta {
   position: sticky;
   top: 20px;
   align-self: flex-start;
   background: var(--accent);
   color: #fff;
   padding: 20px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer {
   padding: 50px 0 60px;
   background: #111;
   color: #f3f1ec;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .footer a {
   color: #f3f1ec;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 50%;
   transform: translateX(-50%);
   background: #fff;
   box-shadow: var(--shadow);
   padding: 16px 20px;
   border-radius: 18px;
   display: none;
   gap: 14px;
   flex-direction: column;
   width: min(560px, 92vw);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .subnav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .page-hero {
   padding: 40px 0 50px;
 }
 
 .page-hero h1 {
   margin: 0;
   font-size: clamp(30px, 4vw, 44px);
 }
 
 .policy {
   background: #fff;
   border-radius: 20px;
   padding: 26px;
   box-shadow: var(--shadow);
 }
 
 .contact-blocks {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .contact-card {
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
 }
 
 .image-stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .image-stack img {
   border-radius: 20px;
 }
 
 @media (min-width: 860px) {
   .hero-wrap {
     flex-direction: row;
     align-items: center;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .cards {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1;
   }
 
   .timeline {
     flex-direction: row;
   }
 
   .timeline-step {
     flex: 1;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .contact-blocks {
     flex-direction: row;
   }
 
   .contact-card {
     flex: 1;
   }
 }
