/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #FF0080;
  --pink-light:  #ff3399;
  --pink-dark:   #cc0066;
  --pink-glow:   rgba(255,0,128,0.3);
  --pink-soft:   rgba(255,0,128,0.1);

  --white:       #ffffff;

  /* Dark blue palette */
  --bg:          #1d4e89;
  --bg-2:        #174278;
  --bg-3:        #133870;
  --bg-card:     #1e5296;
  --border:      rgba(255,255,255,0.12);
  --border-pink: rgba(255,0,128,0.3);
  --text-muted:  rgba(255,255,255,0.72);
  --text-dim:    rgba(255,255,255,0.5);

  /* Keep these aliases so existing CSS rules resolve */
  --gray-50:     #174278;
  --gray-100:    #133870;
  --gray-200:    rgba(255,255,255,0.12);
  --gray-400:    rgba(255,255,255,0.5);
  --gray-600:    rgba(255,255,255,0.65);
  --dark:        #1d4e89;
  --dark-text:   #ffffff;

  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       100px;
  --ease-out:    cubic-bezier(0.22,1,0.36,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.45);
  --shadow-lg:   0 16px 56px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
.mobile-br { display: none; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ── ACCENT TEXT ── */
.accent-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PILL ── */
.pill {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 20px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.2s var(--ease-spring); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px var(--pink-glow);
}
.btn--primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--pink-glow);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn--white-sm {
  background: var(--white);
  color: var(--dark-text);
  font-size: 0.8rem;
  padding: 8px 18px;
}
.btn--white-sm:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }

.btn--white {
  background: #fff;
  color: #0d1b2a;
}
.btn--white:hover { background: #f0f0f0; transform: translateY(-2px); }

.btn--full { width: 100%; justify-content: center; }

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark-text);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   LIGHT SECTION OVERRIDES
   Applied via .light class on dark-default sections
═══════════════════════════════════════ */
.light {
  background: #ffffff !important;
}

/* Section header text */
.light .section-title  { color: #060d1f; }
.light .section-sub    { color: #556878; }

/* Service cards */
.light .service-card {
  background: #f3f6fb;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.light .service-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.10), 0 0 0 1px rgba(255,0,128,0.15);
}
.light .service-card h3  { color: #060d1f; }
.light .service-card p   { color: #556878; }

/* Journey / step cards (process section is already white by default) */
.light .jstep__ping { border-color: #ffffff; }

/* Testimonials */
.light blockquote {
  background: #f3f6fb;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.light blockquote p               { color: #060d1f; }
.light blockquote footer strong   { color: #060d1f; }
.light .testi__dot                { background: rgba(0,0,0,0.15); }
.light .testi__dot.active         { background: var(--pink); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(29,78,137,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}
@keyframes logoSpin {
  0%   { border-radius: 8px; }
  25%  { border-radius: 50%; }
  50%  { border-radius: 8px; transform: rotate(180deg); }
  75%  { border-radius: 50%; }
  100% { border-radius: 8px; transform: rotate(360deg); }
}
.nav__links {
  display: none;
  align-items: center;
  gap: 48px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  color: #fff;
  transition: color 0.2s;
  padding-bottom: 3px;
}
.nav__links a.nav__cta,
.nav__links a.mega__cta-btn { padding-bottom: 0; }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

/* CTA pill — matches .btn--primary */
.nav__cta {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 20px 40px !important;
  border-radius: 8px;
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px var(--pink-glow);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease, background 0.2s ease !important;
  white-space: nowrap;
  position: relative;
  z-index: 1001;
}
.nav__cta:hover {
  background: var(--pink-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--pink-glow);
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  transition: color 0.2s, padding-left 0.2s;
}
.nav__mobile a:hover { color: var(--pink); padding-left: 8px; }

/* ── SERVICES DROPDOWN ── */
.nav__dropdown-wrap {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  transition: color 0.2s;
}
.nav__dropdown-trigger:hover { color: #fff; }
.nav__chevron {
  transition: transform 0.25s var(--ease-out);
  opacity: 0.7;
}
.nav__dropdown-wrap.open .nav__chevron { transform: rotate(180deg); }

/* ── MEGA MENU ── */
.nav__mega {
  position: fixed;
  top: var(--nav-h);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 1060px;
  max-width: 96vw;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22), 0 2px 0 rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 2fr 1px 1fr 1px 260px;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s var(--ease-out);
  z-index: 999;
}
.nav__dropdown-wrap.open .nav__mega,
.nav__dropdown-wrap:hover .nav__mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega__divider {
  background: #f1f5f9;
}

/* Col 1: Services */
.mega__col--services {
  padding: 24px 16px 20px;
}
/* Col 2: Links */
.mega__col--links {
  padding: 24px 16px 20px;
}
/* Col 3: CTA */
.mega__col--cta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mega__col-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 12px 10px;
}

/* Service rows (col 1) */
.mega__service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s;
  color: #0d1b2a;
}
.mega__service:hover {
  background: #f8fafc;
}
.mega__service-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 9px;
  flex-shrink: 0;
}
.mega__service-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega__service-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.2;
}
.mega__service-text strong::after {
  content: ' ›';
  font-weight: 400;
  opacity: 0.5;
}
.mega__service-text span {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 400;
  line-height: 1.3;
}

/* Company links (col 2) */
.mega__link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mega__link:hover {
  background: #f8fafc;
  color: var(--pink) !important;
}
.mega__link::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
  transition: background 0.15s;
}
.mega__link:hover::before {
  background: var(--pink);
}

/* CTA column (col 3) */
.mega__cta-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
  border-top-right-radius: 20px;
}
.mega__cta-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
}
.mega__cta-copy {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.4;
  margin: 0;
}
.mega__cta-btn {
  display: inline-block;
  background: var(--pink);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px !important;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 18px rgba(255,0,128,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
}
.mega__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,0,128,0.5);
}

/* ── MOBILE SERVICES ACCORDION ── */
.nav__mobile-group {
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile-services-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 12px 0;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.nav__mobile-services-toggle:hover { color: var(--pink); }
.nav__mobile-services-toggle svg {
  transition: transform 0.25s;
  margin-left: auto;
}
.nav__mobile-services-toggle.open svg { transform: rotate(180deg); }
.nav__mobile-services {
  display: none;
  flex-direction: column;
  padding: 0 0 8px 12px;
  gap: 2px;
}
.nav__mobile-services.open { display: flex; }
.nav__mobile-services a {
  border-bottom: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  color: var(--gray-600);
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 0 80px;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,0,128,0.22) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,0,128,0.16) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,80,255,0.12) 0%, transparent 70%);
  top: 50%; right: 15%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-20px) scale(1.05); }
  66%       { transform: translate(-20px,20px) scale(0.95); }
}

/* Marquee strip */
.hero__marquee-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 13px 0;
  position: relative;
  z-index: 1;
  margin-top: var(--nav-h);
}
.hero__marquee {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: bv2Marquee 24s linear infinite;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__mdot { color: var(--pink); }

/* Main body */
.hero__body {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 0;
}
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.hero__split--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.hero__split--centered .hero__text { max-width: 720px; }
.hero__split--centered .hero__actions { justify-content: center; }
.hero__split--centered .cl-hero__desc { margin-left: auto; margin-right: auto; }

/* Text column */
.hero__text { max-width: 640px; }

/* Image column */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero__coat-img {
  width: 100%;
  max-width: 416px;
  margin-left: auto;
  margin-right: -40px;
  mix-blend-mode: screen;
  animation: hvFloat 6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.hero__live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 10px rgba(0,230,118,0.7);
  animation: bv1Pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__heading {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: #fff;
}
.hero__heading .line { display: block; white-space: nowrap; }
.hero__line--brand {
  font-size: 0.5em;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.hero__line--dim { color: rgba(255,255,255,0.28); }
.hero__line--flip { white-space: nowrap; display: inline; }
.hero__flip-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  max-width: 100%;
  background: #fff;
  border-radius: 999px;
  padding: 4px 18px 4px 14px;
  margin-left: 4px;
  line-height: 1;
}
.hero__flip {
  display: inline-block;
  color: var(--pink);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.hero__flip.exit {
  transform: translateY(-110%);
  opacity: 0;
}

.hero__sub {
  font-size: clamp(1rem, 1.9vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}
.hero__proof-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 8px rgba(0,230,118,0.6);
  flex-shrink: 0;
}

/* ── HERO VISUAL (right side) ── */
.hero__visual {
  position: relative;
  height: 420px;
}

/* shared card base */
.hv {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
}

/* Main order card */
.hv--main {
  top: 40px; left: 0; right: 0;
  padding: 24px 28px;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  animation: hvFloat 5s ease-in-out infinite;
}
.hv__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hv__check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e676, #00c853);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,230,118,0.35);
}
.hv__info { flex: 1; }
.hv__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.hv__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}
.hv__time {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.hv__bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 16px;
}
.hv__bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #00e676, #00c853);
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(0,230,118,0.4);
}
.hv__footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hv__tag {
  padding: 4px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.hv__tag--green {
  background: rgba(0,230,118,0.12);
  border-color: rgba(0,230,118,0.25);
  color: #00e676;
}

/* Floating review */
.hv--review {
  bottom: 20px; left: -20px;
  padding: 18px 22px;
  max-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: hvFloat 6s ease-in-out infinite 1.2s;
}
.hv__stars {
  color: #FFD600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.hv__quote {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin-bottom: 8px;
}
.hv__author {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Pickup alert */
.hv--alert {
  top: 0; right: -10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: hvFloat 4.5s ease-in-out infinite 0.6s;
  white-space: nowrap;
}
.hv__alert-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255,0,128,0.4);
  animation: hvPulseRing 1.8s ease-out infinite;
  flex-shrink: 0;
}
.hv__alert-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.hv__alert-text span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
}
.hv__alert-emoji { font-size: 1.4rem; }

