 :root {
   color-scheme: light;
   --ink: #1d1f2a;
   --muted: #5a6072;
   --accent: #2f6c9d;
   --accent-strong: #1f4f75;
   --surface: #f5f4f1;
   --surface-strong: #ece8e1;
   --line: #d9d3c9;
   --highlight: #fff4cf;
   --shadow: 0 20px 45px rgba(29, 31, 42, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .nav-wrap {
   background: #ffffff;
   border-bottom: 1px solid var(--line);
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 18px 7vw 12px;
 }
 
 .brand {
   font-size: 22px;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   max-width: 260px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
   font-weight: 600;
 }
 
 .nav-links a {
   padding: 6px 10px;
   border-radius: 999px;
   border: 1px solid transparent;
 }
 
 .nav-links a:focus,
 .nav-links a:hover {
   border-color: var(--line);
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   align-items: center;
   padding: 60px 7vw 40px;
   position: relative;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 20px 12vw auto auto;
   width: 220px;
   height: 220px;
   background: var(--highlight);
   border-radius: 28px;
   z-index: 0;
 }
 
 .hero-content {
   flex: 1 1 330px;
   max-width: 520px;
   position: relative;
   z-index: 1;
 }
 
 .hero-content h1 {
   font-size: clamp(32px, 4vw, 52px);
   line-height: 1.1;
   margin: 0 0 20px;
 }
 
 .hero-content p {
   font-size: 17px;
   color: var(--muted);
   margin-bottom: 24px;
 }
 
 .hero-visual {
   flex: 1 1 320px;
   max-width: 520px;
   transform: translateY(18px);
 }
 
 .hero-visual .image-shell {
   border-radius: 28px;
   overflow: hidden;
   background: #dfe5ea;
   box-shadow: var(--shadow);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .section {
   padding: 40px 7vw;
 }
 
 .section.offset {
   background: var(--surface);
 }
 
 .section h2 {
   font-size: clamp(24px, 3vw, 36px);
   margin-top: 0;
 }

 .muted {
   color: var(--muted);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: flex-start;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .panel {
   flex: 1 1 280px;
   min-width: 280px;
 }
 
 .panel.card {
   background: #ffffff;
   padding: 24px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .image-shell {
   background: #e2e6ec;
   border-radius: 22px;
   overflow: hidden;
 }

 .bg-hero {
   background: #dfe5ea;
 }

 .bg-soft {
   background: #e3e7ee;
 }

 .bg-sand {
   background: #e4e1db;
 }

 .bg-ice {
   background: #dde3eb;
 }

 .bg-cloud {
   background: #e6e9ef;
 }

 .bg-pearl {
   background: #e6e2dc;
 }
 
 .floating-note {
   background: #ffffff;
   padding: 16px 18px;
   border-radius: 14px;
   border: 1px solid var(--line);
   margin-top: -30px;
   margin-left: 30px;
   max-width: 260px;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
   padding: 18px;
   border-radius: 16px;
   background: #ffffff;
   border: 1px solid var(--line);
 }
 
 .step span {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: var(--surface-strong);
   font-weight: 700;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   padding: 18px 20px;
   border-radius: 16px;
   border: 1px solid var(--line);
   background: #ffffff;
 }
 
 .service strong {
   font-size: 16px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-strong);
 }
 
 .cta-inline {
   font-weight: 600;
   color: var(--accent-strong);
   border-bottom: 1px solid var(--accent-strong);
 }
 
 .testimonial {
   background: #ffffff;
   padding: 22px;
   border-left: 5px solid var(--accent);
   border-radius: 10px;
 }
 
 .form-shell {
   background: #ffffff;
   padding: 26px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 15px;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .inline-cta {
   display: inline-flex;
   gap: 8px;
   align-items: center;
 }
 
 .metrics {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .metric {
   flex: 1 1 180px;
   padding: 18px;
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .footer {
   margin-top: auto;
   background: var(--surface);
   padding: 32px 7vw;
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-bottom: 14px;
 }
 
 .footer strong {
   color: var(--ink);
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 5;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   max-width: 360px;
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 16px;
   box-shadow: var(--shadow);
   z-index: 6;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 .hidden {
   display: none;
 }
 
 .page-title {
   font-size: clamp(28px, 3vw, 40px);
   margin: 0 0 18px;
 }
 
 .list-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .list-columns > div {
   flex: 1 1 240px;
 }
 
 @media (max-width: 768px) {
   .hero::before {
     display: none;
   }
 
   .sticky-cta {
     right: 14px;
     left: 14px;
   }
 
   .sticky-cta .btn {
     width: 100%;
   }
 }
