:root {
  --bg: #05070d;
  --panel: rgba(9, 14, 25, 0.58);
  --panel-strong: rgba(7, 12, 22, 0.8);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --muted: #cbd7e6;
  --muted-2: #94a7be;
  --accent: #38bdf8;
  --accent-2: #7dd3fc;
  --pink: #ff79be;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.32);
  --glow-blue: 0 0 0 1px rgba(125, 211, 252, 0.14), 0 18px 48px rgba(56, 189, 248, 0.16);
  --glow-pink: 0 0 0 1px rgba(255, 121, 190, 0.14), 0 18px 48px rgba(255, 121, 190, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; }

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(255, 94, 165, 0.12), transparent 24%),
    linear-gradient(180deg, #08101c 0%, #05070d 100%);
}

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  transition: background 0.32s ease, backdrop-filter 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
.site-header.scrolled {
  background: rgba(3, 7, 16, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  transition: padding 0.32s ease, gap 0.32s ease;
}
.site-header.scrolled .header-inner {
  padding: 10px 0;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: gap 0.32s ease;
}
.site-header.scrolled .brand {
  gap: 10px;
}
.brand-logo, .footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}
.brand-logo {
  transition: width 0.32s ease, height 0.32s ease, transform 0.32s ease;
}
.site-header.scrolled .brand-logo {
  width: 44px;
  height: 44px;
  transform: translateY(-1px);
}
.brand-copy { display: flex; flex-direction: column; min-width: 0; }
.brand-name { font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; transition: font-size 0.32s ease; }
.site-header.scrolled .brand-name { font-size: 0.96rem; }
.brand-tag, .footer-brand span, .footer-copy { font-size: 0.79rem; color: var(--muted-2); }
.site-nav { display: flex; align-items: center; gap: 32px; transition: gap 0.32s ease; }
.site-header.scrolled .site-nav { gap: 22px; }
.site-nav a { font-size: 0.95rem; color: var(--muted); transition: color 0.25s ease, opacity 0.25s ease, background .25s ease, transform 0.25s ease; }
.site-nav a:hover, .footer-links a:hover, .text-link:hover { color: var(--text); }
.site-nav > a:not(.nav-cta):hover { transform: translateY(-1px); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(125, 211, 252, 0.34);
  color: var(--text) !important;
  font-size: 0.93rem !important;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.08);
}
.site-header.scrolled .nav-cta {
  padding: 9px 15px;
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(125, 211, 252, 0.42);
  box-shadow: 0 10px 26px rgba(56, 189, 248, 0.14);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero-media, .hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: heroFloat 18s ease-in-out infinite alternate;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.92) 0%, rgba(3, 8, 18, 0.78) 28%, rgba(3, 8, 18, 0.4) 58%, rgba(3, 8, 18, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 8, 18, 0.18) 0%, rgba(3, 8, 18, 0.58) 100%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(70px); pointer-events: none; }
.hero-glow-one { width: 280px; height: 280px; background: rgba(56, 189, 248, 0.16); top: 16%; left: 10%; }
.hero-glow-two { width: 240px; height: 240px; background: rgba(255, 112, 171, 0.12); right: 12%; bottom: 18%; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 140px 0 84px; }

.hero-card,
.trust-item,
.service-card,
.package-card,
.process-feature,
.before-after-card,
.gallery-card,
.testimonial-card,
.cta-panel,
.contact-form,
.contact-copy,
.packages-note {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 14, 27, 0.64) 0%, rgba(8, 14, 27, 0.48) 100%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hover-glow-card,
.immersive-card {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s ease,
    background 0.36s ease,
    filter 0.36s ease;
  will-change: transform, box-shadow;
}

.hover-glow-card::before,
.immersive-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.36), rgba(255, 121, 190, 0.18), rgba(125, 211, 252, 0));
  opacity: 0;
  transition: opacity 0.42s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .hover-glow-card:hover,
  .hover-glow-card:focus-within {
    transform: translateY(-5px) scale(1.006);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(125, 211, 252, 0.04);
    border-color: rgba(125, 211, 252, 0.22);
  }

  .hover-glow-card:hover::before,
  .hover-glow-card:focus-within::before,
  .immersive-card:hover::before {
    opacity: 1;
  }
}
.hero-card {
  max-width: 620px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(8, 14, 27, 0.46) 0%, rgba(8, 14, 27, 0.3) 100%);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}
