 :root {
   color-scheme: light;
   --bg: #f6f4ef;
   --ink: #1f2a24;
   --muted: #5c6a62;
   --accent: #1f7a5f;
   --accent-2: #f2b94b;
   --surface: #ffffff;
   --shadow: 0 24px 50px rgba(10, 20, 15, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .header {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 32px 7vw 16px;
   position: relative;
   gap: 24px;
 }
 
 .brand-block {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .brand-name {
   font-size: 1.6rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: lowercase;
 }
 
 .brand-tagline {
   font-size: 0.95rem;
   color: var(--muted);
   max-width: 320px;
 }
 
 .floating-nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   padding: 16px 18px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .floating-nav a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .floating-nav a:hover {
   color: var(--accent);
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent);
   color: #fff;
   padding: 14px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   font-weight: 600;
   z-index: 20;
 }
 
 .main {
   display: flex;
   flex-direction: column;
   gap: 56px;
   padding: 16px 7vw 80px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   top: 40px;
   right: 0;
   width: 48%;
   height: 70%;
   background: rgba(31, 122, 95, 0.08);
   border-radius: 40px;
   z-index: 0;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
   z-index: 1;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 3.5vw, 3.6rem);
   line-height: 1.1;
 }
 
 .hero p {
   font-size: 1.1rem;
   max-width: 560px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }
 
 .btn {
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   font-weight: 600;
   background: var(--accent);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .btn.ghost {
   border-color: transparent;
   background: transparent;
   color: var(--muted);
   padding-left: 0;
 }
 
 .hero-image {
   align-self: flex-end;
   width: min(520px, 90%);
   border-radius: 28px;
   box-shadow: var(--shadow);
 }
 
 .offset-panel {
   display: flex;
   flex-direction: column;
   gap: 20px;
   background: var(--surface);
   padding: 28px;
   border-radius: 24px;
   box-shadow: var(--shadow);
   align-self: flex-start;
   max-width: 640px;
 }
 
 .split-row {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split-row.reverse {
   flex-direction: column;
 }
 
 .split-card {
   background: var(--surface);
   padding: 24px;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .metrics {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .metric {
   display: flex;
   gap: 16px;
   align-items: center;
 }
 
 .metric span {
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .services-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .service-card {
   background: var(--surface);
   padding: 22px;
   border-radius: 22px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-card h3 {
   margin: 0;
 }
 
 .service-price {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--accent);
 }
 
 .layered-section {
   position: relative;
   padding: 32px;
   background: var(--surface);
   border-radius: 28px;
   box-shadow: var(--shadow);
 }
 
 .layered-section::before {
   content: "";
   position: absolute;
   top: -14px;
   left: 24px;
   width: 110px;
   height: 110px;
   background: rgba(242, 185, 75, 0.25);
   border-radius: 32px;
   z-index: 0;
 }
 
 .layered-section > * {
   position: relative;
   z-index: 1;
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 10px;
   font-style: italic;
 }
 
 .form-wrap {
   background: var(--surface);
   padding: 28px;
   border-radius: 26px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-wrap label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .form-wrap input,
 .form-wrap select,
 .form-wrap textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d6d8d2;
   font-family: inherit;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .footer {
   margin-top: auto;
   padding: 32px 7vw 48px;
   background: #e9efe7;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   bottom: 16px;
   background: var(--surface);
   padding: 16px 18px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   border: none;
   padding: 8px 14px;
   border-radius: 999px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cookie-actions .accept {
   background: var(--accent);
   color: #fff;
 }
 
 .cookie-actions .reject {
   background: #e0e4de;
   color: var(--muted);
 }
 
 .page-header {
   margin: 24px 0 12px;
   font-size: 2rem;
 }
 
 .contact-card {
   background: var(--surface);
   padding: 24px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 .list-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .legal-wrap {
   background: var(--surface);
   padding: 26px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 @media (min-width: 900px) {
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-content {
     max-width: 540px;
   }
 
   .split-row {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split-row.reverse {
     flex-direction: row-reverse;
   }
 
   .services-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     flex: 1 1 calc(50% - 20px);
   }
 
   .metrics {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .metric {
     flex: 1 1 calc(50% - 16px);
   }
 
   .form-row {
     flex-direction: row;
   }
 
   .form-row > div {
     flex: 1;
   }
 
   .footer {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-end;
   }
 }