/* Rating badge */
.hv--badge {
  bottom: 24px; right: -10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: hvFloat 5.5s ease-in-out infinite 2s;
}
.hv__badge-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hv__badge-stars {
  color: #FFD600;
  font-size: 0.78rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.hv__badge-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Hero visual keyframes */
@keyframes hvFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
@keyframes hvPulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(255,0,128,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(255,0,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,128,0); }
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero__stats .stat { align-items: flex-start; flex: 1; min-width: 120px; }
.hero__stats .stat__divider { margin: 0 24px; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--dark-text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__plus { font-size: 1.4rem; font-weight: 900; color: var(--pink); vertical-align: super; }
.stat__label { font-size: 0.75rem; color: var(--gray-400); margin-top: 4px; letter-spacing: 0.05em; }
.stat__divider { width: 1px; height: 40px; background: var(--gray-200); }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gray-400);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* Hero responsive */
@media (max-width: 960px) {
  .hero__split { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__heading { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero__body { padding-top: 48px; }
  .hero__stats .stat { min-width: 100px; }
}

/* ── BUBBLES ── */
.bubble {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: bubbleRise linear infinite;
  pointer-events: none;
}
.bubble--1  { width: 56px;  height: 56px;  left: 8%;   bottom: -80px;  animation-duration: 10s;  animation-delay: 0s;   background-image: url('bubble-a.svg'); }
.bubble--2  { width: 32px;  height: 32px;  left: 18%;  bottom: -50px;  animation-duration: 14s;  animation-delay: 1.5s; background-image: url('bubble-b.svg'); }
.bubble--3  { width: 72px;  height: 72px;  left: 30%;  bottom: -100px; animation-duration: 11s;  animation-delay: 0.8s; background-image: url('bubble-c.svg'); }
.bubble--4  { width: 24px;  height: 24px;  left: 45%;  bottom: -40px;  animation-duration: 9s;   animation-delay: 3.2s; background-image: url('bubble-a.svg'); }
.bubble--5  { width: 48px;  height: 48px;  left: 55%;  bottom: -70px;  animation-duration: 13s;  animation-delay: 2s;   background-image: url('bubble-b.svg'); }
.bubble--6  { width: 88px;  height: 88px;  left: 68%;  bottom: -120px; animation-duration: 15s;  animation-delay: 1s;   background-image: url('bubble-c.svg'); }
.bubble--7  { width: 22px;  height: 22px;  left: 78%;  bottom: -40px;  animation-duration: 8s;   animation-delay: 4s;   background-image: url('bubble-a.svg'); }
.bubble--8  { width: 60px;  height: 60px;  left: 88%;  bottom: -80px;  animation-duration: 12s;  animation-delay: 0.4s; background-image: url('bubble-b.svg'); }
.bubble--9  { width: 38px;  height: 38px;  left: 3%;   bottom: -60px;  animation-duration: 11s;  animation-delay: 5s;   background-image: url('bubble-c.svg'); }
.bubble--10 { width: 18px;  height: 18px;  left: 38%;  bottom: -30px;  animation-duration: 7s;   animation-delay: 2.5s; background-image: url('bubble-a.svg'); }
.bubble--11 { width: 46px;  height: 46px;  left: 62%;  bottom: -60px;  animation-duration: 16s;  animation-delay: 6s;   background-image: url('bubble-b.svg'); }
.bubble--12 { width: 28px;  height: 28px;  left: 92%;  bottom: -45px;  animation-duration: 9s;   animation-delay: 3.8s; background-image: url('bubble-c.svg'); }

@keyframes bubbleRise {
  0%   { transform: translateY(0)      translateX(0)     rotate(0deg);   opacity: 0; }
  8%   { opacity: 1; }
  30%  { transform: translateY(-28vh)  translateX(14px)  rotate(6deg); }
  60%  { transform: translateY(-60vh)  translateX(-10px) rotate(-4deg); }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-108vh) translateX(8px)   rotate(8deg);   opacity: 0; }
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee {
  overflow: hidden;
  background: var(--pink);
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}
.marquee__track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
}
.marquee__track .dot { color: rgba(255,255,255,0.72); font-size: 0.6rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--bg-2);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(4,1fr); } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-pink);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,0,128,0.12);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  color: var(--pink);
  margin-bottom: 24px;
  transition: transform 0.3s var(--ease-spring);
}
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-5deg); }
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--dark-text);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
  transition: gap 0.2s ease;
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════ */
.industries {
  padding: 120px 0;
  background: var(--bg-2);
}
.industries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .industries__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .industries__grid { grid-template-columns: repeat(3,1fr); } }

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.industry-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease-out);
}
.industry-card:hover .industry-card__bg { transform: scale(1.05); }

.industry-card__bg--hotel      { background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 60%, #2a5f8f 100%); }
.industry-card__bg--restaurant { background: linear-gradient(135deg, #1a0800 0%, #4a1500 60%, #8b2e00 100%); }
.industry-card__bg--gym        { background: linear-gradient(135deg, #0a0a1a 0%, #1a1a4a 60%, #2a2a8a 100%); }
.industry-card__bg--spa        { background: linear-gradient(135deg, #1a0a1a 0%, #3d1a3d 60%, var(--pink-dark) 100%); }
.industry-card__bg--medical    { background: linear-gradient(135deg, #001a0a 0%, #003d1a 60%, #005c28 100%); }
.industry-card__bg--event      { background: linear-gradient(135deg, #1a1000 0%, #3d2800 60%, #7a5200 100%); }

.industry-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 24px,
    rgba(255,255,255,0.025) 24px, rgba(255,255,255,0.025) 25px
  );
}

.industry-card__body {
  position: relative;
  z-index: 1;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 70%);
}
.industry-icon {
  width: 40px; height: 40px;
  color: var(--pink-light);
  margin-bottom: 12px;
  transition: transform 0.3s var(--ease-spring);
}
.industry-card:hover .industry-icon { transform: scale(1.15) rotate(-5deg); }
.industry-icon svg { width: 100%; height: 100%; }
.industry-card__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.industry-card__body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   PROCESS / STEP CARDS
═══════════════════════════════════════ */
.process {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

/* ── Step cards row ── */
.jsteps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 72px;
}

/* ── Chevron separators ── */
.jstep__chev {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 118px;
  flex-shrink: 0;
  width: 28px;
  color: var(--pink);
  opacity: 0.55;
}
.jstep__chev svg { animation: chevPulse 1.7s ease-in-out infinite; }
@keyframes chevPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50%       { opacity: 1;   transform: translateX(5px); }
}

/* ── Individual step card ── */
.jstep {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  padding: 36px 28px 40px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
  overflow: visible;
}
/* Pink top accent bar */
.jstep::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  border-radius: 24px 24px 0 0;
}
.jstep:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.11), 0 0 0 1px rgba(255,0,128,0.12), 0 -2px 0 0 var(--pink);
}

/* Big watermark number */
.jstep__watermark {
  position: absolute;
  bottom: 12px; right: 16px;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,0,128,0.06);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease;
}
.jstep:hover .jstep__watermark { color: rgba(255,0,128,0.1); }

/* ── Dark icon box ── */
.jstep__icon-box {
  width: 80px; height: 80px;
  background: linear-gradient(140deg, #0d2d56 0%, #12356a 100%);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 8px 28px rgba(13,45,86,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
  overflow: visible;
}
.jstep:hover .jstep__icon-box {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 12px 36px rgba(255,0,128,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Step-specific icon-box animations */
.jstep[data-step="schedule"] .jstep__icon-box {
  animation: boxBreathe 3s ease-in-out infinite;
}
.jstep[data-step="pickup"] .jstep__icon-box {
  animation: boxBounce 1.4s ease-in-out infinite;
}
.jstep[data-step="deliver"] .jstep__icon-box {
  animation: boxPop 4.5s ease-in-out infinite;
}
@keyframes boxBreathe {
  0%, 100% { box-shadow: 0 8px 28px rgba(13,45,86,0.4), inset 0 1px 0 rgba(255,255,255,0.07); }
  50%       { box-shadow: 0 8px 36px rgba(255,0,128,0.28), inset 0 1px 0 rgba(255,255,255,0.07); }
}
@keyframes boxBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes boxPop {
  0%, 75%, 100% { transform: scale(1) rotate(0deg); }
  82%            { transform: scale(1.07) rotate(-5deg); }
  89%            { transform: scale(1.07) rotate(5deg); }
  96%            { transform: scale(1) rotate(0deg); }
}

/* ── Drum spin ── */
.drum-group {
  transform-box: fill-box;
  transform-origin: center;
  animation: drumSpin 3s linear infinite;
}
@keyframes drumSpin { to { transform: rotate(360deg); } }

/* ── Wheel spin ── */
.wheel-grp {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 0.85s linear infinite;
}
@keyframes wheelSpin { to { transform: rotate(360deg); } }

/* ── Notification ping (schedule) ── */
.jstep__ping {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--pink);
  border-radius: 50%;
  border: 3px solid #ffffff;
  z-index: 4;
  animation: pingPulse 1.6s ease-out infinite;
}
.jstep__ping::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  animation: pingRing 1.6s ease-out infinite;
}
@keyframes pingPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}
@keyframes pingRing {
  0%   { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0;   }
}

/* ── Soap bubbles (wash) ── */
.jstep__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
.jbubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,0,128,0.6);
  background: rgba(255,0,128,0.1);
  animation: jBubbleFloat var(--dur) ease-in infinite var(--delay);
}
.jb1 { width:  8px; height:  8px; left: 15%; bottom: 20%; --dur: 2.3s; --delay: 0s;    }
.jb2 { width: 12px; height: 12px; left: 55%; bottom:  5%; --dur: 2.8s; --delay: 0.5s;  }
.jb3 { width:  7px; height:  7px; left: 78%; bottom: 25%; --dur: 2s;   --delay: 1.1s;  }
.jb4 { width: 10px; height: 10px; left: 35%; bottom: 12%; --dur: 3s;   --delay: 0.3s;  }
.jb5 { width:  6px; height:  6px; left: 65%; bottom: 30%; --dur: 2.5s; --delay: 0.8s;  }
@keyframes jBubbleFloat {
  0%   { transform: translateY(0)     translateX(0)    scale(1);    opacity: 0.85; }
  50%  { transform: translateY(-44px) translateX(8px)  scale(0.8);  opacity: 0.5;  }
  100% { transform: translateY(-88px) translateX(-6px) scale(0.3);  opacity: 0;    }
}

/* ── Sparkles (deliver) ── */
.jstep__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
.jsparkle {
  position: absolute;
  width: 14px; height: 14px;
  animation: jSparkle 2.5s ease-in-out infinite var(--delay);
}
.jsparkle::before,
.jsparkle::after {
  content: '';
  position: absolute;
  background: var(--pink);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.jsparkle::before { width: 2px; height: 100%; }
.jsparkle::after  { width: 100%; height: 2px; }
.js1 { top: -8px;  right: -8px; --delay: 0s;   }
.js2 { bottom: -6px; left: -4px;  --delay: 0.9s; width: 11px; height: 11px; }
.js3 { top: 40%;  left: -10px;  --delay: 1.8s; width: 10px; height: 10px; }
@keyframes jSparkle {
  0%, 100% { transform: scale(0) rotate(0deg);  opacity: 0; }
  35%, 65%  { transform: scale(1) rotate(45deg); opacity: 1; }
}

/* ── Step tag ── */
.jstep__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

/* ── Card text ── */
.jstep h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #060d1f;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.jstep p {
  font-size: 0.87rem;
  color: #556878;
  line-height: 1.7;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .jsteps { flex-direction: column; gap: 8px; margin-top: 40px; }
  .jstep__chev {
    padding-top: 0; width: 100%; height: 28px;
    align-items: center; justify-content: center;
  }
  .jstep__chev svg { transform: rotate(90deg); animation: chevPulseDown 1.7s ease-in-out infinite; }
  @keyframes chevPulseDown {
    0%, 100% { opacity: 0.4; transform: rotate(90deg) translateX(0); }
    50%       { opacity: 1;   transform: rotate(90deg) translateX(5px); }
  }
}

/* ═══════════════════════════════════════
   WHY SPINBOX
═══════════════════════════════════════ */
.why {
  padding: 0 0 120px;
  background: var(--bg);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(4,1fr); } }