.hero-card-expandable {
  max-width: 500px;
  min-height: 272px;
  cursor: pointer;
  overflow: hidden;
  transition:
    max-width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    min-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.36s ease,
    border-color 0.36s ease,
    box-shadow 0.36s ease,
    transform 0.36s ease;
}
.hero-card-expandable .eyebrow-wrap,
.hero-card-expandable .hero-card-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    max-height 0.44s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.3s ease,
    margin 0.3s ease;
}
.hero-card-expandable .eyebrow-wrap {
  margin-bottom: 0;
}
.hero-card-expandable .hero-card-details {
  display: grid;
}
.hero-card-expandable h1 {
  margin: 0;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), font-size 0.32s ease;
}
.hero-expand-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: rgba(224, 231, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
  transition: opacity 0.22s ease, transform 0.28s ease, max-height 0.28s ease, margin 0.28s ease;
}
.hero-expand-hint-icon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.08);
  flex: 0 0 auto;
}
.hero-expand-hint-hover { display: inline; }
.hero-expand-hint-touch { display: none; }
.hero-card-expandable.is-expanded,
.hero-card-expandable:hover,
.hero-card-expandable:focus-visible,
.hero-card-expandable:focus-within {
  max-width: 590px;
  min-height: 0;
  background: linear-gradient(180deg, rgba(8, 14, 27, 0.72) 0%, rgba(8, 14, 27, 0.54) 100%);
  border-color: rgba(125, 211, 252, 0.16);
  box-shadow: var(--glow-blue), 0 18px 46px rgba(0, 0, 0, 0.32);
}
.hero-card-expandable.is-expanded h1,
.hero-card-expandable:hover h1,
.hero-card-expandable:focus-visible h1,
.hero-card-expandable:focus-within h1 {
  transform: translateY(2px);
}
.hero-card-expandable.is-expanded .hero-expand-hint,
.hero-card-expandable:hover .hero-expand-hint,
.hero-card-expandable:focus-visible .hero-expand-hint,
.hero-card-expandable:focus-within .hero-expand-hint {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  transform: translateY(-8px);
  overflow: hidden;
}
.hero-card-expandable.is-expanded .eyebrow-wrap,
.hero-card-expandable.is-expanded .hero-card-details,
.hero-card-expandable:hover .eyebrow-wrap,
.hero-card-expandable:hover .hero-card-details,
.hero-card-expandable:focus-visible .eyebrow-wrap,
.hero-card-expandable:focus-visible .hero-card-details,
.hero-card-expandable:focus-within .eyebrow-wrap,
.hero-card-expandable:focus-within .hero-card-details {
  max-height: 420px;
  opacity: 1;
  overflow: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-card-expandable.is-expanded .eyebrow-wrap,
.hero-card-expandable:hover .eyebrow-wrap,
.hero-card-expandable:focus-visible .eyebrow-wrap,
.hero-card-expandable:focus-within .eyebrow-wrap {
  margin-bottom: 18px;
}
.hero-card-expandable.is-expanded .hero-card-details,
.hero-card-expandable:hover .hero-card-details,
.hero-card-expandable:focus-visible .hero-card-details,
.hero-card-expandable:focus-within .hero-card-details {
  margin-top: 22px;
}
.eyebrow-wrap, .section-kicker, .pill { display: inline-flex; align-items: center; }
.eyebrow-wrap { gap: 10px; margin-bottom: 18px; }
.eyebrow-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.08);
}
.eyebrow, .section-kicker {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}
.hero-card h1, .section-intro h2, .contact-copy h2, .cta-panel h2, .gallery-head h2 { margin: 0; }
.hero-card h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.05em; }
.hero-copy, .section-intro p, .service-card p, .process-copy p, .gallery-lead, .gallery-overlay span, .contact-copy p, .contact-points span, .testimonial-card p, .package-card p {
  color: var(--muted);
  line-height: 1.7;
}
.hero-copy { margin: 22px 0 0; max-width: 580px; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0 24px; border: none; border-radius: 999px;
  font-size: 0.98rem; font-weight: 700; cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, #6fdcff 100%); color: #04111b; box-shadow: 0 12px 28px rgba(56, 189, 248, 0.22); }
.btn-secondary { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: var(--text); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.hero-proof li, .pill { border-radius: 999px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); }
.hero-proof li { padding: 10px 14px; color: var(--text); font-size: 0.9rem; }
.scroll-indicator {
  position: absolute; left: 50%; bottom: 24px; z-index: 2; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.72); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
}
.scroll-line { width:1px; height:46px; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.95)); animation: scrollPulse 1.8s ease-in-out infinite; }

.trust-strip { position: relative; z-index: 2; margin-top: -44px; }
.trust-grid, .services-grid, .testimonials-grid, .packages-grid { display: grid; gap: 18px; }
.trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-item { padding: 22px 22px 20px; border-radius: var(--radius-lg); transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.36s ease; }
.trust-item strong, .service-card h3, .process-copy h3, .gallery-overlay strong, .contact-points strong, .testimonial-card strong, .footer-brand strong, .package-card h3, .packages-note strong { display:block; }
.trust-item strong { margin-bottom:8px; font-size:1rem; }
.trust-item span, .contact-points span, .footer-links a, .footer-brand span, .footer-copy, .packages-note span { color: var(--muted-2); }

