 :root {
   --ink: #1b1b1f;
   --muted: #5a6270;
   --bg: #f6f3ef;
   --accent: #1f6feb;
   --accent-dark: #174ea6;
   --highlight: #ffd166;
   --panel: #ffffff;
   --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   padding: 24px 6vw 12px 6vw;
 }
 
 .top-nav {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 16px;
   align-items: center;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.25rem;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   padding: 6px 10px;
   border: 1px solid #d6d6dd;
   border-radius: 999px;
   background: #fff8e8;
 }
 
 nav ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 nav a {
   font-size: 0.95rem;
 }
 
 main {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 64px;
   padding: 0 6vw 80px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: stretch;
 }
 
 .hero-text {
   flex: 1 1 320px;
   background: var(--panel);
   padding: 36px;
   border-radius: 24px;
   box-shadow: var(--shadow);
   position: relative;
   top: 20px;
 }
 
 .hero-media {
   flex: 1 1 320px;
   position: relative;
  background-color: #dfe5ef;
  border-radius: 28px;
 }
 
 .hero-media img {
   width: 100%;
   height: 420px;
   border-radius: 28px;
   background-color: #dde3ec;
 }
 
 .hero-cta {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .btn {
   border: none;
   background: var(--accent);
   color: white;
   padding: 12px 18px;
   border-radius: 999px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: #1f2937;
 }
 
 .btn.light {
   background: #f0f4ff;
   color: var(--accent-dark);
   border: 1px solid #d3dfff;
 }
 
 .section-split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .section-split.reverse {
   flex-direction: row-reverse;
 }
 
 .panel {
   flex: 1 1 320px;
   background: var(--panel);
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 .panel.offset {
   position: relative;
   top: -30px;
 }
 
 .image-card {
   flex: 1 1 260px;
   background: #e6e2dd;
   padding: 16px;
   border-radius: 20px;
 }
 
 .image-card img {
   width: 100%;
   height: 280px;
   border-radius: 16px;
   background-color: #d3d0c8;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 220px;
   background: var(--panel);
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-card img {
   width: 100%;
   height: 160px;
   border-radius: 12px;
   background-color: #e1e7ef;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .inline-link {
   font-weight: 600;
 }
 
 .form-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 form {
   flex: 1 1 320px;
   background: var(--panel);
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 form label {
   display: block;
   font-weight: 600;
   margin-bottom: 6px;
 }
 
 form input,
 form select,
 form textarea {
   width: 100%;
   padding: 10px 12px;
   margin-bottom: 16px;
   border-radius: 10px;
   border: 1px solid #ccd3dd;
   font-size: 0.95rem;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--highlight);
   color: #111827;
   border-radius: 999px;
   padding: 12px 18px;
   font-weight: 700;
   border: none;
   cursor: pointer;
   box-shadow: var(--shadow);
   z-index: 20;
 }
 
 footer {
   background: #101827;
   color: #e5e7eb;
   padding: 36px 6vw 48px;
 }
 
 footer a {
   color: #9dc1ff;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-col {
   flex: 1 1 220px;
 }
 
 .legal-note {
   font-size: 0.9rem;
   color: #cbd5f5;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 16px;
   padding: 16px;
   max-width: 320px;
   box-shadow: var(--shadow);
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 10px;
 }
 
 .cookie-actions .btn {
   padding: 8px 14px;
   font-size: 0.9rem;
 }
 
 .subtle {
   color: var(--muted);
 }
 
 .wide-band {
   background: #151b2c;
   color: #f9fafb;
   padding: 28px 24px;
   border-radius: 24px;
 }
 
 .wide-band a {
   color: #ffd166;
 }
 
 .list-block {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