.why-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-pink);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,0,128,0.1);
}
.why-item__icon {
  width: 48px; height: 48px;
  color: var(--pink);
  margin: 0 auto 20px;
  transition: transform 0.3s var(--ease-spring);
}
.why-item:hover .why-item__icon { transform: scale(1.15) rotate(-8deg); }
.why-item__icon svg { width: 100%; height: 100%; }
.why-item h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark-text);
}
.why-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.testi__track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}
.testi__slide { min-width: 100%; }

blockquote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
blockquote::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--pink);
  opacity: 0.2;
  font-family: Georgia, serif;
}
blockquote p {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
}
blockquote footer { display: flex; flex-direction: column; gap: 2px; }
blockquote footer strong { font-size: 0.9rem; font-weight: 700; color: var(--white); }
blockquote footer span { font-size: 0.8rem; color: var(--pink); }

.testi__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testi__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s var(--ease-spring);
}
.testi__dot.active { background: var(--pink); width: 28px; }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
/* ── FAQ PAGE ── */
.faq-section {
  padding: 100px 0 120px;
  background: #f8fafc;
}
.faq-section__intro {
  text-align: center;
  margin-bottom: 56px;
}
.faq-section__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0d1b2a;
  margin: 12px 0 0;
  line-height: 1.15;
}
.section-label--dark {
  color: var(--pink);
  background: rgba(255,0,128,0.1);
  border-color: rgba(255,0,128,0.25);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: rgba(255,0,128,0.35);
  box-shadow: 0 4px 24px rgba(255,0,128,0.08);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  transition: color 0.2s;
}
.faq-item.open .faq-item__trigger {
  color: var(--pink);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  position: relative;
  transition: background 0.2s, transform 0.3s;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: #64748b;
  border-radius: 2px;
  transition: background 0.2s, transform 0.3s, opacity 0.3s;
}
.faq-item__icon::before {
  width: 12px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 2px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-item__icon {
  background: rgba(255,0,128,0.12);
  transform: rotate(45deg);
}
.faq-item.open .faq-item__icon::before,
.faq-item.open .faq-item__icon::after {
  background: var(--pink);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-item__body {
  max-height: 400px;
}
.faq-item__body p {
  padding: 0 28px 24px;
  font-size: 0.975rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}
.faq-item__body p a {
  color: var(--pink);
  font-weight: 600;
}

/* cta-band variant for faq — simpler inner layout */
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 10px;
}
.cta-band__text p {
  font-size: 1rem;
  opacity: 0.75;
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── CTA BAND ── */
.cta-band {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-band__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
}

.cta-band__center {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-band__center h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 40px;
  color: #fff;
  white-space: nowrap;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.05em 0.45em;
  white-space: nowrap;
  vertical-align: baseline;
}
#ctaFlip {
  font-style: italic;
  color: var(--pink);
  transition: opacity 0.35s ease;
  display: inline;
  white-space: nowrap;
}
#ctaFlip.exit { opacity: 0; }

.cta-band__center > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 28px;
}

.cta-checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-bottom: 40px;
}
.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--white);
  flex-shrink: 0;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.btn--ghost-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  color: var(--white);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1fr 2fr; } }

.footer .nav__logo { color: var(--white); margin-bottom: 16px; }
.footer .nav__logo-mark { background: var(--pink); }
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 16px;
}
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.footer__contact a:hover { color: var(--pink); }

.footer__nav { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__col a { font-size: 0.85rem; color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer__col a:hover { color: var(--pink); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__legal { display: flex; flex-direction: column; gap: 6px; }
.footer__legal a { color: rgba(255,255,255,0.5); transition: color 0.2s; text-decoration: underline; text-underline-offset: 2px; }
.footer__legal a:hover { color: var(--pink); }

/* ═══════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════ */
body.loading { overflow: hidden; }
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; align-items: center; gap: 12px; }
.loader__mark {
  width: 48px; height: 48px;
  background: var(--pink);
  border-radius: 12px;
  animation: loaderSpin 0.8s linear infinite;
}
.loader__text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--dark-text);
}
@keyframes loaderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════
   PROCESS TIMELINE (V2)
   id="process-timeline"
═══════════════════════════════════════ */
.process-tl {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.process-tl::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,0,128,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Track wrapper */
.ptl__track {
  position: relative;
  margin-top: 80px;
}

/* Vertical spine */
.ptl__spine {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
  /* Override reveal defaults — spine is always visible */
  opacity: 1 !important;
  transform: translateX(-50%) !important;
}
.ptl__spine::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to bottom, var(--pink), rgba(255,0,128,0.15));
  transition: height 2.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ptl__spine.visible::after { height: 100%; }

/* Step row */
.ptl__row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  position: relative;
  padding: 80px 0;
}
.ptl__row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Visual column (default: left) */
.ptl__visual {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 48px;
  position: relative;
}

/* Spine node column */
.ptl__node {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.ptl__node::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--pink), 0 0 20px rgba(255,0,128,0.5);
  display: block;
  flex-shrink: 0;
}
.ptl__node-ring {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,0,128,0.45);
  animation: ptlRingPulse 2.6s ease-out infinite;
}
@keyframes ptlRingPulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Content column (default: right) */
.ptl__body {
  grid-column: 3;
  grid-row: 1;
  padding-left: 48px;
}

/* Flipped row: visual right, content left */
.ptl__row--flip .ptl__visual {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 48px;
}
.ptl__row--flip .ptl__node {
  grid-column: 2;
  grid-row: 1;
}
.ptl__row--flip .ptl__body {
  grid-column: 1;
  grid-row: 1;
  padding-left: 0;
  padding-right: 48px;
}

/* Illustration card */
.ptl__card {
  width: 280px; height: 280px;
  border-radius: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.ptl__row:hover .ptl__card {
  transform: translateY(-10px) rotate(-1.5deg);
  box-shadow: 0 36px 80px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,0,128,0.25);
}
.ptl__row--flip:hover .ptl__card { transform: translateY(-10px) rotate(1.5deg); }

.ptl__card--s1 {
  background: linear-gradient(145deg, rgba(255,0,128,0.22) 0%, rgba(29,78,137,0.65) 100%);
  border: 1px solid rgba(255,0,128,0.22);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.ptl__card--s2 {
  background: linear-gradient(145deg, rgba(29,78,137,0.55) 0%, rgba(255,0,128,0.16) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.ptl__card--s3 {
  background: linear-gradient(145deg, rgba(255,0,128,0.16) 0%, rgba(29,78,137,0.55) 100%);
  border: 1px solid rgba(255,0,128,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.07);
}
.ptl__card--s4 {
  background: linear-gradient(145deg, rgba(29,78,137,0.55) 0%, rgba(255,0,128,0.22) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.09);
}

/* Ambient step number */
.ptl__ambient {
  position: absolute;
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: -1;
}

/* Floating notification badge on schedule card */
.ptl__notif {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--pink);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255,0,128,0.5);
  animation: ptlNotifFloat 3s ease-in-out infinite;
  white-space: nowrap;
  pointer-events: none;
}
@keyframes ptlNotifFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-7px) rotate(-2deg); }
}