.section { padding: 100px 0 0; }
.section-intro { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.section-intro.align-left { margin-left: 0; text-align: left; }
.section-intro.compact { margin-bottom: 24px; }
.section-intro h2, .contact-copy h2, .cta-panel h2, .gallery-head h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.02; letter-spacing: -0.04em; }
.section-intro p { margin: 14px 0 0; }

.services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-card, .testimonial-card, .contact-form, .contact-copy, .package-card, .packages-note { border-radius: var(--radius-lg); transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.36s ease; }
.service-card { padding: 28px; }
.service-number {
  display:inline-flex; margin-bottom:14px; color: var(--accent-2);
  font-size:.82rem; letter-spacing:.18em; text-transform: uppercase; font-weight:700;
}
.service-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted-2);
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-card h3, .package-card h3 { margin: 0; font-size: 1.3rem; }
.service-card p, .package-card p { margin: 14px 0 0; }
.service-card ul, .package-card ul {
  display:grid; gap:10px; padding:0; margin:20px 0 0; list-style:none;
}
.service-card li, .package-card li { position:relative; padding-left:20px; color: var(--muted); }
.service-card li::before, .package-card li::before {
  content:""; position:absolute; left:0; top:10px; width:8px; height:8px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
}

.packages-intro {
  display:grid;
  grid-template-columns: 1fr auto;
  gap:22px;
  align-items:end;
}
.packages-note {
  padding: 22px;
  max-width: 300px;
}
.packages-note strong { margin-bottom: 8px; }
.packages-grid { grid-template-columns: repeat(3, minmax(0,1fr)); align-items: stretch; }
.package-card { padding: 28px; display: grid; align-content: start; gap: 0; }
.package-card.featured {
  border-color: rgba(125, 211, 252, 0.32);
  transform: translateY(-10px) scale(1.01);
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.84) 0%, rgba(10, 18, 34, 0.72) 100%);
  box-shadow: 0 24px 58px rgba(56, 189, 248, 0.16), 0 18px 44px rgba(0, 0, 0, 0.24);
}
.package-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent-2);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.package-price {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.05em;
}
.package-price span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted-2);
  margin-left: 6px;
}
.package-role {
  margin: 12px 0 0;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.package-note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.6;
}
.package-card.featured .package-tag {
  color: #dff7ff;
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(125, 211, 252, 0.22);
}
.package-card.featured .package-btn {
  box-shadow: 0 14px 30px rgba(56, 189, 248, 0.24);
}
.package-btn { width: 100%; margin-top: 22px; }

.process-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  align-items: stretch;
}
.process-feature {
  overflow:hidden;
  border-radius: var(--radius-xl);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.36s ease;
}
.process-feature-large {
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: stretch;
}
.process-feature:not(.process-feature-large) {
  display:grid;
  grid-template-rows: minmax(320px, 1fr) auto;
}
.process-image-wrap { overflow: hidden; }
.process-feature-large .process-image-wrap { min-height:100%; }
.process-feature:not(.process-feature-large) .process-image-wrap { min-height:320px; }
.process-image {
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease, filter .35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .process-feature:hover .process-image,
  .gallery-card:hover img,
  .before-after-card:hover img {
    transform: scale(1.05);
  }
}
.process-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pill {
  padding:10px 14px; margin-bottom:18px; color: var(--accent-2);
  font-size:.76rem; letter-spacing:.16em; text-transform: uppercase; font-weight:700;
}
.process-copy h3 { margin: 0; font-size: 1.5rem; }
.process-copy p {
  margin: 14px 0 0;
  max-width: 34ch;
}

.before-after-grid, .contact-grid, .footer-inner, .cta-panel { display:grid; gap:22px; }
.before-after-grid { grid-template-columns: .8fr 1.2fr; align-items:center; }
.before-after-card, .gallery-card { overflow:hidden; }
.before-after-card { border-radius: var(--radius-xl); transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.36s ease; }
.before-after-card img, .gallery-card img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.before-after-intro h2 { max-width: 14ch; }
.before-after-intro > p { max-width: 50ch; }
.before-after-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.before-after-points span,
.compare-proof-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.compare-proof-chip-muted {
  color: var(--muted-2);
  background: rgba(255,255,255,.035);
}
.compare-frame {
  display: grid;
  gap: 12px;
}
.compare-topbar,
.compare-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.compare-footer {
  padding: 4px 6px 6px;
}
.compare-caption {
  display: grid;
  gap: 4px;
}
.compare-caption strong {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}
.compare-caption span {
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.55;
}
.compare-drag-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}
.compare-drag-icon {
  position: relative;
  width: 34px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.compare-drag-icon::before,
.compare-drag-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid rgba(255,255,255,.8);
  border-right: 2px solid rgba(255,255,255,.8);
}
.compare-drag-icon::before {
  left: 8px;
  transform: translateY(-50%) rotate(-135deg);
}
.compare-drag-icon::after {
  right: 8px;
  transform: translateY(-50%) rotate(45deg);
}
.text-link {
  display:inline-flex; align-items:center; gap:8px; margin-top:18px; font-weight:700; color: var(--accent-2);
}

