 :root {
   color-scheme: light;
   --bg: #f6f4f1;
   --ink: #1c1f24;
   --muted: #5c6672;
   --accent: #0f6a63;
   --accent-2: #f2b84b;
   --panel: #ffffff;
   --sand: #efe7dc;
   --shadow: 0 12px 30px rgba(20, 25, 30, 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;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 6vw;
   gap: 20px;
   background: var(--panel);
   border-bottom: 1px solid #e6e2dc;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   justify-content: center;
   min-height: 78vh;
   padding: 80px 8vw;
   background-color: #2a323a;
   background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)), url("https://images.pexels.com/photos/29206500/pexels-photo-29206500.jpeg");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   color: #ffffff;
 }
 
 .hero h1 {
   font-size: clamp(2.3rem, 4vw, 3.6rem);
   max-width: 720px;
   margin-bottom: 18px;
 }
 
 .hero p {
   max-width: 620px;
   font-size: 1.1rem;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 28px;
 }
 
 .btn {
   padding: 14px 26px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
   background: var(--accent-2);
   color: #1c1f24;
   box-shadow: var(--shadow);
 }
 
 .btn.secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid #e1d5c4;
 }
 
 .section {
   padding: 70px 8vw;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--panel);
   padding: 22px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .price {
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .image-wrap {
   background-color: #d9dfe6;
   border-radius: 18px;
   overflow: hidden;
   display: flex;
 }
 
 .image-wrap img {
   width: 100%;
   height: auto;
   object-fit: cover;
   display: block;
 }
 
 .inline-img {
   max-width: 540px;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .timeline-item {
   display: flex;
   gap: 18px;
   align-items: flex-start;
 }
 
 .step {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: var(--accent);
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 22px;
   padding: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-card button {
   align-self: flex-start;
 }
 
 .form-wrap {
   background: #ffffff;
   padding: 28px;
   border-radius: 26px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d6d2cc;
   font-size: 1rem;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: #ffffff;
   padding: 12px 16px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   display: flex;
   gap: 12px;
   align-items: center;
   z-index: 50;
 }
 
 .sticky-cta button {
   padding: 10px 18px;
   border-radius: 999px;
 }
 
 .footer {
   background: #121417;
   color: #d8dee6;
   padding: 40px 8vw 60px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer a {
   color: #d8dee6;
 }
 
 .legal-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   padding: 18px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   max-width: 360px;
   display: none;
   z-index: 60;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   margin-top: 14px;
 }
 
 .simple-header {
   padding: 50px 8vw 30px;
 }
 
 .simple-content {
   padding: 20px 8vw 80px;
 }
 
 .notice {
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
   border: 1px solid #e0dbd3;
 }
 