/* Step badge */
.ptl__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255,0,128,0.1);
  border: 1px solid rgba(255,0,128,0.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* Content text */
.ptl__body h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ptl__body > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 400px;
}
.ptl__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ptl__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.ptl__list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,0,128,0.12);
  border: 1.5px solid rgba(255,0,128,0.35);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6l2.5 2.5L9.5 3' stroke='%23FF0080' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* SVG animations inside timeline cards */
.ptl__drum {
  transform-box: fill-box;
  transform-origin: center;
  animation: drumSpin 4s linear infinite;
}
.ptl__wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 1s linear infinite;
}
.ptl__bbl {
  animation: ptlBubble var(--d) ease-out infinite var(--dl);
}
@keyframes ptlBubble {
  0%   { transform: translateY(0)     scale(1);   opacity: 0.8; }
  100% { transform: translateY(-42px) scale(0.3); opacity: 0;   }
}
.ptl__ping-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: ptlSvgPing 2s ease-out infinite;
}
@keyframes ptlSvgPing {
  0%   { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0;   }
}
.ptl__sparkle {
  animation: ptlSparkleAnim var(--d) ease-in-out infinite var(--dl);
}
@keyframes ptlSparkleAnim {
  0%, 100% { transform: scale(0) rotate(0deg);  opacity: 0; }
  40%, 60%  { transform: scale(1) rotate(45deg); opacity: 1; }
}

/* Mobile */
@media (max-width: 900px) {
  .ptl__row {
    grid-template-columns: 1fr;
    padding: 48px 0;
    gap: 28px;
  }
  .ptl__visual,
  .ptl__row--flip .ptl__visual {
    grid-column: 1; grid-row: 1;
    justify-content: center;
    padding: 0;
  }
  .ptl__node,
  .ptl__row--flip .ptl__node { display: none; }
  .ptl__body,
  .ptl__row--flip .ptl__body {
    grid-column: 1; grid-row: 2;
    padding: 0;
  }
  .ptl__body > p { max-width: 100%; }
  .ptl__spine { display: none; }
  .ptl__card { width: 220px; height: 220px; }
}

/* ── PROCESS FEATURE GRID (V3) ── */
.process-fg {
  padding: 120px 0 140px;
  background: #070810;
  position: relative;
  overflow: hidden;
}

/* Background ambient glows */
.pfg__bg { position: absolute; inset: 0; pointer-events: none; }
.pfg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.pfg__glow--a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FF0080, transparent 70%);
  top: -100px; left: -150px;
  animation: orbFloat 9s ease-in-out infinite;
}
.pfg__glow--b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #1d4e89, transparent 70%);
  bottom: -80px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

/* Section header */
.pfg__head { margin-bottom: 56px; }
.pfg__head-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pfg__ver {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono, monospace);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 9px;
  border-radius: 4px;
}
.pfg__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  max-width: 480px;
}

/* Bento grid */
.pfg__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pfg__card:nth-child(1) { grid-column: 1 / 4; }
.pfg__card:nth-child(2) { grid-column: 4 / 6; }
.pfg__card:nth-child(3) { grid-column: 1 / 3; }
.pfg__card:nth-child(4) { grid-column: 3 / 6; }

/* Base card */
.pfg__card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 360px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.pfg__card:hover { transform: translateY(-4px); }

/* Card inner layouts */
.pfg__card-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  padding: 48px 44px;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.pfg__card-inner--v {
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px 40px;
  gap: 24px;
}

/* Watermark step number */
.pfg__num {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  bottom: 16px;
  right: 24px;
  color: rgba(255,255,255,0.05);
  font-family: var(--font-mono, monospace);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.pfg__card--schedule .pfg__num { color: rgba(0,0,0,0.12); }

/* Step label */
.pfg__step-lbl {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.pfg__card--schedule .pfg__step-lbl { color: rgba(255,255,255,0.75); }

/* Card text */
.pfg__card-text { flex: 1; }
.pfg__card-text h3 {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
}
.pfg__card--schedule .pfg__card-text h3 { font-size: 2.2rem; }
.pfg__card-text p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 300px;
}
.pfg__card--schedule .pfg__card-text p { color: rgba(255,255,255,0.8); }
.pfg__card-text--v h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pfg__card-text--v p { font-size: 0.875rem; max-width: 240px; }

/* Tag pills (Card 1) */
.pfg__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.pfg__tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.28);
}

/* ── CARD THEMES ── */

