 :root {
   --ink: #1b1f2a;
   --muted: #4b5466;
   --accent: #1f6feb;
   --accent-soft: #e6f0ff;
   --warm: #f6f2ea;
   --cool: #eef4f9;
   --paper: #ffffff;
   --shadow: 0 14px 32px rgba(27, 31, 42, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--paper);
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .topbar {
   padding: 24px 0 10px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.2px;
 }
 
 .nav-links {
   display: flex;
   align-items: center;
   gap: 18px;
   font-size: 14px;
 }
 
 .ad-label {
   background: var(--accent-soft);
   color: var(--accent);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 12px;
 }
 
 .section {
   padding: 72px 0;
 }
 
 .section-compact {
   padding: 48px 0;
 }
 
 .hero {
   padding-top: 24px;
 }
 
 .hero-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 36px;
   align-items: center;
 }
 
 .hero-copy {
   flex: 1 1 420px;
 }
 
 .hero-copy h1 {
   font-size: clamp(32px, 5vw, 52px);
   line-height: 1.05;
   margin: 14px 0 18px;
 }
 
 .hero-copy p {
   font-size: 18px;
   color: var(--muted);
   max-width: 520px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 12px;
   letter-spacing: 1.8px;
   color: var(--accent);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 24px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-secondary {
   background: #111827;
 }
 
 .text-link {
   font-weight: 600;
   color: var(--accent);
 }
 
 .hero-visual {
   flex: 1 1 380px;
   position: relative;
   display: flex;
   justify-content: center;
 }
 
.hero-image-frame {
  width: 100%;
  max-width: 520px;
}

.image-medium {
  max-width: 420px;
}

.image-tall {
  max-width: 360px;
}

.card-compact {
  max-width: 320px;
}

.flex-wide {
  flex: 1 1 420px;
}

.flex-regular {
  flex: 1 1 360px;
}

.flex-narrow {
  flex: 1 1 340px;
}

.full-row {
  flex: 1 1 100%;
}

 .image-frame {
   background: #dfe7f1;
   padding: 16px;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 18px;
 }
 
 .floating-card {
   position: absolute;
   bottom: -24px;
   left: -18px;
   background: var(--paper);
   padding: 16px 18px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   max-width: 220px;
 }
 
 .offset-block {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .offset-left {
   position: relative;
   left: -16px;
 }
 
 .offset-right {
   position: relative;
   left: 16px;
 }
 
 .soft-panel {
   background: var(--warm);
   border-radius: 28px;
   padding: 28px;
 }
 
 .cool-panel {
   background: var(--cool);
   border-radius: 28px;
   padding: 28px;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--paper);
   border-radius: 20px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
.image-shell {
  background: #e1e8f1;
  border-radius: 16px;
  overflow: hidden;
}

.card .image-shell {
  height: 180px;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
 .badge {
   background: var(--accent-soft);
   color: var(--accent);
   padding: 4px 10px;
   border-radius: 999px;
   font-size: 12px;
   align-self: flex-start;
 }
 
 .section-title {
   font-size: 28px;
   margin: 0 0 18px;
 }
 
 .quote {
   font-style: italic;
   color: var(--muted);
 }
 
 .pricing-wrap {
   background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
   background-size: cover;
   background-position: center;
   border-radius: 30px;
   padding: 40px;
   color: #fff;
 }
 
 .pricing-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .price-card {
   flex: 1 1 240px;
   background: rgba(15, 23, 42, 0.85);
   border-radius: 20px;
   padding: 20px;
 }
 
 .form-wrap {
   background: #0f172a;
   color: #fff;
   border-radius: 30px;
   padding: 32px;
 }
 
 .service-choice {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-bottom: 24px;
 }
 
 .service-option {
   flex: 1 1 180px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 16px;
   padding: 14px;
 }
 
 .form-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .form-field {
   flex: 1 1 220px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .form-field input,
 .form-field select,
 .form-field textarea {
   border-radius: 10px;
   border: none;
   padding: 10px 12px;
   font-size: 14px;
 }
 
 .form-field textarea {
   min-height: 90px;
   resize: vertical;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: #111827;
   color: #fff;
   padding: 12px 16px;
   border-radius: 18px;
   display: flex;
   align-items: center;
   gap: 12px;
   z-index: 40;
   box-shadow: var(--shadow);
 }
 
 .sticky-cta button {
   background: #fff;
   color: #111827;
   border: none;
   border-radius: 999px;
   padding: 8px 14px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #111827;
   color: #fff;
   padding: 14px 18px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   border: none;
   padding: 8px 14px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: #fff;
   color: #111827;
 }
 
 .cookie-reject {
   background: transparent;
   color: #fff;
   border: 1px solid rgba(255, 255, 255, 0.5);
 }
 
 .footer {
   background: #0b1120;
   color: #d5d7dd;
   padding: 40px 0;
   font-size: 14px;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   justify-content: space-between;
 }
 
 .footer a {
   color: #fff;
 }
 
 .legal-list {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .page-hero {
   background: var(--cool);
   padding: 50px 0;
 }
 
 .page-hero-inner {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   align-items: center;
 }
 
 .simple-card {
   background: var(--paper);
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
 }
 
 .list-block {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .contact-box {
   background: var(--warm);
   border-radius: 22px;
   padding: 20px;
 }
 
 .note {
   font-size: 13px;
   color: var(--muted);
 }
 
 .bg-sheen {
   background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .spacer-top {
   margin-top: 18px;
 }
 
 @media (max-width: 780px) {
   .offset-left,
   .offset-right {
     left: 0;
   }
 
   .floating-card {
     position: static;
     margin-top: 16px;
   }
 
   .sticky-cta {
     left: 18px;
     right: 18px;
     justify-content: space-between;
   }
 }
