 :root {
   color-scheme: light;
   --ink: #1a2b1f;
   --muted: #5f6f64;
   --accent: #2f7a55;
   --accent-strong: #1b5f3f;
   --sand: #f4f1ea;
   --mist: #eef4f0;
   --sun: #f7d98b;
   --paper: #ffffff;
   --shadow: 0 18px 40px rgba(26, 43, 31, 0.12);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 64px;
   padding: 32px 0 80px;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .nav-shell {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 32px;
   padding: 12px 0 24px;
 }
 
 .brand {
   font-size: 1.4rem;
   font-weight: 700;
   letter-spacing: 0.08rem;
   text-transform: lowercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   background: var(--mist);
   border-radius: 28px;
   padding: 36px;
   position: relative;
   overflow: hidden;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero img {
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 .hero h1 {
   font-size: clamp(2.4rem, 3.2vw, 3.6rem);
   line-height: 1.1;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: white;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn:hover {
   transform: translateY(-2px);
   background: var(--accent-strong);
 }
 
 .btn-outline {
   background: transparent;
   border: 2px solid var(--accent);
   color: var(--accent);
 }
 
 .btn-outline:hover {
   background: var(--accent);
   color: white;
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .section-header h2 {
   font-size: clamp(1.6rem, 2.2vw, 2.4rem);
 }
 
 .section-header p {
   color: var(--muted);
 }
 
 .offset-block {
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding: 28px;
   border-radius: 24px;
   background: var(--sand);
 }
 
 .offset-block.asym-right {
   margin-left: auto;
   width: min(720px, 100%);
 }
 
 .offset-block.asym-left {
   margin-right: auto;
   width: min(720px, 100%);
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .two-col > div {
   flex: 1;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--paper);
   border-radius: 20px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   border-radius: 14px;
 }
 
 .tag {
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.08rem;
   color: var(--accent);
 }
 
 .metrics {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .metric {
   display: flex;
   justify-content: space-between;
   padding: 14px 18px;
   border-radius: 14px;
   background: var(--mist);
   font-weight: 600;
 }
 
 .services-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 20px;
   border-radius: 18px;
   background: var(--paper);
   border: 1px solid rgba(26, 43, 31, 0.12);
 }
 
 .service-item strong {
   font-size: 1.1rem;
 }
 
 .service-price {
   color: var(--accent-strong);
   font-weight: 700;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid rgba(26, 43, 31, 0.2);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .form-note {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .cta-strip {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 26px;
   background: var(--accent);
   color: white;
   border-radius: 22px;
 }
 
 .cta-strip a {
   text-decoration: underline;
 }
 
 .floating-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--sun);
   color: var(--ink);
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 700;
   box-shadow: var(--shadow);
   z-index: 20;
 }
 
 .footer {
   padding: 40px 0 0;
   border-top: 1px solid rgba(26, 43, 31, 0.12);
   display: flex;
   flex-direction: column;
   gap: 16px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--ink);
   color: white;
   padding: 18px;
   border-radius: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cookie-actions button {
   padding: 10px 18px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: var(--sun);
 }
 
 .cookie-reject {
   background: transparent;
   color: white;
   border: 1px solid rgba(255, 255, 255, 0.4);
 }
 
 @media (min-width: 820px) {
   .hero-grid {
     flex-direction: row;
     align-items: center;
   }
 
   .two-col {
     flex-direction: row;
   }
 
   .card-grid {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .metrics {
     flex-direction: row;
   }
 
   .metric {
     flex: 1;
   }
 
   .services-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-item {
     flex: 1 1 calc(50% - 14px);
   }
 
   .cta-strip {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