/* Card 1: Hot Pink */
.pfg__card--schedule {
  background: linear-gradient(130deg, #ff0080 0%, #d90066 55%, #aa0050 100%);
  box-shadow: 0 8px 40px rgba(255,0,128,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Card 2: Near-black */
.pfg__card--pickup {
  background: linear-gradient(145deg, #0c0f1c 0%, #131828 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* Card 3: Dark blue */
.pfg__card--wash {
  background: linear-gradient(145deg, #060d1e 0%, #0a1832 60%, #0d2048 100%);
  border: 1px solid rgba(29,78,137,0.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* Card 4: Dark purple */
.pfg__card--deliver {
  background: linear-gradient(135deg, #0c0018 0%, #18002a 50%, #0c0018 100%);
  border: 1px solid rgba(255,0,128,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* ── SCENES ── */
.pfg__scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Scene: Calendar phone */
.pfg__scene--cal {
  width: 200px;
  height: 260px;
}
.pfg__phone-wrap { position: relative; z-index: 1; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5)); }

/* Floating dots on pink card */
.pfg__dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  pointer-events: none;
}
.pfg__dot--a { width: 80px; height: 80px; top: -20px; right: -20px; animation: pfgDotFloat 5s ease-in-out infinite; }
.pfg__dot--b { width: 50px; height: 50px; bottom: 10px; right: 20px; animation: pfgDotFloat 7s ease-in-out infinite 1s; }
.pfg__dot--c { width: 30px; height: 30px; top: 60px; left: 0px; animation: pfgDotFloat 6s ease-in-out infinite 2.5s; }

/* Calendar ring ping */
.pfg__cal-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: ptlSvgPing 2.2s ease-out infinite;
}

/* Notification pill */
.pfg__notif--cal {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(10,15,30,0.92);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(12px);
  animation: ptlNotifFloat 3s ease-in-out infinite;
  z-index: 2;
}

/* Scene: Truck */
.pfg__scene--truck {
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
}
.pfg__truck-svg { animation: pfgTruckBob 3s ease-in-out infinite; }
.pfg__wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 0.9s linear infinite;
}

/* GPS pin */
.pfg__gps-pin {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.pfg__gps-pulse {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,0,128,0.5);
  animation: pfgCheckPulse 2s ease-out infinite;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
}

/* GPS LIVE badge */
.pfg__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 5px 12px;
  margin-top: 4px;
}
.pfg__live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pfgLivePulse 1.6s ease-in-out infinite;
}

/* Scene: Washer */
.pfg__scene--wash {
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pfg__drum-fg {
  transform-box: fill-box;
  transform-origin: 80px 100px;
  animation: drumSpin 5s linear infinite;
}

/* Bubbles */
.pfg__bbl {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,230,255,0.35);
  border: 1px solid rgba(255,255,255,0.3);
  animation: pfgBubbleUp var(--d, 3s) ease-out infinite var(--dl, 0s);
  bottom: 30px;
}
.pfg__bbl--a { width: 8px;  height: 8px;  left: 38%;  --d: 2.8s; --dl: 0s;    }
.pfg__bbl--b { width: 12px; height: 12px; left: 48%;  --d: 3.5s; --dl: 0.7s;  }
.pfg__bbl--c { width: 6px;  height: 6px;  left: 56%;  --d: 2.4s; --dl: 1.3s;  }
.pfg__bbl--d { width: 10px; height: 10px; left: 32%;  --d: 4s;   --dl: 0.4s;  }
.pfg__bbl--e { width: 7px;  height: 7px;  left: 62%;  --d: 3s;   --dl: 1.9s;  }

/* Sanitized badge */
.pfg__san-badge {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  padding: 5px 12px;
}

/* Scene: Deliver */
.pfg__scene--deliver {
  width: 220px;
  height: 200px;
  flex-shrink: 0;
  position: relative;
}

/* Check ring pulse */
.pfg__check-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: pfgCheckPulse 2.4s ease-out infinite;
}

/* SVG sparkle stars */
.pfg__sparkle-svg {
  transform-box: fill-box;
  transform-origin: center;
}
.pfg__ssvg--a { animation: ptlSparkleAnim 2.2s ease-in-out infinite 0s;    }
.pfg__ssvg--b { animation: ptlSparkleAnim 2.6s ease-in-out infinite 0.8s;  }
.pfg__ssvg--c { animation: ptlSparkleAnim 3s   ease-in-out infinite 0.4s;  }

/* DOM sparkles (Card 4 corner) */
.pfg__sparkle-fg {
  position: absolute;
  width: 10px; height: 10px;
  background: rgba(255,220,50,0.9);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.pfg__sp--a { top: 8px;  left: 12px;  animation: pfgSparkle 2s ease-in-out infinite 0s;    }
.pfg__sp--b { top: 24px; right: 16px; animation: pfgSparkle 2.4s ease-in-out infinite 0.6s; width: 14px; height: 14px; }
.pfg__sp--c { bottom: 16px; left: 8px;  animation: pfgSparkle 2.8s ease-in-out infinite 1.2s; width: 7px; height: 7px; }
.pfg__sp--d { bottom: 30px; right: 8px; animation: pfgSparkle 3s   ease-in-out infinite 0.3s; width: 12px; height: 12px; }

/* Deliver badge */
.pfg__deliver-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,0,128,0.15);
  border: 1px solid rgba(255,0,128,0.4);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 0 16px rgba(255,0,128,0.2);
}

/* ── V3 KEYFRAMES ── */
@keyframes pfgDotFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.25; }
  50%       { transform: translateY(-18px) scale(1.08); opacity: 0.18; }
}
@keyframes pfgTruckBob {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-5px); }
}
@keyframes pfgBubbleUp {
  0%   { transform: translateY(0) scale(1); opacity: 0.8; }
  100% { transform: translateY(-55px) scale(0.3); opacity: 0; }
}
@keyframes pfgCheckPulse {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes pfgLivePulse {
  0%, 100% { box-shadow: 0 0 6px #22c55e; }
  50%       { box-shadow: 0 0 14px #22c55e, 0 0 24px rgba(34,197,94,0.5); }
}
@keyframes pfgSparkle {
  0%, 100% { transform: scale(0) rotate(0deg);   opacity: 0; }
  40%, 60%  { transform: scale(1) rotate(72deg);  opacity: 1; }
}

/* ── V3 MOBILE ── */
@media (max-width: 900px) {
  .pfg__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pfg__card:nth-child(1),
  .pfg__card:nth-child(2),
  .pfg__card:nth-child(3),
  .pfg__card:nth-child(4) { grid-column: 1; }

  .pfg__card-inner { flex-direction: column; padding: 32px 28px; gap: 28px; }
  .pfg__card-inner--v { padding: 28px 24px 32px; }

  .pfg__scene--cal { width: 160px; height: 220px; }
  .pfg__scene--deliver { width: 180px; height: 160px; }
  .pfg__scene--truck { padding-bottom: 0; }

  .pfg__card--schedule { min-height: auto; }
  .pfg__card-text h3 { font-size: 1.6rem; }
  .pfg__card--schedule .pfg__card-text h3 { font-size: 1.8rem; }
  .pfg__num { font-size: 5rem; }
}

/* ── PROCESS FEATURE GRID V3b — BRIGHT VARIANT ── */
.process-fg--bright {
  background: #ffffff;
  font-family: 'Nunito', sans-serif;
}
/* Scope Nunito to all text inside the section */
.process-fg--bright h2,
.process-fg--bright h3,
.process-fg--bright p,
.process-fg--bright span,
.process-fg--bright div {
  font-family: 'Nunito', sans-serif;
}
/* Tone down ambient glows on white */
.process-fg--bright .pfg__glow--a { opacity: 0.05; }
.process-fg--bright .pfg__glow--b {
  background: radial-gradient(circle, #1d4e89, transparent 70%);
  opacity: 0.05;
}
/* Header text — dark on white */
.process-fg--bright .section-title { color: #0d0d18; }
.process-fg--bright .pfg__sub { color: rgba(13,13,24,0.5); }
.process-fg--bright .pfg__ver {
  color: rgba(13,13,24,0.32);
  border-color: rgba(13,13,24,0.14);
}
.process-fg--bright .section-label { color: rgba(13,13,24,0.4); }

/* Larger headlines */
.process-fg--bright .pfg__card-text h3     { font-size: 2.4rem; line-height: 1.08; }
.process-fg--bright .pfg__card--schedule .pfg__card-text h3 { font-size: 2.8rem; }
.process-fg--bright .pfg__card-text--v h3  { font-size: 1.95rem; line-height: 1.1; }

/* More visible watermark numbers */
.process-fg--bright .pfg__num { color: rgba(255,255,255,0.18); }
.process-fg--bright .pfg__card--schedule .pfg__num,
.process-fg--bright .pfg__card--deliver   .pfg__num { color: rgba(255,255,255,0.2); }

/* 01 Schedule — hot pink */
.process-fg--bright .pfg__card--schedule {
  background: linear-gradient(130deg, #ff3399 0%, #ff0080 50%, #e6006e 100%);
  box-shadow: 0 8px 48px rgba(255,0,128,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
}
/* 02 Pickup — nav blue #1d4e89 */
.process-fg--bright .pfg__card--pickup {
  background: linear-gradient(145deg, #163e6e 0%, #1d4e89 55%, #22579a 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 8px 40px rgba(29,78,137,0.28);
}
/* 03 Wash — same nav blue */
.process-fg--bright .pfg__card--wash {
  background: linear-gradient(145deg, #163e6e 0%, #1d4e89 55%, #22579a 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 8px 40px rgba(29,78,137,0.28);
}
/* 04 Deliver — hot pink (mirrors 01) */
.process-fg--bright .pfg__card--deliver {
  background: linear-gradient(135deg, #ff3399 0%, #ff0080 55%, #e6006e 100%);
  border: none;
  box-shadow: 0 8px 48px rgba(255,0,128,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ── PROCESS LINE ART (V4) ── */
.process-la {
  padding: 120px 0 140px;
  background: #ffffff;
  background-image: radial-gradient(circle, rgba(10,10,20,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
  overflow: hidden;
}

/* Subtle corner glows on white bg */
.pla__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at -10% 50%, rgba(255,0,128,0.04), transparent),
    radial-gradient(ellipse 600px 400px at 110% 50%, rgba(29,78,137,0.05), transparent);
}

/* Header */
.pla__head { margin-bottom: 72px; }
.pla__head .pfg__ver { color: rgba(10,10,20,0.3); border-color: rgba(10,10,20,0.15); }
.pla__head .section-label { color: rgba(10,10,20,0.5); }
.pla__sub {
  font-size: 1.05rem;
  color: rgba(10,10,20,0.5);
  margin-top: 12px;
  max-width: 480px;
}

/* Override section-title color on white */
.process-la .section-title { color: #0a0a14; }
.process-la .accent-text { color: var(--pink); }

/* Steps grid */
.pla__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connecting dashed line through badges */
.pla__steps::after {
  content: '';
  position: absolute;
  left: calc(12.5%);
  right: calc(12.5%);
  top: calc(200px + 28px + 24px); /* art-wrap + gap + badge-half */
  height: 0;
  border-top: 1.5px dashed rgba(10,10,20,0.16);
  pointer-events: none;
  z-index: 0;
  background-image: none;
  /* Animate: scaleX from 0 when any step is visible */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}
.pla__steps.line-visible::after {
  transform: scaleX(1);
}

/* Individual step */
.pla__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Art circle wrapper */
.pla__art-wrap {
  width: 200px;
  height: 200px;
  position: relative;
  margin-bottom: 28px;
  flex-shrink: 0;
}

/* Ring SVG: overlaid on top */
.pla__ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Illustration container: centered inside ring */
.pla__illo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Step badge */
.pla__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF0080;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,0,128,0.3);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.pla__step:hover .pla__badge {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(255,0,128,0.45);
}

/* Step text */
.pla__text { flex: 1; }
.pla__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,10,20,0.38);
  margin-bottom: 8px;
}
.pla__text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a14;
  margin: 0 0 10px;
  line-height: 1.2;
}
.pla__text p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(10,10,20,0.52);
  margin: 0;
  max-width: 200px;
}

/* ── DRAW-ON ANIMATION ── */
/* Base: paths start drawn via inline stroke-dashoffset attributes */
.pla__draw {
  transition: stroke-dashoffset 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.pla__draw--d1 { transition-delay: 0.18s; }
.pla__draw--d2 { transition-delay: 0.40s; }
.pla__draw--d3 { transition-delay: 0.65s; }
.pla__draw--d4 { transition-delay: 0.88s; }

/* When step becomes visible: all draws resolve to 0 */
.pla__step.visible .pla__draw {
  stroke-dashoffset: 0 !important;
}

/* Trigger connecting line when first step is visible */
.pla__step.visible ~ * { /* handled via JS class on container */ }

/* ── ONGOING ANIMATIONS ── */

/* Washer drum rotation */
.pla__drum-la {
  animation: drumSpin 6s linear infinite;
  transform-box: fill-box;
  transform-origin: 70px 86px;
  opacity: 0;
  transition: opacity 0.4s ease 1.2s;
}
.pla__step.visible .pla__drum-la { opacity: 1; }

/* Dashed inner ring rotation */
.pla__dashed-ring-la {
  transform-box: fill-box;
  transform-origin: 70px 86px;
  animation: plaRingRotate 12s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease 0.8s;
}
.pla__step.visible .pla__dashed-ring-la { opacity: 1; }
@keyframes plaRingRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Line-art bubbles */
.pla__bbl-la {
  opacity: 0;
  transition: opacity 0.3s ease 1.4s;
}
.pla__step.visible .pla__bbl-la { opacity: 1; }
.pla__bbl-la--a { animation: plaBubble 2.8s ease-out infinite 0s; }
.pla__bbl-la--b { animation: plaBubble 3.4s ease-out infinite 0.7s; }
.pla__bbl-la--c { animation: plaBubble 2.6s ease-out infinite 1.4s; }
@keyframes plaBubble {
  0%   { transform: translateY(0)    scale(1);   opacity: 0.7; }
  100% { transform: translateY(-28px) scale(0.4); opacity: 0;   }
}

/* Calendar date ping ring */
.pla__cal-ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: plaRingPing 2.4s ease-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease 1s;
}
.pla__step.visible .pla__cal-ping { opacity: 1; }
@keyframes plaRingPing {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0;   }
}

/* Check pulse ring */
.pla__check-pulse-la {
  transform-box: fill-box;
  transform-origin: center;
  animation: pfgCheckPulse 2.6s ease-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease 1.2s;
}
.pla__step.visible .pla__check-pulse-la { opacity: 1; }

/* Spinning wheel hubs */
.pla__spin-hub {
  opacity: 0;
  transition: opacity 0.3s ease 1s;
}
.pla__step.visible .pla__spin-hub { opacity: 1; }
.pla__hub--r { animation: drumSpin 0.7s linear infinite; transform-box: fill-box; }
.pla__hub--f { animation: drumSpin 0.7s linear infinite 0.15s; transform-box: fill-box; }

/* Sparkle stars on delivery card */
.pla__star-la { opacity: 0; transition: opacity 0.3s ease 1.2s; }
.pla__step.visible .pla__star-la { opacity: 1; }
.pla__star-la--a { animation: ptlSparkleAnim 2.2s ease-in-out infinite 0s;   }
.pla__star-la--b { animation: ptlSparkleAnim 2.6s ease-in-out infinite 0.8s; }
.pla__star-la--c { animation: ptlSparkleAnim 3.0s ease-in-out infinite 0.4s; }

/* ── V4 MOBILE ── */
@media (max-width: 1024px) {
  .pla__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .pla__steps::after { display: none; }
  .pla__art-wrap { width: 180px; height: 180px; }
}
@media (max-width: 600px) {
  .pla__steps { grid-template-columns: 1fr; gap: 48px; }
  .pla__art-wrap { width: 200px; height: 200px; }
  .pla__text p { max-width: 280px; }
}

/* ════════════════════════════════════════════════════════════
   CONCEPT LABEL (shared pill)
   ════════════════════════════════════════════════════════════ */
.ct-concept-label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  pointer-events: none;
}
.ct-concept-label--dark {
  background: rgba(30,30,30,0.7);
  color: rgba(255,255,255,0.9);
}
.ct-concept-label--light {
  background: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════════════════════
   BV1 · DARK IMPACT
   ════════════════════════════════════════════════════════════ */
.bv1 {
  position: relative;
  background: #07080f;
  padding: 120px 0 80px;
  overflow: hidden;
  color: #fff;
}

/* BV1 background layers */
.bv1__grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.bv1__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.bv1__glow--1 {
  width: 600px; height: 600px;
  background: rgba(255,0,128,0.12);
  top: -200px; right: -100px;
}
.bv1__glow--2 {
  width: 500px; height: 500px;
  background: rgba(29,78,137,0.18);
  bottom: -100px; left: -100px;
}

/* BV1 layout */
.bv1__top {
  margin-bottom: 64px;
}
.bv1__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}
.bv1__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 10px rgba(0,230,118,0.7);
  animation: bv1Pulse 2.4s ease-in-out infinite;
}
.bv1__h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 32px;
}
.bv1__sweep {
  display: inline-block;
  background: linear-gradient(90deg, #FF0080, #ff6eb4, #FF0080);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bv1Sweep 3s linear infinite;
}
.bv1__sub-row {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bv1__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 380px;
  flex-shrink: 0;
}
.bv1__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.bv1__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.bv1__btn--primary {
  background: #FF0080;
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,0,128,0.4);
}
.bv1__btn--primary:hover {
  background: #e6006e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,0,128,0.5);
}
.bv1__btn--ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}
.bv1__btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats */
.bv1__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.bv1__stat {
  flex: 1;
  min-width: 140px;
  padding: 0 32px;
}
.bv1__stat-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.bv1__stat-sym {
  font-size: 1.4rem;
  color: #FF0080;
}
.bv1__stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bv1__stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Cards */
.bv1__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.bv1__card {
  position: relative;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.bv1__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,0,128,0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bv1__card:hover {
  border-color: rgba(255,0,128,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,0,128,0.12);
}
.bv1__card:hover::before { opacity: 1; }
.bv1__card--accent {
  background: rgba(255,0,128,0.08);
  border-color: rgba(255,0,128,0.25);
}
.bv1__card--accent:hover {
  border-color: rgba(255,0,128,0.5);
  box-shadow: 0 12px 40px rgba(255,0,128,0.2);
}
.bv1__card-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FF0080;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.bv1__card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.bv1__card-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}
.bv1__card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* Industries */
.bv1__industries {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bv1__ind-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* BV1 keyframes */
@keyframes bv1Pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 10px rgba(0,230,118,0.7); }
  50%      { transform: scale(1.5); box-shadow: 0 0 18px rgba(0,230,118,0.4); }
}
@keyframes bv1Sweep {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* BV1 responsive */
@media (max-width: 900px) {
  .bv1__cards { grid-template-columns: 1fr; }
  .bv1__sub-row { flex-direction: column; gap: 24px; }
  .bv1__stat { padding: 16px 20px; }
}

/* ════════════════════════════════════════════════════════════
   BV2 · KINETIC TYPE
   ════════════════════════════════════════════════════════════ */
.bv2 {
  position: relative;
  background: #ffffff;
  padding: 0 0 100px;
  overflow: hidden;
  color: #0d0d14;
}

/* Marquee strip */
.bv2__marquee-wrap {
  width: 100%;
  overflow: hidden;
  background: #0d0d14;
  padding: 14px 0;
  margin-bottom: 80px;
}
.bv2__marquee {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: bv2Marquee 22s linear infinite;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.bv2__mdot {
  color: #FF0080;
}

/* Hero layout */
.bv2__hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

/* Text */
.bv2__h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #0d0d14;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bv2__line { display: block; }
.bv2__line--muted { color: rgba(13,13,20,0.28); }
.bv2__flip-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
}
.bv2__flip {
  display: inline-block;
  color: #FF0080;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.bv2__flip.exit {
  transform: translateY(-110%);
  opacity: 0;
}
.bv2__flip.enter {
  transform: translateY(0);
  opacity: 1;
}
.bv2__bottom {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bv2__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(13,13,20,0.55);
  max-width: 340px;
}
.bv2__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bv2__btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: #0d0d14;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.bv2__btn:hover {
  background: #FF0080;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,128,0.3);
}
.bv2__proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(13,13,20,0.45);
}
.bv2__proof-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 8px rgba(0,230,118,0.6);
  animation: bv1Pulse 2s ease-in-out infinite;
}