.gallery-shell { position: relative; }
.gallery-head {
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items:end;
  margin-bottom: 24px;
}
.gallery-lead { margin: 0; max-width: 540px; justify-self: end; }
.gallery-grid.immersive-grid {
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 18px;
}
.gallery-card {
  position: relative;
  border-radius: 26px;
  min-height: 100%;
  overflow: hidden;
  background: #0b1320;
  transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.46s cubic-bezier(0.22, 1, 0.36, 1), filter 0.36s ease, border-color 0.36s ease;
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}
.gallery-card::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,0.02) 30%, rgba(2,6,23,0.7) 100%);
  transition: opacity .35s ease;
}
.gallery-image-hero { object-position: center 46%; }
.gallery-image-action { object-position: center 44%; }
.gallery-image-results { object-position: center 42%; }
.gallery-image-hand { object-position: center 48%; }
.gallery-image-arrival { object-position: center 40%; }
.gallery-image-reflection { object-position: center 52%; }
.gallery-card-hero { grid-column: span 7; min-height: 520px; }
.gallery-card-wide { grid-column: span 8; min-height: 360px; }
.gallery-grid .gallery-card:not(.gallery-card-hero):not(.gallery-card-wide) { grid-column: span 5; min-height: 250px; }
@media (hover: hover) and (pointer: fine) {
  .immersive-card:hover {
    transform: translateY(-6px) scale(1.008);
    box-shadow: 0 20px 48px rgba(56, 189, 248, 0.12), 0 14px 34px rgba(255, 121, 190, 0.1), 0 18px 46px rgba(0,0,0,.28);
  }
}
.immersive-card:hover::after { opacity: .82; }
.gallery-overlay {
  position:absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display:grid;
  gap: 6px;
}
.gallery-overlay strong {
  font-size: 1.12rem;
  letter-spacing: -.02em;
}
.gallery-overlay.compact-overlay strong { font-size: 1rem; }

