:root {
   --ink: #1e2326;
   --muted: #5b646b;
   --accent: #2e7d62;
   --accent-dark: #245e4a;
   --soft: #f2f4f1;
   --sand: #f7f1ea;
   --sun: #f7d8a6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: var(--ink);
   text-decoration: none;
 }
 
 img {
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .site-header {
   padding: 18px 6vw;
   background: #ffffff;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .nav-left {
   display: flex;
   align-items: center;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   background: var(--soft);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .hero {
   display: flex;
   align-items: flex-end;
   min-height: 70vh;
   padding: 120px 6vw 70px;
   color: #ffffff;
   position: relative;
   background-size: cover;
   background-position: center;
 }

.hero-main {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
}
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(12, 16, 18, 0.45);
 }
 
 .hero-content {
   position: relative;
   max-width: 560px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero h1 {
   font-size: 42px;
   line-height: 1.2;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: #f3f6f4;
 }
 
 .btn-row {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .btn {
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #ffffff;
   cursor: pointer;
   transition: background 0.2s ease, transform 0.2s ease;
 }
 
 .btn:hover {
   background: var(--accent-dark);
   transform: translateY(-1px);
 }
 
 .btn-outline {
   background: transparent;
   border-color: #ffffff;
 }
 
 .section {
   padding: 70px 6vw;
   position: relative;
 }
 
 .section-sand {
   background: var(--sand);
 }
 
 .section-soft {
   background: var(--soft);
 }
 
 .section-image-bg {
   color: #ffffff;
   background-size: cover;
   background-position: center;
 }

.trust-bg {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}
 
 .section-image-bg::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 24, 26, 0.55);
 }
 
 .section-image-bg .section-inner {
   position: relative;
 }
 
 .section-inner {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .asym-block {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .asym-block.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-text {
   flex: 1 1 320px;
 }
 
 .asym-media {
   flex: 1 1 320px;
   position: relative;
 }
 
 .offset-card {
   background: #ffffff;
   padding: 22px;
   border-radius: 20px;
   box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
   position: relative;
   top: -20px;
 }
 
 .img-frame {
   background: #dfe7e2;
   border-radius: 24px;
   overflow: hidden;
 }
 
 .img-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
 }
 
 .card h3 {
   margin: 0;
 }
 
 .price {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .mini-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cta-inline {
   color: var(--accent-dark);
   text-decoration: underline;
 }
 
 .form-shell {
   background: #ffffff;
   border-radius: 24px;
   padding: 26px;
   box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #d7dcdc;
   font-size: 15px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 110px;
 }
 
 .footer {
   margin-top: auto;
   padding: 40px 6vw 50px;
   background: #141718;
   color: #f6f6f6;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .footer small {
   color: #c9d0cf;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   border-radius: 999px;
   padding: 12px 18px;
   background: var(--sun);
   border: none;
   cursor: pointer;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
   transition: transform 0.2s ease;
 }
 
 .sticky-cta:hover {
   transform: translateY(-2px);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 10;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .pill {
   background: #ffffff;
   border-radius: 999px;
   padding: 6px 12px;
   border: 1px solid #d2d7d2;
 }
 
 .page-hero {
   display: flex;
   align-items: center;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .page-hero .img-frame {
   flex: 1 1 300px;
   min-height: 240px;
 }
 
 .page-hero .hero-text {
   flex: 1 1 320px;
 }
 
 .note-block {
   background: var(--soft);
   padding: 16px;
   border-radius: 18px;
 }