/* Side cards */
.bv2__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.bv2__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #f7f7fa;
  border-radius: 16px;
  border: 1px solid rgba(13,13,20,0.07);
  transition: all 0.25s ease;
}
.bv2__card:hover {
  background: #fff;
  border-color: rgba(255,0,128,0.2);
  box-shadow: 0 4px 24px rgba(255,0,128,0.08);
  transform: translateX(6px);
}
.bv2__card--2 { margin-left: 20px; }
.bv2__card--3 { margin-left: 40px; }
.bv2__card-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(13,13,20,0.08);
  flex-shrink: 0;
}
.bv2__card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0d0d14;
}
.bv2__card span {
  font-size: 0.8rem;
  color: rgba(13,13,20,0.45);
  font-weight: 500;
}
.bv2__progress {
  height: 3px;
  background: rgba(13,13,20,0.07);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}
.bv2__progress-bar {
  height: 100%;
  background: #FF0080;
  border-radius: 99px;
  width: 0;
  animation: bv2Progress 3s ease-in-out infinite;
}

/* BV2 keyframes */
@keyframes bv2Marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bv2Progress {
  0%   { width: 0; opacity: 1; }
  70%  { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0; }
}

/* BV2 responsive */
@media (max-width: 900px) {
  .bv2__hero { grid-template-columns: 1fr; gap: 48px; }
  .bv2__side { display: none; }
  .bv2__bottom { flex-direction: column; gap: 24px; }
}

/* ════════════════════════════════════════════════════════════
   BV3 · EDITORIAL SPLIT
   ════════════════════════════════════════════════════════════ */
.bv3 {
  position: relative;
  overflow: hidden;
}
.bv3__inner {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 720px;
}