.testimonials-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.testimonial-card { padding: 28px; }
.testimonial-card p { margin: 0 0 18px; }
.testimonial-intro { margin-bottom: 22px; }
.testimonial-lead {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(226, 236, 248, 0.8);
}
.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.credibility-chip {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.028) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
}
.credibility-chip strong {
  display:block;
  margin-bottom: 8px;
  font-size: .98rem;
  letter-spacing: -.01em;
}
.credibility-chip span {
  color: rgba(226, 236, 248, 0.72);
  font-size: .93rem;
  line-height: 1.55;
}
.polished-testimonials-grid {
  align-items: stretch;
}
.polished-testimonial-card {
  position: relative;
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(10, 16, 31, 0.8) 0%, rgba(10, 16, 31, 0.68) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 44px rgba(0,0,0,.18);
}
.polished-testimonial-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(125, 211, 252, 0.18);
  pointer-events: none;
}
.featured-testimonial {
  border-color: rgba(125, 211, 252, 0.24);
  box-shadow: 0 24px 50px rgba(8, 47, 73, 0.28), 0 16px 34px rgba(0,0,0,.16);
}
.testimonial-topline {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.testimonial-rating {
  letter-spacing: .16em;
  font-size: .78rem;
  color: rgba(244, 114, 182, 0.92);
}
.testimonial-tag {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: rgba(226, 236, 248, 0.82);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.polished-testimonial-card p {
  margin: 0;
  line-height: 1.72;
}
.testimonial-meta {
  display:grid;
  gap: 5px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.testimonial-meta strong {
  font-size: .98rem;
}
.testimonial-meta span {
  color: rgba(226, 236, 248, 0.65);
  font-size: .88rem;
}
.cta-panel {
  grid-template-columns: 1fr auto; align-items:center; padding:30px; border-radius: var(--radius-xl);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.36s ease;
}
.refined-cta-panel {
  gap: 26px;
  align-items: stretch;
}
.cta-copy {
  display: grid;
  gap: 16px;
}
.cta-copy p:not(.section-kicker) {
  max-width: 58ch;
}
.cta-actions {
  display: grid;
  align-content: center;
  gap: 14px;
  justify-items: start;
  min-width: min(100%, 290px);
}
.cta-points,
.contact-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-points span,
.contact-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cta-note,
.form-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.92rem;
  line-height: 1.65;
}
.contact-grid { grid-template-columns: .92fr 1.08fr; }
.contact-copy, .contact-form { padding: 30px; }
.refined-contact-grid { align-items: start; }
.contact-points { display:grid; gap:18px; margin-top:24px; }
.contact-points strong { margin-bottom:6px; }
.contact-trust-strip {
  margin-top: 24px;
}
.contact-form { display:grid; gap:16px; }
.refined-contact-form {
  gap: 18px;
}
.form-intro {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.form-intro strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.form-intro span {
  color: var(--muted-2);
  font-size: 0.92rem;
  line-height: 1.6;
}
.field-row { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:16px; }
.contact-form label { display:grid; gap:8px; }
.contact-form span { color: var(--muted); font-size: .92rem; font-weight:600; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width:100%; border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: var(--text);
  border-radius: 16px; padding: 16px 16px; outline:none; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease, transform .25s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color:#8596ab; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(125,211,252,.5);
  box-shadow: 0 0 0 4px rgba(56,189,248,.08), 0 16px 34px rgba(56,189,248,.08);
  background: rgba(255,255,255,.06);
}
.form-btn { width:100%; margin-top:8px; }
.site-footer { padding: 74px 0 32px; }
.footer-inner {
  grid-template-columns: auto 1fr auto; align-items:center; padding-top:24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display:inline-flex; align-items:center; gap:14px; }
.footer-links { display:inline-flex; justify-content:center; gap:24px; flex-wrap: wrap; }

.refined-footer-inner {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: stretch;
}
.footer-brand-block {
  align-self: start;
  padding-top: 8px;
}
.footer-kicker {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-lead {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.65;
}
.footer-nav-block {
  display: grid;
  justify-items: end;
  align-content: space-between;
  gap: 18px;
  text-align: right;
}
.footer-links {
  justify-content: flex-end;
}
.footer-copy {
  margin: 0;
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up.is-visible { opacity:1; transform: translateY(0); }

@keyframes ambientFloatOne {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.14; }
  to { transform: translate3d(8vw, 4vh, 0) scale(1.08); opacity: 0.22; }
}
@keyframes ambientFloatTwo {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.12; }
  to { transform: translate3d(-6vw, -5vh, 0) scale(1.06); opacity: 0.2; }
}
@keyframes heroFloat {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to { transform: scale(1.11) translate3d(-1.2%, -1.2%, 0); }
}
@keyframes scrollPulse {
  0%,100% { opacity:.45; transform: scaleY(.82); transform-origin: top; }
  50% { opacity:1; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 1180px) {
  .gallery-head,
  .packages-intro,
  .services-grid,
  .packages-grid,
  .testimonials-grid,
  .credibility-strip,
  .before-after-grid,
  .contact-grid,
  .process-grid,
  .process-feature-large,
  .footer-inner,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .process-feature-large .process-image-wrap,
  .process-feature:not(.process-feature-large) .process-image-wrap {
    min-height: 280px;
  }

  .gallery-grid.immersive-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .gallery-card-hero,
  .gallery-card-wide,
  .gallery-grid .gallery-card:not(.gallery-card-hero):not(.gallery-card-wide) {
    grid-column: span 1;
    min-height: 320px;
  }

  .gallery-lead {
    justify-self: start;
    max-width: 100%;
  }

  .package-card.featured { transform: none; }
}

@media (max-width: 1024px) {
  .site-nav {
    position: fixed;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(6, 11, 20, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display:flex; }
  .site-nav a { padding: 14px 12px; border-radius: 12px; }
  .site-nav a:hover { background: rgba(255,255,255,.05); }
  .menu-toggle { display:inline-flex; }
  .trust-grid { grid-template-columns: 1fr; }
}


@media (max-width: 900px) {
  .packages-note {
    justify-self: stretch;
  }

  .vehicle-toggle {
    width: 100%;
    justify-content: stretch;
  }

  .vehicle-toggle-btn {
    flex: 1 1 0;
  }

  .footer-nav-block {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { padding: 12px 0; }
  .site-header.scrolled .header-inner { padding: 10px 0; }
  .brand-logo, .footer-logo { width: 44px; height:44px; }
  .site-header.scrolled .brand-logo { width: 40px; height: 40px; }
  .brand-tag { display:none; }
  .hero-content { padding: 112px 0 72px; }
  .hero-card,
  .trust-item,
  .service-card,
  .package-card,
  .process-copy,
  .contact-copy,
  .contact-form,
  .cta-panel,
  .testimonial-card,
  .packages-note { padding: 22px; }

  .hero-card {
    max-width: 100%;
    background: linear-gradient(180deg, rgba(8, 14, 27, 0.5) 0%, rgba(8, 14, 27, 0.34) 100%);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  }
  .hero-card-expandable {
    max-width: min(100%, 390px);
    min-height: 206px;
  }
  .hero-card-expandable.is-expanded,
  .hero-card-expandable:hover,
  .hero-card-expandable:focus-visible,
  .hero-card-expandable:focus-within {
    max-width: 100%;
  }
  .hero-expand-hint-hover { display: none; }
  .hero-expand-hint-touch { display: inline; }
  .hero-card h1 { font-size: clamp(2.05rem, 9.8vw, 3.2rem); line-height: 1.02; }
  .hero-copy { font-size: .98rem; line-height: 1.62; }
  .hero-actions, .field-row { flex-direction: column; grid-template-columns: 1fr; }
  .packages-intro {
    gap: 18px;
  }
  .vehicle-toggle {
    padding: 6px;
    gap: 6px;
  }
  .vehicle-toggle-btn {
    min-height: 48px;
    padding-inline: 12px;
  }
  .package-card {
    gap: 16px;
  }
  .package-card ul {
    gap: 10px;
  }
  .compare-shell {
    padding: 18px;
    border-radius: 22px;
  }
  .compare-topbar,
  .compare-footer {
    gap: 10px;
  }
  .compare-topbar {
    align-items: flex-start;
  }
  .compare-footer {
    justify-content: space-between;
  }
  .contact-points {
    gap: 16px;
  }
  .contact-form {
    gap: 16px;
  }
  .btn, .package-btn { width: 100%; }
  .cta-actions { justify-items: stretch; min-width: 0; }
  .cta-points span, .contact-trust-strip span { width: 100%; justify-content: center; }
  .hero-proof { gap: 10px; }
  .hero-proof li { width: 100%; text-align: center; }
  .scroll-indicator { bottom: 18px; }
  .section { padding-top: 70px; }
  .section-intro { margin-bottom: 28px; }
  .section-intro h2, .contact-copy h2, .cta-panel h2, .gallery-head h2 { font-size: clamp(1.8rem, 8vw, 2.7rem); }
  .gallery-card-hero, .gallery-card-wide, .gallery-grid .gallery-card:not(.gallery-card-hero):not(.gallery-card-wide) { min-height: 250px; }
  .gallery-overlay { left: 16px; right: 16px; bottom: 14px; }
  .gallery-overlay strong { font-size: 1rem; }
  .testimonial-topline { align-items: flex-start; flex-direction: column; }
  .testimonial-rating { letter-spacing: .12em; }
  .immersive-card:hover { transform: none; }
}

@media (max-width: 560px) {
  .hero-card,
  .service-card,
  .package-card,
  .trust-item,
  .testimonial-card,
  .contact-copy,
  .contact-form,
  .packages-note,
  .cta-panel { border-radius: 18px; }

  .hero-card {
    padding: 20px;
    background: linear-gradient(180deg, rgba(8, 14, 27, 0.56) 0%, rgba(8, 14, 27, 0.4) 100%);
  }
  .credibility-chip,
  .polished-testimonial-card {
    padding: 18px;
  }
  .hero-expand-hint {
    margin-top: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
  }
  .service-label {
    margin-bottom: 16px;
    font-size: 0.7rem;
  }
  .service-note {
    font-size: 0.88rem;
  }
  .hero-content { padding-top: 100px; }
  .refined-footer-inner {
    gap: 18px;
  }
  .section { padding-top: 60px; }
  .service-card ul, .package-card ul { gap: 8px; margin-top: 16px; }
  .package-price { font-size: 2.4rem; }
  .compare-topbar,
  .compare-footer {
    grid-template-columns: 1fr;
  }
  .compare-footer {
    justify-items: start;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 14px 14px; border-radius: 14px; }
}


/* =========================
   HALO FOAM LOADER
========================= */
.halo-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(56, 189, 248, 0.08), transparent 34%),
              radial-gradient(circle at 50% 62%, rgba(255, 121, 190, 0.08), transparent 24%),
              rgba(5, 7, 13, 0.96);
  backdrop-filter: blur(8px);
  z-index: 9999;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.halo-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.halo-loader-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.halo-loader-logo {
  width: min(180px, 42vw);
  height: auto;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.35));
  animation: haloLoaderSplash 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.halo-loader-splash {
  position: absolute;
  width: min(260px, 56vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.24) 0%, rgba(255, 121, 190, 0.18) 38%, rgba(56, 189, 248, 0.02) 72%, transparent 100%);
  filter: blur(26px);
  animation: haloLoaderPulse 1.35s ease-in-out infinite;
}

@keyframes haloLoaderSplash {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  55% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes haloLoaderPulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}


/* Pass 3 interactive polish */

.foam-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.foam-particle {
  position: absolute;
  bottom: -24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 35%, rgba(255,121,190,0.45) 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.16), 0 10px 30px rgba(255,121,190,0.16);
  opacity: 0;
  animation-name: foamRise;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes foamRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  12% {
    opacity: 0.45;
  }
  55% {
    opacity: 0.2;
  }
  100% {
    transform: translate3d(var(--foam-drift), -95vh, 0) scale(1.15);
    opacity: 0;
  }
}

.vehicle-toggle {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.vehicle-toggle-btn {
  min-width: 92px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.vehicle-toggle-btn:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.vehicle-toggle-btn.is-active {
  color: #04111b;
  background: linear-gradient(135deg, var(--accent) 0%, #6fdcff 100%);
  border-color: rgba(125, 211, 252, 0.38);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.22);
}

.package-price .price-value {
  display: inline-block;
  min-width: 96px;
}

.compare-card {
  padding: 16px;
}

.compare-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    radial-gradient(circle at top, rgba(125, 211, 252, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.96), rgba(6, 11, 20, 0.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.compare-image,
.compare-image img,
.compare-dirt-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare-image img {
  object-fit: cover;
}

.compare-image-base {
  filter: saturate(0.62) brightness(0.72) contrast(0.92);
}

.compare-image-overlay {
  overflow: hidden;
  border-right: 2px solid rgba(255,255,255,0.72);
  filter: none;
}

.compare-image-overlay img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-position: center;
}

.compare-dirt-layer {
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.42;
  background:
    radial-gradient(circle at 18% 24%, rgba(87, 62, 45, 0.52), transparent 18%),
    radial-gradient(circle at 38% 52%, rgba(89, 67, 52, 0.38), transparent 21%),
    radial-gradient(circle at 72% 30%, rgba(83, 60, 47, 0.22), transparent 16%),
    linear-gradient(180deg, rgba(70, 54, 44, 0.08), rgba(45, 35, 29, 0.2));
  transition: opacity .2s ease;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.compare-handle {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(6, 11, 20, 0.78);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.compare-handle::before,
.compare-handle::after {
  content: '';
  position: absolute;
  width: 2px;
  background: rgba(255,255,255,0.78);
  left: 50%;
  transform: translateX(-50%);
}

.compare-handle::before {
  height: 100vh;
  bottom: calc(100% - 10px);
}

.compare-handle::after {
  height: 100vh;
  top: calc(100% - 10px);
}

.compare-handle span {
  position: relative;
  width: 18px;
  height: 18px;
}

.compare-handle span::before,
.compare-handle span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.compare-handle span::before {
  left: -2px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-handle span::after {
  right: -2px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-badge {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(6, 11, 20, 0.66);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.compare-badge-left {
  left: 18px;
}

.compare-badge-right {
  right: 18px;
}

.immersive-card {
  --cursor-x: 50%;
  --cursor-y: 50%;
}

.immersive-card::before {
  background: radial-gradient(260px circle at var(--cursor-x) var(--cursor-y), rgba(125, 211, 252, 0.32), rgba(255, 121, 190, 0.12) 34%, transparent 72%);
  mix-blend-mode: screen;
}

@media (hover: hover) and (pointer: fine) {
  .immersive-card:hover img {
    transform: scale(1.08);
  }
}


@media (max-width: 900px) {
  .packages-note {
    justify-self: stretch;
  }

  .vehicle-toggle {
    width: 100%;
    justify-content: stretch;
  }

  .vehicle-toggle-btn {
    flex: 1 1 0;
  }

  .footer-nav-block {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .vehicle-toggle {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .vehicle-toggle-btn {
    min-width: 0;
    padding: 10px 12px;
  }

  .before-after-points {
    gap: 8px;
  }

  .before-after-points span,
  .compare-proof-chip {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .compare-card {
    padding: 10px;
  }

  .compare-topbar,
  .compare-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare-slider {
    min-height: 380px;
  }

  .compare-handle {
    width: 52px;
    height: 52px;
  }

  .compare-badge {
    top: 14px;
    padding: 8px 11px;
  }

  .compare-drag-cue {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .hero-card h1 {
    font-size: clamp(1.95rem, 10.5vw, 2.7rem);
  }

  .vehicle-toggle {
    border-radius: 18px;
  }

  .vehicle-toggle-btn {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .packages-note,

  .cta-copy p:not(.section-kicker),
  .contact-copy p,
  .footer-lead {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .footer-links {
    gap: 14px 18px;
  }
}


@media (max-width: 980px) {
  .contact-card-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-card-badges {
    justify-content: flex-start;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .global-ambient-layer::before,
  .global-ambient-layer::after {
    filter: blur(72px);
    opacity: 0.12;
  }
  .ambient-accent::before,
  .ambient-accent::after {
    opacity: 0.24;
    filter: blur(48px);
  }
  .contact-card-shell {
    padding: 24px;
    border-radius: 22px;
    gap: 22px;
  }
  .contact-card-head {
    gap: 18px;
    padding-bottom: 18px;
  }
}



.booking-bridge-panel {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 24px;
  padding: 30px 32px;
  background: linear-gradient(180deg, rgba(9, 17, 31, 0.72), rgba(9, 17, 31, 0.54));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 56px rgba(4, 10, 22, 0.28);
}
.booking-bridge-copy {
  align-content: center;
}
.booking-bridge-copy h2 {
  max-width: 13ch;
}
.booking-bridge-copy p:not(.section-kicker) {
  max-width: 60ch;
}
.booking-bridge-points span {
  background: rgba(255,255,255,0.035);
}
.booking-bridge-actions {
  align-content: center;
  gap: 16px;
  min-width: 0;
}
.booking-mini-card {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}
.booking-mini-card strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.booking-mini-card p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.65;
  font-size: 0.93rem;
}
@media (max-width: 980px) {
  .booking-bridge-panel {
    grid-template-columns: 1fr;
  }
  .booking-bridge-copy h2,
  .booking-bridge-copy p:not(.section-kicker) {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .booking-bridge-panel {
    padding: 24px;
    gap: 18px;
    border-radius: 22px;
  }
  .booking-mini-card {
    padding: 16px;
    border-radius: 18px;
  }
  .booking-bridge-actions .btn {
    width: 100%;
  }
}


/* Final presentation polish */
.global-ambient-layer::before,
.global-ambient-layer::after { opacity: 0.14; }
.ambient-accent::before,
.ambient-accent::after { opacity: 0.22; }
.hero-card-expandable.is-expanded,
.hero-card-expandable:hover,
.hero-card-expandable:focus-visible,
.hero-card-expandable:focus-within { box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(125, 211, 252, 0.06); }
.booking-bridge-panel { box-shadow: 0 20px 42px rgba(4, 10, 22, 0.22); }
@media (max-width: 768px) {
  .hero-card-expandable.is-expanded .hero-card-details,
  .hero-card-expandable:hover .hero-card-details,
  .hero-card-expandable:focus-visible .hero-card-details,
  .hero-card-expandable:focus-within .hero-card-details {
    margin-top: 18px;
  }
  .hero-proof li { padding: 9px 12px; }
}





/* Final contact layout */
.section-contact-direct {
  padding-top: 56px;
}

.contact-frame {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.contact-header,
.contact-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.contact-header-copy {
  max-width: 36rem;
}

.contact-header-copy h2 {
  margin: 0 0 12px;
  max-width: 11ch;
  font-size: clamp(2.25rem, 4vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.contact-header-copy p:not(.section-kicker) {
  margin: 0;
  max-width: 31rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.56;
}

.contact-header-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: start;
  gap: 10px;
  padding-top: 12px;
  max-width: 24rem;
}

.contact-header-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
  color: var(--text);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-support {
  padding: 2px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  max-width: 22rem;
}

.contact-support-label {
  margin: 0 0 12px;
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-support h3 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-support-lead {
  margin: 14px 0 0;
  max-width: 26ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.contact-support-points {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.contact-support-points div {
  display: grid;
  gap: 6px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.1);
}

.contact-support-points strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.contact-support-points span {
  color: var(--muted-2);
  line-height: 1.56;
}

.contact-form-card {
  width: 100%;
  max-width: 620px;
  justify-self: end;
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(9, 16, 30, 0.94) 0%, rgba(7, 13, 24, 0.9) 100%);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

.contact-form-intro {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.contact-form-intro strong {
  color: #f8fbff;
  font-size: 1rem;
}

.contact-form-intro span {
  max-width: 36ch;
  color: var(--muted);
}

.contact-form-card label {
  display: grid;
  gap: 6px;
}

.contact-form-card label > span {
  color: rgba(240,246,255,.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: var(--text);
  border-radius: 15px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.contact-form-card textarea {
  min-height: 122px;
  resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #8596ab;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(125,211,252,.42);
  box-shadow: 0 0 0 3px rgba(56,189,248,.08);
  background: rgba(255,255,255,.05);
}

.form-cta-zone {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.form-cta-meta {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-btn {
  width: 100%;
  margin-top: 0;
}

.form-note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted-2);
}

@media (max-width: 980px) {
  .section-contact-direct {
    padding-top: 52px;
  }

  .contact-frame {
    gap: 28px;
  }

  .contact-header,
  .contact-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-header-copy,
  .contact-header-copy p:not(.section-kicker),
  .contact-support,
  .contact-support-lead,
  .contact-support h3,
  .contact-form-card {
    max-width: none;
  }

  .contact-header-pills {
    padding-top: 0;
    max-width: none;
  }

  .contact-form-card {
    justify-self: stretch;
  }
}

@media (max-width: 768px) {
  .section-contact-direct {
    padding-top: 46px;
  }

  .contact-frame {
    gap: 24px;
  }

  .contact-header-copy h2 {
    max-width: 8ch;
  }

  .contact-header-pills {
    gap: 8px;
  }

  .contact-header-pills span {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 0.66rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 20px;
    border-radius: 20px;
  }
}

/* =========================
   JC WEBSITES DEMO RETURN
========================= */
.jc-demo-return {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.82);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.jc-demo-return:hover,
.jc-demo-return:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(10, 10, 12, 0.16);
  color: #111111;
  outline: none;
}

@media (max-width: 640px) {
  .jc-demo-return {
    top: 12px;
    left: 12px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }
}