/* Left panel */
.bv3__left {
  background: #FF0080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.bv3__left::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -200px; right: -150px;
}
.bv3__left-content { position: relative; z-index: 1; }
.bv3__tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.bv3__h1 {
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 40px;
}
.bv3__h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.bv3__cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  margin-bottom: 48px;
  transition: all 0.2s ease;
}
.bv3__cta:hover {
  background: #fff;
  color: #FF0080;
  border-color: #fff;
  transform: translateX(4px);
}
.bv3__left-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.bv3__ls {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.bv3__ls span {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Right panel */
.bv3__right {
  background: #FAFAF8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  gap: 48px;
}
.bv3__features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bv3__feature {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(13,13,20,0.08);
  transition: all 0.2s ease;
}
.bv3__feature:first-child { border-top: 1px solid rgba(13,13,20,0.08); }
.bv3__feature:hover { padding-left: 12px; }
.bv3__fnum {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FF0080;
  text-transform: uppercase;
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}
.bv3__ftext h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d0d14;
  margin-bottom: 8px;
  line-height: 1.2;
}
.bv3__ftext p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(13,13,20,0.5);
}
.bv3__industries {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bv3__industries span {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(13,13,20,0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(13,13,20,0.6);
  transition: all 0.2s ease;
}
.bv3__industries span:hover {
  border-color: #FF0080;
  color: #FF0080;
  background: rgba(255,0,128,0.04);
}

/* BV3 responsive */
@media (max-width: 900px) {
  .bv3__inner { grid-template-columns: 1fr; }
  .bv3__left { padding: 80px 32px; }
  .bv3__right { padding: 60px 32px; }
  .bv3__h1 { font-size: 3rem; }
}

/* ── CURSOR GLOW (desktop only) ── */
.cursor-glow {
  position: fixed;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,0,116,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%,-50%);
  display: none;
}
@media (hover: hover) { .cursor-glow { display: block; } }

/* ════════════════════════════════════════════════════════════
   SV · SERVICES
   ════════════════════════════════════════════════════════════ */
.sv {
  padding: 120px 0;
  background: #fff;
}
.sv .section-title { color: #0d0d1a; }
.sv .section-sub   { color: #556; }
.sv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sv__card {
  background: #f5f7fc;
  border: 1px solid #e4e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}
.sv__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(29,78,137,0.12);
  border-color: rgba(255,0,128,0.3);
}
.sv__icon {
  width: 48px;
  height: 48px;
  color: var(--pink);
  margin-bottom: 20px;
}
.sv__icon svg { width: 100%; height: 100%; }
.sv__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0d0d1a;
}
.sv__card p {
  color: #556;
  line-height: 1.65;
  font-size: 0.93rem;
  margin-bottom: 24px;
}
.sv__link {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.sv__link:hover { opacity: 0.75; }
@media (max-width: 1024px) { .sv__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .sv__grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   PAIN · PROBLEM SECTION
   ════════════════════════════════════════════════════════════ */
.pain {
  padding: 120px 0;
  background: rgba(0,0,0,0.18);
}
.pain__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pain__heading {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
}
.pain__text .section-label { margin-bottom: 16px; }
.pain__text p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.pain__text .btn { margin-top: 12px; }
.pain__board {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 14px;
}
.pain__row--bad {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.pain__row--good {
  background: rgba(255,0,128,0.1);
  border: 1px solid rgba(255,0,128,0.3);
}
.pain__x {
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.pain__check {
  font-size: 1rem;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.pain__row strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #fff;
}
.pain__row--bad strong { color: rgba(255,255,255,0.6); }
.pain__row p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}
.pain__vs {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 6px 0;
}
.pain__video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 540px;
  margin-left: 40px;
}
.pain__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pain__video-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'Pacifico', cursive;
  font-size: 1.1rem;
  color: #1d4e89;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.pain__heart {
  color: #ff2d55;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .pain__split { grid-template-columns: 1fr; gap: 48px; }
  .pain__video-wrap { max-height: 400px; aspect-ratio: 4 / 3; }
}

/* ════════════════════════════════════════════════════════════
   STEPS · HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.steps {
  padding: 120px 0;
  background: var(--bg);
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 44px 32px;
  border-left: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.step:first-child { border-left: none; }
.step__num {
  display: block;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--pink);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}
.step__icon {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.step__icon svg { width: 100%; height: 100%; }
.step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.step p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-left: none; }
}
@media (max-width: 540px) {
  .steps__grid { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 32px 0; }
  .step:first-child { border-top: none; }
}

/* ════════════════════════════════════════════════════════════
   IND · INDUSTRIES
   ════════════════════════════════════════════════════════════ */
.ind {
  padding: 100px 0;
  background: #fff;
}
.ind__header {
  text-align: center;
  margin-bottom: 56px;
}
.ind__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0d0d1a;
  margin: 12px 0 16px;
}
.ind__sub {
  font-size: 2rem;
  color: #555;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}
.ind__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.ind__card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ind__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.ind__card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.ind__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ind__card:hover .ind__card-img img { transform: scale(1.04); }
.ind__card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ind__card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0d0d1a;
  margin-bottom: 10px;
}
.ind__card-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.ind__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.ind__cta:hover { gap: 10px; }
@media (max-width: 720px) {
  .ind__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   PROOF · SOCIAL PROOF  (white-bg, screenshot-style)
   ════════════════════════════════════════════════════════════ */
/* ── LOGO BAR ── */
.logobar {
  padding: 80px 0 32px;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
}
.logobar__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.logobar__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
}
.logobar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logobar__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.logobar__logo-img:hover { opacity: 1; }
.logobar__logo-img--nofilter { filter: none; }

.logobar__logo-placeholder {
  width: 120px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.proof {
  padding: 100px 0 0;
  background: #fff;
}
.proof__header {
  margin-bottom: 64px;
}
.proof__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.proof__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0d0d1a;
  margin: 0;
}
.proof__pink { color: var(--pink); }

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 72px;
}
.proof__card {
  display: flex;
  flex-direction: column;
}

/* Photo area */
.proof__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f0f0f0;
  position: relative;
}
.proof__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.proof__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8eef8 0%, #d0ddf0 100%);
  color: rgba(29,78,137,0.3);
}
.proof__photo-placeholder svg { width: 60px; height: 60px; }

/* Card body */
.proof__card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0d0d1a;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proof__big-stat {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  color: #0d0d1a;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.proof__stat-unit {
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0;
  color: #0d0d1a;
}
.proof__desc {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

/* Quote strip */
.proof__quote {
  margin-top: 0;
  padding: 100px 24px;
  background: var(--pink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proof__quote::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28rem;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  font-style: normal;
  pointer-events: none;
  font-weight: 900;
}
.proof__quote blockquote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  font-style: italic;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.proof__quote blockquote footer {
  display: block;
  margin-top: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .proof__grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ════════════════════════════════════════════════════════════
   TRUST · CEO + EMERGENCY
   ════════════════════════════════════════════════════════════ */
.trust {
  padding: 120px 0;
  background: #fff;
}
.trust__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.trust__img-col { position: sticky; top: 100px; }
.trust__img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
}
.trust__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.trust__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #0d0d1a;
}
.trust__text .section-label { margin-bottom: 16px; }
.trust__text > p {
  color: #555;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.trust__vals {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.trust__val {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust__check {
  color: var(--pink);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust__val strong {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0d0d1a;
  margin-bottom: 3px;
}
.trust__val p {
  color: #555;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.55;
}
.trust__sig {
  color: #888;
  font-size: 1.1rem;
  font-style: italic;
}
@media (max-width: 900px) {
  .trust__layout { grid-template-columns: 1fr; gap: 48px; }
  .trust__img-col { position: static; }
}
.trust__emerg-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.trust__emerg-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.trust__emerg-card h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0d0d1a;
}
.trust__emerg-card > p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 1.2rem;
}
@media (max-width: 900px) {
}

/* ════════════════════════════════════════════════════════════
   FOOTER OVERRIDES (real phone / legal note)
   ════════════════════════════════════════════════════════════ */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom .footer__legal p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 640px;
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}

/* ════════════════════════════════════════════════════════════
   LEAD FORM — request-quote page
   ════════════════════════════════════════════════════════════ */
.lf-page {
  padding: 140px 0 100px;
  background: #f7f8fa;
  min-height: 100vh;
}
.lf-page__split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.lf-page__left { position: sticky; top: 100px; }
.lf-page__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0d0d1a;
  margin: 12px 0 16px;
  line-height: 1.1;
}
.lf-page__sub {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}
.lf-page__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lf-page__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0d0d1a;
}
.lf-page__check {
  color: var(--pink);
  font-weight: 700;
}
.lf-page__contact p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 6px;
}
.lf-page__phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d0d1a;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.lf-page__phone:hover { color: var(--pink); }

/* Form card */
.lead-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
}
.lead-form { display: flex; flex-direction: column; gap: 28px; }

/* Honeypot */
.lf-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
}

/* Labels */
.lf-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d0d1a;
  margin-bottom: 10px;
}
.lf-req { color: var(--pink); }

/* Inputs & textarea */
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form textarea,
.lead-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0d0d1a;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,0,128,0.1);
}
.lead-form textarea { resize: vertical; min-height: 120px; }

/* Fieldset reset */
.lead-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.lead-form fieldset .lf-label { margin-bottom: 12px; }

/* Radio buttons */
.lf-radios { display: flex; flex-direction: column; gap: 10px; }
.lf-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.lf-radio:hover { border-color: var(--pink); background: #fff5fa; }
.lf-radio input[type="radio"] { display: none; }
.lf-radio__box {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}
.lf-radio input:checked ~ .lf-radio__box {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: inset 0 0 0 3px #fff;
}
.lf-radio:has(input:checked) {
  border-color: var(--pink);
  background: #fff5fa;
}

/* Row layout */
.lf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lf-field { display: flex; flex-direction: column; gap: 4px; }
.lf-field--full { width: 100%; }
.lf-sublabel { font-size: 0.75rem; color: #999; padding-left: 2px; }

/* Submit */
.lf-submit { margin-top: 4px; padding: 18px; font-size: 1.05rem; }
.lf-disclaimer { font-size: 0.78rem; color: #aaa; text-align: center; margin-top: -8px; }

/* Success state */
.lf-success {
  text-align: center;
  padding: 60px 24px;
}
.lf-success__icon {
  width: 72px;
  height: 72px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.lf-success h2 { font-size: 1.8rem; font-weight: 900; color: #0d0d1a; margin-bottom: 12px; }
.lf-success p { color: #555; font-size: 1rem; line-height: 1.6; }

@media (max-width: 900px) {
  .lf-page__split { grid-template-columns: 1fr; gap: 40px; }
  .lf-page__left { position: static; }
  .lead-form-wrap { padding: 32px 24px; }
  .lf-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Hero */
.cs-hero {
  position: relative;
  background: var(--bg);
  padding: 160px 0 100px;
  overflow: hidden;
}
.cs-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.cs-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.cs-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.cs-hero__orb--1 { width: 500px; height: 500px; background: rgba(255,0,128,0.18); top: -100px; right: -100px; animation-delay: 0s; }
.cs-hero__orb--2 { width: 400px; height: 400px; background: rgba(29,78,137,0.3); bottom: -80px; left: -80px; animation-delay: -4s; }
.cs-hero__inner { max-width: 800px; }
.cs-hero__heading {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 12px 0 24px;
}
.cs-hero__sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 560px;
}

/* Case study list */
.cs-list { padding: 100px 0; background: #fff; }

.cs-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 60px 0;
}
.cs-item--flip .cs-item__img-wrap { order: 2; }
.cs-item--flip .cs-item__body    { order: 1; }

.cs-item__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}
.cs-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.cs-item__stat-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--pink);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.cs-item__stat-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.cs-item__stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.cs-item__tag {
  display: inline-block;
  background: #fff0f7;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.cs-item__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0d0d1a;
  margin-bottom: 24px;
}
.cs-item__copy p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}
.cs-item__copy h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin: 24px 0 8px;
}
.cs-item__copy h4:first-child { margin-top: 0; }
.cs-item__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cs-item__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}
.cs-item__list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  background: #fff0f7;
  border-radius: 50%;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 2px;
}
.cs-item__takeaway {
  background: #f7f8fa;
  border-left: 3px solid var(--pink);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 20px;
}
.cs-item__takeaway p {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  margin: 0;
}
.cs-item__body .btn { margin-top: 24px; }

.cs-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 0;
}

/* Active nav link */
.nav__links a.active { color: #fff; font-weight: 700; }

@media (max-width: 767px) {
  .cs-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cs-item--flip .cs-item__img-wrap,
  .cs-item--flip .cs-item__body { order: unset; }
}

/* ── Case Studies Listing — Card Grid ── */
.cs-grid-section { padding: 80px 0 100px; background: #fff; }
.cs-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cs-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.cs-card--coming { opacity: 0.72; pointer-events: none; }
.cs-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.cs-card__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.cs-card:hover .cs-card__img { transform: scale(1.04); }
.cs-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
}
.cs-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cs-card__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.cs-card__stat-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--pink);
  line-height: 1;
}
.cs-card__stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cs-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d0d1a;
  line-height: 1.3;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-card__teaser {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.cs-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
}
.cs-card__cta--soon {
  color: #aaa;
}

/* ── Case Study Detail Page ── */
.csd-hero {
  position: relative;
  background: var(--bg);
  padding: 140px 0 80px;
  overflow: hidden;
}
.csd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.csd-back:hover { color: #fff; }
.csd-hero__inner { max-width: 860px; }
.csd-hero__heading {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #fff;
  margin: 16px 0 40px;
  max-width: 760px;
}
.csd-hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.csd-stat { display: flex; flex-direction: column; }
.csd-stat__num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.csd-stat__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.csd-stat__divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
}

.csd-body { padding: 80px 0 100px; background: #fff; }
.csd-layout {
  display: grid;
  grid-template-columns: 320px 1fr 300px;
  gap: 56px;
  align-items: start;
}
.csd-img-col {
  position: sticky;
  top: 100px;
}
.csd-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.csd-img {
  width: 100%;
  height: auto;
  display: block;
}
.csd-section { margin-bottom: 40px; }
.csd-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 12px;
}
.csd-section p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}
.csd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.csd-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}
.csd-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  background: #fff0f7;
  border-radius: 50%;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
  margin-top: 2px;
}
.csd-takeaway {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 40px;
}
.csd-takeaway p {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
}

.csd-sidebar { position: sticky; top: 100px; }
.csd-sidebar__card {
  background: #f7f8fa;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
}
.csd-sidebar__card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d0d1a;
  margin-bottom: 10px;
}
.csd-sidebar__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
}
.csd-sidebar__card .btn--full { width: 100%; justify-content: center; }
.csd-sidebar__industries h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 12px;
}
.csd-sidebar__industries ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.csd-sidebar__industries a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}
.csd-sidebar__industries a:hover { color: var(--pink); }
.csd-sidebar__dont-see {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  transition: opacity 0.2s;
}
.csd-sidebar__dont-see:hover { opacity: 0.75; }

.btn--full { width: 100%; justify-content: center; }

@media (max-width: 960px) {
  .cs-card-grid { grid-template-columns: 1fr; }
  .csd-layout { grid-template-columns: 1fr; }
  .csd-img-col { position: static; }
  .csd-sidebar { position: static; }
}

/* ═══════════════════════════════════════
   COMMERCIAL LAUNDRY PAGE
═══════════════════════════════════════ */

/* Hero desc */
.cl-hero__desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 460px;
  margin-top: 16px;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* Why Choose section */
.cl-why {
  padding: 120px 0;
  background: #fff;
}
.cl-why__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 96px;
}
.cl-why__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0d1b2a;
  margin-top: 12px;
}
.cl-why__intro {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.65;
  margin-top: 16px;
}

/* Feature rows */
.cl-why__feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #f1f5f9;
}
.cl-why__feat:last-child { border-bottom: none; padding-bottom: 0; }
.cl-why__feat--rev .cl-why__feat-img { order: 2; }
.cl-why__feat--rev .cl-why__feat-body { order: 1; }

/* Feature images */
.cl-why__feat-img { border-radius: 24px; overflow: hidden; }
.cl-why__real-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 24px; display: block; }
.cl-why__placeholder {
  aspect-ratio: 4/3;
  border-radius: 24px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edf8 100%);
  border: 2px dashed #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.cl-why__placeholder--blue  { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.cl-why__placeholder--dark  { background: linear-gradient(135deg, #f0f4ff, #e0e7ff); }
.cl-why__placeholder--green { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }

.cl-why__placeholder-orb {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  top: -60px; right: -60px;
  pointer-events: none;
}
.cl-why__placeholder svg {
  width: 56px; height: 56px;
  color: #94a3b8;
  position: relative;
  z-index: 1;
}
.cl-why__placeholder p {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.cl-why__placeholder-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Feature body text */
.cl-why__feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cl-why__feat-tag::after {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--pink);
}
.cl-why__feat-body h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  color: #0d1b2a;
  line-height: 1.2;
  margin-bottom: 18px;
}
.cl-why__feat-body p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 12px;
}
.cl-why__feat-body strong { color: #0d1b2a; }
.cl-why__feat-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cl-why__feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}
.cl-why__feat-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  background: var(--pink);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.cl-why__feat-callout {
  margin-top: 24px;
  padding: 20px 24px;
  background: #f8fafc;
  border-left: 4px solid var(--pink);
  border-radius: 0 12px 12px 0;
}
.cl-why__feat-callout strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 4px;
}
.cl-why__feat-callout p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.cl-why__feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  transition: gap 0.2s;
}
.cl-why__feat-link:hover { gap: 10px; }

@media (max-width: 900px) {
  .cl-why__feat {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .cl-why__feat--rev .cl-why__feat-img { order: 0; }
  .cl-why__feat--rev .cl-why__feat-body { order: 0; }
}

/* Service Areas section */
.cl-areas {
  padding: 100px 0;
  background: var(--bg);
}
.cl-areas__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.cl-areas__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.cl-areas__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
}
.cl-areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.cl-areas__col {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
}
.cl-areas__col-icon {
  width: 44px;
  height: 44px;
  background: var(--pink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cl-areas__col-icon svg { width: 22px; height: 22px; color: #fff; }
.cl-areas__col h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cl-areas__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cl-areas__col ul li {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cl-areas__col ul li:last-child { border-bottom: none; color: rgba(255,255,255,0.4); font-style: italic; }
.cl-areas__cta {
  text-align: center;
  margin-top: 60px;
}
.cl-areas__cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .cl-why__grid { grid-template-columns: 1fr; }
  .cl-areas__grid { grid-template-columns: 1fr; }
  .cl-why__card { padding: 28px; }
  .cl-areas__col { padding: 28px; }
}

/* ═══════════════════════════════════════
   LEGAL PAGES (T&C, Privacy Policy)
═══════════════════════════════════════ */
.legal-page {
  padding: 80px 0 100px;
  background: #fff;
}
.legal-page__body {
  max-width: 780px;
  margin: 0 auto;
  color: #1e293b;
  font-size: 1rem;
  line-height: 1.8;
}
.legal-page__body h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0d1b2a;
  margin: 2.5rem 0 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
}
.legal-page__body h2:first-of-type { border-top: none; margin-top: 2rem; }
.legal-page__body p { margin-bottom: 1rem; }
.legal-page__body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page__body ul li { margin-bottom: 0.4rem; }

/* ═══════════════════════════════════════
   MOBILE STICKY CTA BAR
═══════════════════════════════════════ */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: #0d1b2a;
  border-top: 2px solid rgba(255,255,255,0.15);
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.mobile-cta-bar__quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 10px;
  background: #fff;
  color: var(--pink) !important;
  font-size: 1.17rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-cta-bar__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 10px;
  background: var(--pink);
  color: #fff !important;
  font-size: 1.17rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--pink-glow);
}
@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
}

@media (max-width: 767px) {

  /* ── GLOBAL MOBILE FIXES ── */

  /* Prevent hero headings from overflowing */
  .hero__heading .line { white-space: normal; }
  .hero__heading {
    font-size: clamp(2.6rem, 11vw, 3.5rem) !important;
    letter-spacing: -0.02em;
  }
  .hero__heading-accent { font-size: inherit; }
  .hero__sub {
    font-size: 1.3rem !important;
  }

  /* Hero subtitle/desc */
  .cl-hero__desc, .hero__body p {
    font-size: 1rem;
    padding: 0 4px;
  }

  /* Hero actions stack vertically */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px !important;
    font-size: 1rem !important;
  }

  /* Section label */
  .section-label { font-size: 0.95rem; }

  /* Container padding */
  .container { padding-left: 20px; padding-right: 20px; }

  /* CTA band */
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .cta-band__actions {
    justify-content: center;
    width: 100%;
  }
  .cta-band__actions .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 16px !important;
    font-size: 0.9rem !important;
  }

  .mobile-br { display: block; }

  /* CTA band — reduce padding and prevent orb overflow on mobile */
  .cta-band { padding: 64px 0; }
  .cta-band__orb { width: 100%; height: 300px; }

  /* CTA band center heading — allow wrapping on mobile */
  .cta-band__center h2 {
    white-space: normal;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.2;
  }
  .cta-pill {
    display: inline-flex;
    max-width: 100%;
    overflow: hidden;
  }

  /* Case studies hero heading */
  .cs-hero__heading { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* FAQ */
  .faq-item__trigger { font-size: 0.95rem; padding: 18px 20px; }
  .faq-item__body p { padding: 0 20px 20px; font-size: 0.9rem; }
  .faq-section__heading { font-size: 1.8rem; }

  /* Lead form page */
  .lf-page__split { flex-direction: column; gap: 32px; }
  .lf-page__heading { font-size: 2rem; }

  /* Service pages why-choose grid */
  .cl-why__feat { grid-template-columns: 1fr !important; }
  .cl-why__feat--rev { direction: ltr; }

  /* Prevent body text overflow everywhere */
  p, h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; }

  /* Add bottom padding so sticky bar doesn't overlap content */
  body { padding-bottom: 80px; }

  /* Nav logo size */
  .nav__logo-img { height: 57px; }
}
