/* ============================================================
   BUBBLED UP — Landing Page Styles v2
   www.bubbledup.co.za
   ============================================================ */

:root {
  --sky: #0ea5e9;
  --cyan: #06b6d4;
  --sky-dark: #0284c7;
  --sky-light: #bae6fd;
  --white: #ffffff;
  --off-white: #f0f9ff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 99px; }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 10px; left: 16px; right: 16px;
  z-index: 100;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.45s ease, padding 0.4s ease, box-shadow 0.45s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 32px;
  border: 1px solid rgba(14,165,233,0.1);
  box-shadow: 0 4px 40px rgba(14,165,233,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.nav-logo img { width: 38px; height: 38px; object-fit: contain; }
.nav-logo span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  transition: color 0.3s;
  letter-spacing: -0.02em;
}
#navbar.scrolled .nav-logo span { color: var(--gray-900); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sky);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--sky) !important; }

.nav-cta {
  background: var(--sky) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 99px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 20px rgba(14,165,233,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,165,233,0.5) !important;
  background: var(--sky-dark) !important;
}
/* "App Coming Soon" non-link variant — visually similar but not clickable */
.nav-cta-soon {
  display: inline-flex;
  align-items: center;
  background: rgba(14,165,233,0.12) !important;
  color: var(--sky-dark) !important;
  border: 1px dashed rgba(14,165,233,0.5);
  cursor: default;
  user-select: none;
  box-shadow: none !important;
}
.nav-cta-soon::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--sky);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-soon 2s infinite;
}
@keyframes pulse-soon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
#navbar.scrolled .nav-toggle span { background: var(--gray-900); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-carwash.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9,20,40,0.92) 0%,
    rgba(3,57,101,0.85) 50%,
    rgba(6,182,212,0.35) 100%
  );
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  text-align: center;
}


.hero-logo {
  width: 100px; height: 100px;
  object-fit: contain;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 30px rgba(14,165,233,0.7));
  opacity: 0;
  transform: scale(0.8);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.035em;
  opacity: 0;
}
.hero-title .accent {
  background: linear-gradient(90deg, #38bdf8, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(186,230,253,0.78);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 400;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
}


/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 99px;
  box-shadow: 0 8px 40px rgba(14,165,233,0.45);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 60px rgba(14,165,233,0.55);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 30px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(14,165,233,0.5);
  transform: translateY(-2px);
}
.btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--sky-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 15px 32px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.2); }
.btn-white svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── SECTION BASE ────────────────────────────────────────── */
section { padding: 110px 24px; position: relative; }
.container { max-width: 1160px; margin: 0 auto; width: 100%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--sky);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--gray-900);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.75;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.32s !important; }
.delay-4 { transition-delay: 0.44s !important; }
.delay-5 { transition-delay: 0.56s !important; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
#how-it-works {
  background: var(--gray-900);
  overflow: hidden;
}
#how-it-works .section-title { color: var(--white); }
#how-it-works .section-sub { color: rgba(186,230,253,0.82); }
#how-it-works .section-label { color: var(--cyan); }
#how-it-works .section-label::before, #how-it-works .section-label::after { background: var(--cyan); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 68px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 1px;
  background: linear-gradient(90deg, rgba(6,182,212,0.6), rgba(14,165,233,0.6));
  z-index: 0;
}
.step-connector::before, .step-connector::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.step-connector::before { left: 0; }
.step-connector::after { right: 0; }

.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 52px 36px 44px;
  text-align: center;
  position: relative;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.step-card:hover {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.22);
  transform: translateY(-6px);
}

.step-number {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--sky));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 10px rgba(14,165,233,0.1), 0 8px 30px rgba(14,165,233,0.35);
}

.step-icon {
  width: 42px; height: 42px;
  color: var(--cyan);
  margin: 0 auto 20px;
  opacity: 0.7;
}

.step-word {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.step-word .dot { color: var(--cyan); }
.step-desc {
  font-size: 0.88rem;
  color: rgba(186,230,253,0.82);
  line-height: 1.75;
}

/* ── SERVICES ────────────────────────────────────────────── */
#services { background: var(--off-white); overflow: hidden; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(14,165,233,0.2); }

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out-expo);
}
.service-card:hover .service-card-img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute;
  inset: 0;
}
.card-bay .service-card-overlay {
  background: linear-gradient(0deg, rgba(8,18,38,0.95) 0%, rgba(3,57,101,0.5) 55%, transparent 100%);
}
.card-mobile .service-card-overlay {
  background: linear-gradient(0deg, rgba(4,78,122,0.95) 0%, rgba(6,182,212,0.4) 55%, transparent 100%);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(14,165,233,0.2);
  border: 1px solid rgba(14,165,233,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.service-card-icon svg { width: 26px; height: 26px; color: var(--sky-light); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 28px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.service-tag svg { width: 13px; height: 13px; }

/* ── WHY BUBBLED UP ──────────────────────────────────────── */
#why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.why-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 38px 34px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: rgba(14,165,233,0.25);
  box-shadow: 0 16px 50px rgba(14,165,233,0.09);
  transform: translateY(-6px);
}

/* TradeSafe — visual anchor card in the why-grid */
.why-card-featured {
  background: linear-gradient(135deg, rgba(14,165,233,0.06) 0%, rgba(6,182,212,0.06) 100%);
  border-color: rgba(14,165,233,0.25);
  position: relative;
}
.why-card-featured::before {
  content: 'PROTECTED BY ESCROW';
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--sky);
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 99px;
  padding: 4px 10px;
}
.why-card-featured .why-icon-wrap {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(14,165,233,0.3);
}
.why-card-featured .why-icon-wrap svg { color: #fff; }
.why-card-featured:hover {
  border-color: rgba(14,165,233,0.45);
  box-shadow: 0 18px 56px rgba(14,165,233,0.18);
}

/* Loyalty Gold tier — visual emphasis only at desktop widths
   (mobile stacks vertically; scale(1.04) would peek past container) */
.tier-card-gold:hover {
  background: rgba(250,204,21,0.12) !important;
  border-color: rgba(250,204,21,0.35) !important;
  transform: translateY(-8px);
}
@media (min-width: 901px) {
  .tier-card-gold {
    transform: scale(1.04);
  }
  .tier-card-gold:hover {
    transform: scale(1.04) translateY(-8px);
  }
}

.why-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.1));
  border: 1px solid rgba(14,165,233,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon-wrap svg { width: 24px; height: 24px; color: var(--sky); }

.why-text h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-text p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.72;
}

/* ── APP DOWNLOAD ────────────────────────────────────────── */
#app {
  background: var(--gray-900);
  text-align: center;
  overflow: hidden;
  position: relative;
}
#app::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#app .section-title { color: var(--white); }
#app .section-sub { color: rgba(186,230,253,0.82); margin: 0 auto; }
#app .section-label { color: var(--cyan); margin: 0 auto 16px; }
#app .section-label::before, #app .section-label::after { background: var(--cyan); }

.app-store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px 28px;
  color: var(--white);
  backdrop-filter: blur(12px);
  opacity: 0.75;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
  min-width: 180px;
}
.store-btn:hover { opacity: 0.88; }

.store-btn-icon { width: 34px; height: 34px; flex-shrink: 0; }
.store-btn-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }

.store-btn .store-text small {
  display: block;
  font-size: 0.62rem;
  opacity: 0.85;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.store-btn .store-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
}

.coming-soon-badge {
  position: absolute;
  top: -1px; right: -1px;
  background: linear-gradient(90deg, var(--cyan), var(--sky));
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 0 18px 0 12px;
}

.app-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.app-divider::before, .app-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  max-width: 60px;
}

/* ── PARTNER STRIP ───────────────────────────────────────── */
#partner-strip {
  padding: 0;
  overflow: hidden;
  position: relative;
}
#partner-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/service-mobile.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.25);
}

.partner-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 72px 48px;
  flex-wrap: wrap;
}

.partner-strip-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.partner-strip-text p {
  font-size: 1rem;
  color: rgba(186,230,253,0.82);
  max-width: 480px;
  line-height: 1.65;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #050d18;
  padding: 72px 24px 40px;
  color: rgba(255,255,255,0.45);
}

.footer-inner { max-width: 1160px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .nav-logo span { color: var(--white); font-size: 1.05rem; }

/* Generated city/suburb pages use .footer-logo (instead of .nav-logo) — mirror sizing */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.footer-logo span {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.footer-brand p {
  font-size: 0.855rem;
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  color: rgba(255,255,255,0.5);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--sky);
  background: rgba(14,165,233,0.12);
  color: var(--sky);
  transform: translateY(-2px);
}

.footer-links h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links ul a:hover { color: var(--sky); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  font-size: 0.785rem;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sky); }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5,13,24,0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--sky); }
.mobile-close {
  position: absolute;
  top: 26px; right: 30px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-close:hover { color: var(--white); }

/* ─────────────────────────────────────────────────────────
   PARTNERS PAGE
   ───────────────────────────────────────────────────────── */

/* ── PARTNER HERO ────────────────────────────────────────── */
#partner-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.partner-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/partner-hero.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
}
.partner-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,13,24,0.88) 0%,
    rgba(3,50,90,0.78) 50%,
    rgba(6,182,212,0.25) 100%
  );
}

#partner-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

#partner-hero .hero-content { max-width: 920px; text-align: center; }
#partner-hero .hero-title { font-size: clamp(2.8rem, 8vw, 5.6rem); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; top: 5px; }
  100% { opacity: 0; top: 18px; }
}

/* ── PARTNER WHY ─────────────────────────────────────────── */
#partner-why { background: var(--off-white); }

.partner-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.partner-why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 44px 36px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-align: center;
}
.partner-why-card:hover {
  border-color: rgba(14,165,233,0.25);
  box-shadow: 0 20px 60px rgba(14,165,233,0.1);
  transform: translateY(-6px);
}

.partner-why-icon {
  width: 68px; height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.1));
  border: 1px solid rgba(14,165,233,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.partner-why-icon svg { width: 28px; height: 28px; color: var(--sky); }

.partner-why-card h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.partner-why-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ── PARTNER STEPS ───────────────────────────────────────── */
#partner-steps { background: var(--white); }

.partner-steps-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
}

.partner-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  padding: 44px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.partner-step:last-child { border-bottom: none; }

.partner-step-num {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--sky));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(14,165,233,0.3);
}

.partner-step-content h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.partner-step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 580px;
}

/* ── PARTNER FEATURES ────────────────────────────────────── */
#partner-features { background: var(--gray-900); overflow: hidden; position: relative; }
#partner-features::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
  pointer-events: none;
}
#partner-features .section-title { color: var(--white); }
#partner-features .section-sub { color: rgba(186,230,253,0.82); }
#partner-features .section-label { color: var(--cyan); }
#partner-features .section-label::before, #partner-features .section-label::after { background: var(--cyan); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.feature-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px 30px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-6px);
}

.feature-icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--sky-light); }

.feature-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.82rem;
  color: rgba(186,230,253,0.82);
  line-height: 1.7;
}

/* ── PARTNER CTA ─────────────────────────────────────────── */
#partner-cta {
  background: var(--gray-900);
  text-align: center;
  overflow: hidden;
  position: relative;
}
#partner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/service-bay.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
#partner-cta .section-title { color: var(--white); position: relative; }
#partner-cta .section-sub { color: rgba(186,230,253,0.82); margin: 0 auto 48px; position: relative; }
#partner-cta .section-label { color: var(--cyan); margin: 0 auto 16px; position: relative; }
#partner-cta .section-label::before, #partner-cta .section-label::after { background: var(--cyan); }
#partner-cta > .container > div { position: relative; }

.glow-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 20px 54px;
  border-radius: 99px;
  animation: glow-pulse 2.8s ease-in-out infinite;
  transition: transform 0.25s, box-shadow 0.25s;
  letter-spacing: 0.01em;
}
.glow-btn:hover {
  transform: translateY(-4px) scale(1.02);
  animation: none;
  box-shadow: 0 22px 70px rgba(14,165,233,0.65);
}
.glow-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.5), 0 8px 40px rgba(14,165,233,0.4); }
  50% { box-shadow: 0 0 0 18px rgba(14,165,233,0), 0 8px 40px rgba(14,165,233,0.4); }
}

.apply-note {
  margin-top: 22px;
  font-size: 0.8rem;
  color: rgba(186,230,253,0.72);
  letter-spacing: 0.04em;
}
.apply-note .sep { margin: 0 10px; opacity: 0.4; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  /* Centre the "PROTECTED BY ESCROW" badge when card stacks to column */
  .why-card-featured::before {
    top: 18px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  /* Push card content below the absolutely-positioned badge */
  .why-card-featured { padding-top: 62px; }
  .partner-why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .partner-strip-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  #navbar { padding: 10px 20px; }
  #navbar.scrolled { padding: 10px 20px; }

  section { padding: 80px 20px; }
  /* Override angled-divider sections whose ID specificity beats `section` */
  #how-it-works { padding-bottom: calc(80px + 48px); }
  #services { padding-top: calc(80px + 48px); padding-bottom: calc(80px + 48px); }
  #why     { padding-top: calc(80px + 48px); padding-bottom: calc(80px + 48px); }
  #loyalty { padding-top: calc(80px + 48px); }
  #app     { padding-bottom: calc(80px + 48px); }
  .service-card { min-height: 420px; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .partner-step { grid-template-columns: 1fr; gap: 16px; }
  .why-card { flex-direction: column; gap: 16px; }
  .app-store-buttons { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .partner-strip-inner { padding: 52px 24px; }

  /* Hero: top clears 63px fixed nav + breathing room; bottom clears 135px abs trust strip */
  .hero-content { padding: 110px 20px 155px; }

  /* Reduce base section padding further at small screens */
  section { padding: 60px 20px; }
  #how-it-works { padding-bottom: calc(60px + 48px); }
  #services { padding-top: calc(60px + 48px); padding-bottom: calc(60px + 48px); }
  #why     { padding-top: calc(60px + 48px); padding-bottom: calc(60px + 48px); }
  #loyalty { padding-top: calc(60px + 48px); }
  #app     { padding-bottom: calc(60px + 48px); }

  /* Apply note: stack items vertically on mobile so the · separators don't dangle mid-line */
  .apply-note {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    line-height: 1.5;
  }
  .apply-note .sep { display: none; }
  .apply-note .item { display: block; }

  /* Privacy consent: stack text and actions vertically so both buttons stay visible */
  .consent-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    gap: 12px;
  }
  .consent-msg {
    font-size: 0.78rem;
    min-width: 0;
    text-align: left;
  }
  .consent-actions {
    width: 100%;
    gap: 10px;
  }
  .consent-no,
  .consent-yes {
    flex: 1;
    padding: 11px 14px;
    text-align: center;
    white-space: nowrap;
  }
}

/* ── RESPONSIVE GRIDS (replaces inline grid-template-columns) ── */
.tier-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus-grid    { display: grid; grid-template-columns: 1fr 1fr;        gap: 18px; }
.vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.payouts-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 900px) {
  .tier-grid     { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr 1fr; }
  .payouts-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .bonus-grid    { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE ───────────────────────────────────────── */
#contact-hero { padding: 120px 28px 80px; }
@media (max-width: 640px) {
  #contact-hero { padding: 90px 20px 60px; }
}

.contact-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 16px 40px rgba(14,165,233,0.12);
  transform: translateY(-6px);
}
.contact-card .contact-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.1));
  border: 1px solid rgba(14,165,233,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-card .contact-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--sky);
}
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gray-900);
  margin: 0 0 10px;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0 0 16px;
}
.contact-card .contact-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.contact-card:hover .contact-link {
  gap: 10px;
}

/* ── CONTACT FORM ────────────────────────────────────────── */
.form-banner {
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 28px;
  border: 1px solid transparent;
}
.form-banner.success {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.25);
  color: var(--gray-900);
}
.form-banner.error {
  background: rgba(220,38,38,0.06);
  border-color: rgba(220,38,38,0.25);
  color: #991b1b;
}
.form-banner a {
  color: var(--sky);
  text-decoration: underline;
}

.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-900);
  letter-spacing: 0.01em;
}
.form-field label span[aria-hidden="true"] {
  color: var(--sky);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-body);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
}
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(220,38,38,0.5);
}
.form-hint {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: right;
  margin-top: -4px;
}
.captcha-field {
  background: rgba(14,165,233,0.05);
  border: 1px dashed rgba(14,165,233,0.25);
  border-radius: 14px;
  padding: 16px 18px;
}
.captcha-field input {
  max-width: 140px;
}
.consent-field {
  margin-top: 10px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
  line-height: 1.55;
}
.consent-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--sky);
  flex-shrink: 0;
}
.consent-label a {
  color: var(--sky);
  text-decoration: underline;
}
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  margin-top: 8px;
  width: auto;
  align-self: flex-start;
}
.form-fallback {
  margin: 18px 0 0;
  font-size: 0.82rem;
  color: var(--gray-500);
  text-align: center;
}
.form-fallback a {
  color: var(--sky);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
}

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  padding: 22px 32px;
  background: rgba(6, 15, 30, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(56,189,248,0.22);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}
/* Only the hero-embedded trust bar uses absolute positioning */
#hero .trust-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
}
/* Standalone trust strip (outside hero) uses solid bg — no image to blur behind it */
section.trust-strip {
  background: var(--gray-900);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(186,230,253,0.92);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 8px 32px;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  flex-shrink: 0;
}
.trust-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #fff;
}
.trust-divider {
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(56,189,248,0.3);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-strip { padding: 16px 16px; }
  .trust-strip-inner { gap: 4px; }
  .trust-item { padding: 6px 14px; font-size: 0.78rem; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  /* Force 2×2 grid so items don't wrap unevenly */
  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .trust-item {
    padding: 8px 6px;
    font-size: 0.7rem;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
    white-space: normal;
  }
}

/* ── TRADESAFE TRUST PANEL ───────────────────────────────── */
.tradesafe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.tradesafe-card {
  background: #fff;
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 24px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.tradesafe-card:hover {
  border-color: rgba(14,165,233,0.4);
  box-shadow: 0 16px 44px rgba(14,165,233,0.12);
  transform: translateY(-6px);
}
.tradesafe-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.1));
  border: 1px solid rgba(14,165,233,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
  margin: 0 auto;
}
.tradesafe-icon svg {
  width: 22px;
  height: 22px;
}
.tradesafe-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.3;
}
.tradesafe-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .tradesafe-grid { grid-template-columns: 1fr; }
}

/* ── REVENUE CALCULATOR ──────────────────────────────────── */
.calc-wrap {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  border-radius: 32px;
  padding: 48px;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(14,165,233,0.15);
}
.calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.calc-input label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.calc-input-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sky);
  font-variant-numeric: tabular-nums;
}
.calc-input input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(14,165,233,0.18);
  border-radius: 99px;
  outline: none;
  cursor: pointer;
}
.calc-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--sky);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(14,165,233,0.4);
  transition: transform 0.15s;
}
.calc-input input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc-input input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--sky);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(14,165,233,0.4);
}
.calc-input-hint {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.calc-result {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 24px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-result-emphasis {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(14,165,233,0.25);
}
.calc-result-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.calc-result-emphasis .calc-result-label { color: rgba(255,255,255,0.9); }
.calc-result-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}
.calc-result-emphasis .calc-result-value { color: #fff; }
.calc-result-sub {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.calc-result-emphasis .calc-result-sub { color: rgba(255,255,255,0.85); }
.calc-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(14,165,233,0.06);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.calc-note svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .calc-wrap { padding: 32px 22px; border-radius: 22px; }
  .calc-inputs { grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }
  .calc-results { grid-template-columns: 1fr; }
  .calc-result-value { font-size: 1.7rem; }
}

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 8px 28px rgba(14,165,233,0.08);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-item:hover summary {
  background: rgba(14,165,233,0.03);
}
.faq-body {
  padding: 4px 26px 22px;
  border-top: 1px solid var(--gray-100);
  margin-top: 4px;
  padding-top: 18px;
}
.faq-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-700);
}
.faq-body p + p { margin-top: 12px; }

@media (max-width: 640px) {
  .faq-item summary { padding: 18px 20px; font-size: 0.92rem; }
  .faq-body { padding: 14px 20px 20px; padding-top: 16px; }
}

/* ── AMENITIES GROUPED ───────────────────────────────────── */
.amenities-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.amenities-group {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  padding: 32px 30px;
}
.amenities-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}
.amenities-group-head svg {
  width: 22px;
  height: 22px;
  color: var(--sky);
  flex-shrink: 0;
}
.amenities-group-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gray-900);
  margin: 0;
  letter-spacing: -0.01em;
  flex: 1;
}
.amenities-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--sky);
  background: rgba(14,165,233,0.1);
  border-radius: 99px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}
.amenities-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 99px;
  padding: 10px 18px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.amenity-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.amenity-chip:hover {
  background: rgba(14,165,233,0.06);
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .amenities-groups { grid-template-columns: 1fr; gap: 16px; }
  .amenities-group { padding: 26px 22px; }
}

/* ── LEGAL PAGES (privacy, terms) ────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, #0c2240 0%, #0e7490 100%);
  padding: 140px 28px 80px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.legal-hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.legal-hero-sub {
  color: rgba(186,230,253,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 14px;
}
.legal-hero-meta {
  color: rgba(186,230,253,0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}
.legal-body {
  background: var(--white);
  padding: 96px 28px;
}
.legal-body .legal-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}
.legal-body .legal-h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gray-900);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.legal-body p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0 0 14px;
}
.legal-body p a, .legal-body li a {
  color: var(--sky);
  text-decoration: underline;
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.legal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
.legal-list li strong {
  color: var(--gray-900);
  font-weight: 700;
}
.legal-note {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-left: 3px solid var(--sky);
  border-radius: 6px;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.7;
}

.legal-crosslink {
  background: var(--off-white);
  padding: 80px 28px;
  border-top: 1px solid var(--gray-100);
}
.legal-crosslink-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.legal-crosslink-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  padding: 32px 30px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.legal-crosslink-card:hover {
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 14px 38px rgba(14,165,233,0.1);
  transform: translateY(-3px);
}
.legal-crosslink-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(6,182,212,0.1));
  border: 1px solid rgba(14,165,233,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
}
.legal-crosslink-icon svg { width: 22px; height: 22px; }
.legal-crosslink-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gray-900);
  margin: 4px 0 0;
}
.legal-crosslink-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.legal-crosslink-cta {
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sky);
}

@media (max-width: 768px) {
  .legal-hero { padding: 110px 20px 60px; }
  .legal-body { padding: 64px 22px; }
  .legal-body .legal-h2 { font-size: 1.1rem; margin-top: 30px; }
  .legal-crosslink { padding: 60px 22px; }
  .legal-crosslink-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE BADGE & AMENITIES HEADING ─────────────────── */
.badge-short { display: none; }
.badge-full  { display: inline; }

@media (max-width: 600px) {
  .badge-full  { display: none; }
  .badge-short { display: inline; }

  #partner-amenities .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
}

/* ── MOBILE TEXT CENTRING ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Section headers & intros */
  .section-label {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .section-title,
  .section-sub,
  .hero-subtitle {
    text-align: center;
  }

  /* Why-cards (index) */
  .why-card { text-align: center; }
  .why-card .why-icon-wrap { margin: 0 auto 16px; }

  /* Service cards (Find a Bay / We Come to You) */
  .service-card-body { text-align: center; }
  .service-card-badge { justify-content: center; }

  /* Partners — Why Partner cards */
  .partner-why-card { text-align: center; }
  .partner-why-card .partner-why-icon { margin: 0 auto 16px; }

  /* Partners — Steps */
  #partner-steps .reveal { text-align: center; }
  .partner-step { text-align: center; }
  .partner-step-num { margin: 0 auto 16px; }

  /* Partners — Features */
  .partner-feature-card { text-align: center; }
  .partner-feature-card .partner-feature-icon { margin: 0 auto 16px; }

  /* Partners — Wallet/Payouts */
  .wallet-step { text-align: center; }
  .wallet-step-icon { margin: 0 auto 12px; }

  /* Contact — channel cards */
  .contact-channel-card { text-align: center; }
  .contact-channel-card .contact-channel-icon { margin: 0 auto 16px; }

  /* Loyalty extras */
  .loyalty-extra { text-align: center; }
  .loyalty-extra-icon { margin: 0 auto 12px; }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============================================================
   CINEMATIC MOTION SYSTEM
   ============================================================ */

/* ── Ken Burns hero background ─────────────────────────────── */
@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0%,    0%);    }
  25%  { transform: scale(1.07) translate(-0.8%, 0.4%);  }
  50%  { transform: scale(1.13) translate(-1.2%, -0.8%); }
  75%  { transform: scale(1.07) translate(0.6%,  -0.4%); }
  100% { transform: scale(1.0)  translate(0%,    0%);    }
}
.hero-bg {
  animation: kenBurns 22s ease-in-out infinite;
  will-change: transform;
}

/* Override the static scale set inline — Ken Burns drives it now */
.hero-bg { transform: none; transition: none; }

/* ── Floating hero logo ─────────────────────────────────────── */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0)   scale(1); }
  50%       { transform: translateY(-14px) scale(1.03); }
}
.hero-logo {
  animation: heroFloat 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  animation-delay: 1.2s;
}

/* ── Parallax depth layers (driven by CSS var set by JS) ────── */
.parallax-bg {
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
}

/* ── Cinematic section dividers — angled clips ──────────────── */
/* Trust strip sits between hero and how-it-works — no top-overlap there */
#how-it-works {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 48px));
  padding-bottom: calc(110px + 48px);
}
#services {
  clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%);
  margin-top: -48px;
  padding-top: calc(110px + 48px);
  padding-bottom: calc(110px + 48px);
}
#why {
  clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%);
  margin-top: -48px;
  padding-top: calc(110px + 48px);
  padding-bottom: calc(110px + 48px);
}
#loyalty {
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  margin-top: -48px;
  padding-top: calc(110px + 48px);
}
#app {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  padding-bottom: calc(110px + 48px);
}

/* ── Mask-image section edge fades ─────────────────────────── */
/* (trust strip now uses a clean white design — no mask needed) */

/* ── Animated dark-section background glow ─────────────────── */
@keyframes glowBreathe {
  0%, 100% { opacity: 0.35; transform: scale(1);    }
  50%       { opacity: 0.6;  transform: scale(1.12); }
}
#how-it-works::before,
#loyalty::before,
#app::before,
#partner-hero::before,
#partner-features::before,
#partner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 40%, rgba(14,165,233,0.09) 0%, transparent 70%);
  pointer-events: none;
  animation: glowBreathe 7s ease-in-out infinite;
  z-index: 0;
}

/* Ensure section content stays above the glow layer */
#how-it-works .container,
#loyalty .container,
#app .container,
#partner-features .container,
#partner-cta .container { position: relative; z-index: 1; }

/* ── Enhanced scroll reveals ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(52px) scale(0.97);
  transition:
    opacity  0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

.reveal-left {
  opacity: 0;
  transform: translateX(-56px) scale(0.97);
  transition:
    opacity  0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible  { opacity: 1; transform: translateX(0) scale(1); }

.reveal-right {
  opacity: 0;
  transform: translateX(56px) scale(0.97);
  transition:
    opacity  0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0) scale(1); }

/* ── Card 3D tilt (applied by JS) ──────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
  will-change: transform;
}
.tilt-card:not(:hover) {
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Floating decorative orbs ───────────────────────────────── */
@keyframes orbDrift {
  0%   { transform: translate(0,   0)   scale(1);    }
  33%  { transform: translate(18px, -22px) scale(1.07); }
  66%  { transform: translate(-12px, 14px) scale(0.95); }
  100% { transform: translate(0,   0)   scale(1);    }
}
.cinema-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  animation: orbDrift var(--orb-dur, 14s) ease-in-out infinite;
  animation-delay: var(--orb-delay, 0s);
  opacity: var(--orb-opacity, 0.18);
  z-index: 0;
}

/* ── Staggered grid children (class added by JS) ────────────── */
.stagger-child { --stagger-i: 0; transition-delay: calc(var(--stagger-i) * 70ms) !important; }

/* ── Image pan on service cards ─────────────────────────────── */
.service-card-img {
  transition: transform 8s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(1.06) translate(0%, 0%);
}
.service-card:hover .service-card-img {
  transform: scale(1.14) translate(-1.5%, -1%);
}

/* ── Scroll progress line ───────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(14,165,233,0.7);
}

/* ── Cinematic text gradient on section titles (dark sections) ─ */
#how-it-works .section-title,
#loyalty .section-title,
#app .section-title {
  background: linear-gradient(135deg, #fff 0%, rgba(186,230,253,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Partner hero ken burns ─────────────────────────────────── */
#partner-hero-bg {
  animation: kenBurns 24s ease-in-out infinite;
  will-change: transform;
}

/* ── Contact hero ken burns ─────────────────────────────────── */
#contact-hero > div:first-child {
  animation: kenBurns 26s ease-in-out infinite;
  will-change: transform;
  transform-origin: center center;
}

/* ══════════════════════════════════════════════════════════════
   NEW FEATURES — v15
   ══════════════════════════════════════════════════════════════ */

/* ── APP SECTION — TWO-COLUMN LAYOUT ───────────────────────── */
.app-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
#app .app-section-inner { text-align: left; }
.app-content .section-label { margin: 0 0 16px; justify-content: flex-start; }
.app-content .section-title { margin-bottom: 16px; }
.app-content .section-sub { margin: 0; max-width: 480px; }
.app-content .app-store-buttons { justify-content: flex-start; margin-top: 32px; }

@media (max-width: 860px) {
  .app-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .phone-mockup { display: none !important; }
  .phone-mockup-mobile { display: flex !important; margin: 28px auto 8px; }
  #app { text-align: center; }
  .app-content .section-label { justify-content: center; margin: 0 auto 16px; }
  .app-content .section-sub { margin: 0 auto; }
  .app-content .app-store-buttons { justify-content: center; }
  .waitlist-row { max-width: 480px; margin: 0 auto; }
}

/* Mobile-only phone mockup — hide on desktop only.
   Use min-width to avoid !important arms-race with mobile @media block above. */
@media (min-width: 861px) {
  .phone-mockup-mobile { display: none !important; }
}

/* ── WAITLIST FORM ──────────────────────────────────────────── */
.waitlist-form { margin-top: 28px; }

.waitlist-row {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(56,189,248,0.3);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.25s;
}
.waitlist-row:focus-within { border-color: rgba(56,189,248,0.65); }

.waitlist-row input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  min-width: 0;
}
.waitlist-row input[type="email"]::placeholder { color: rgba(186,230,253,0.35); }

.waitlist-btn {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  border: none;
  color: var(--white);
  padding: 14px 22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
}
.waitlist-btn:hover { opacity: 0.88; filter: brightness(1.08); }

.waitlist-note {
  font-size: 0.72rem;
  color: rgba(186,230,253,0.42);
  margin: 10px 0 0;
}

.waitlist-banner {
  margin-bottom: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.waitlist-banner.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
}
.waitlist-banner.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
}

/* ── PHONE MOCKUP ───────────────────────────────────────────── */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(14,165,233,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.phone-frame {
  width: 196px;
  height: 406px;
  background: linear-gradient(160deg, #1c1c2e, #0e0e1c);
  border-radius: 42px;
  padding: 13px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.09),
    0 0 0 4px rgba(255,255,255,0.04),
    0 40px 90px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

.phone-notch {
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 20px;
  background: #0a0a14;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(175deg, #0a1628 0%, #0d2040 55%, #060e1a 100%);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pm-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 14px 6px;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pm-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 8px;
}
.pm-logo-sm { width: 20px; height: 20px; border-radius: 5px; }
.pm-header-text {
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-head);
  letter-spacing: 0.03em;
}
.pm-location {
  margin-left: auto;
  font-size: 0.48rem;
  color: rgba(56,189,248,0.9);
  font-weight: 600;
}

.pm-map {
  flex: 1;
  background: linear-gradient(150deg, #0d2438, #102d4a 45%, #0a1e30);
  position: relative;
  overflow: hidden;
  min-height: 110px;
}
.pm-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 32px);
}
.pm-map::after {
  content: '📍';
  position: absolute;
  top: 34%; left: 42%;
  font-size: 20px;
  filter: drop-shadow(0 2px 10px rgba(14,165,233,0.7));
  animation: mapPin 3s ease-in-out infinite;
}
@keyframes mapPin {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.pm-card {
  background: rgba(10,20,40,0.92);
  border-top: 1px solid rgba(56,189,248,0.15);
  border-radius: 0 0 30px 30px;
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pm-wash-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-wash-name {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
}
.pm-wash-price {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--cyan);
  font-family: var(--font-head);
}
.pm-slots {
  display: flex;
  gap: 4px;
}
.pm-slot {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  padding: 5px 2px;
  text-align: center;
  font-size: 0.48rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.pm-slot-active {
  background: rgba(14,165,233,0.22);
  border-color: rgba(14,165,233,0.55);
  color: var(--sky-light);
}
.pm-cta-btn {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  border-radius: 10px;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  font-family: var(--font-head);
  padding: 9px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── REAL SCREENSHOT PHONE FRAME ───────────────────────────── */
.phone-frame-real {
  width: 258px;
  height: 524px;
  padding: 16px;
}
.phone-frame-real .phone-notch {
  width: 80px;
  height: 24px;
  top: 16px;
}
.phone-screen-real {
  background: #e8f4fc;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}
.pm-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 30px;
}

/* ── PRIVACY CONSENT BAR ────────────────────────────────────── */
.consent-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: rgba(6,15,30,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(56,189,248,0.14);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}
.consent-bar.visible { transform: translateY(0); }

.consent-msg {
  flex: 1;
  min-width: 220px;
  font-size: 0.82rem;
  color: rgba(186,230,253,0.78);
  line-height: 1.55;
  margin: 0;
}
.consent-msg a { color: var(--sky-light); text-decoration: underline; }

.consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.consent-no {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(186,230,253,0.65);
  padding: 9px 20px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.consent-no:hover { border-color: rgba(255,255,255,0.38); color: rgba(186,230,253,0.9); }
.consent-yes {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  border: none;
  color: var(--white);
  padding: 9px 22px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: var(--font-head);
  cursor: pointer;
  transition: opacity 0.2s;
}
.consent-yes:hover { opacity: 0.88; }

/* ── WHATSAPP FLOATING BUTTON ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 997;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.25);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
/* Nudge up when consent bar is visible */
body.consent-shown .whatsapp-float { bottom: 80px; }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 90;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(14,165,233,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(14,165,233,0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 20px rgba(14,165,233,0.35);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--sky-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(14,165,233,0.5);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ── 404 PAGE ───────────────────────────────────────────────── */
.error-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 28px 80px;
}
.error-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.error-code {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  opacity: 0.9;
}
.error-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}
.error-hero p {
  color: rgba(186,230,253,0.72);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── PAIN POINTS (SOUND FAMILIAR?) ─────────────────────────── */
#partner-pain {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}
#partner-pain::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(239,68,68,0.07) 0%, transparent 65%);
  pointer-events: none;
}
#partner-pain .section-label { color: rgba(239,68,68,0.75); }
#partner-pain .section-title { color: #fff; }
#partner-pain .section-sub { color: rgba(255,255,255,0.45); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.pain-card {
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.3s, background 0.3s;
}
.pain-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(239,68,68,0.18);
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pain-icon svg { width: 20px; height: 20px; color: #f87171; }
.pain-card h4 {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.72;
  margin: 0;
}
.pain-resolve {
  margin-top: 44px;
  text-align: center;
}
.pain-resolve strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sky);
  margin-bottom: 8px;
}
.pain-resolve span {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.38);
}
@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ── OWNER REACTIONS ────────────────────────────────────────── */
.reactions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.reaction-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.reaction-card:hover {
  border-color: rgba(14,165,233,0.22);
  box-shadow: 0 16px 50px rgba(14,165,233,0.08);
  transform: translateY(-4px);
}
.reaction-quote-mark {
  font-size: 3.4rem;
  line-height: 0.75;
  color: var(--sky);
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 18px;
  opacity: 0.55;
  display: block;
  user-select: none;
}
.reaction-text {
  font-size: 0.96rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}
.reaction-attribution {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .reactions-grid { grid-template-columns: 1fr; }
}

/* ── CITY LANDING PAGES ─────────────────────────────────────── */
.city-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
  overflow: hidden;
  padding: 140px 24px 80px;
  text-align: center;
}
.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 35%, rgba(14,165,233,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.city-hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
}
.city-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.city-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto 40px;
}
.city-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.city-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.city-how-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.city-how-card:hover {
  border-color: rgba(14,165,233,0.2);
  box-shadow: 0 12px 40px rgba(14,165,233,0.07);
  transform: translateY(-4px);
}
.city-how-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(14,165,233,0.3);
}
.city-how-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.city-how-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}
.city-partner-strip {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0c1a2e 100%);
  position: relative;
  overflow: hidden;
}
.city-partner-strip::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.city-partner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.city-partner-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.city-partner-inner > div > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.city-partner-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.city-partner-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
}
.city-partner-perks li svg {
  width: 18px; height: 18px;
  color: var(--sky);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .city-how-grid { grid-template-columns: 1fr; gap: 20px; }
  .city-partner-inner { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 600px) {
  .city-hero { min-height: 60vh; padding: 120px 20px 60px; }
  .city-hero-actions { flex-direction: column; align-items: center; }
}

/* ── CONTACT CARDS GRID — responsive ── */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
}

/* ── SMS NOTE CARD — align icon top on all screens ── */
.sms-note {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(6,182,212,0.06));
  border: 1px solid rgba(14,165,233,0.12);
  border-radius: 18px;
  padding: 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}


/* ─────────────────────────────────────────────────────────────
 * Mobile UX polish — touch targets, hero wrap, contrast,
 * navbar auto-hide, cyan-decoration mute (v32+)
 * ───────────────────────────────────────────────────────────── */

/* 1️⃣ Touch targets — WCAG 2.5.5 / Apple HIG (44×44 minimum) */
@media (max-width: 860px) {
  .nav-toggle,
  .mobile-close {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #navbar .nav-logo {
    min-height: 44px;
    padding: 4px 0;
  }
  .mobile-menu a {
    min-height: 48px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-links a,
  .footer-bottom a {
    padding: 12px 0;
    display: inline-block;
    line-height: 1.4;
    min-height: 44px;
  }
  .footer-logo {
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .footer-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* 2️⃣ Hero H1 — tighter wrap on small viewports */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
    line-height: 1.08 !important;
  }
}
.hero-title,
.section-title,
.legal-hero-title {
  text-wrap: balance;
}

/* 4️⃣ Auto-hide navbar on scroll-down (revealed on scroll-up) */
#navbar {
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s,
              padding 0.3s,
              box-shadow 0.3s;
}
#navbar.nav-hidden {
  transform: translateY(-120%);
}

/* 3️⃣ Cyan decoration mute — keep cyan emphatic for CTAs/links/numbered steps,
 *    soften the decorative cyan that bleeds into card borders & icon shells.
 *    Targeted overrides — does NOT touch primary buttons, gradients, links. */
.feature-card { border-color: rgba(14,165,233,0.08); }
.tradesafe-card { border-color: rgba(14,165,233,0.12); }
.partner-why-card { border-color: rgba(14,165,233,0.10); }
.feature-icon,
.partner-why-icon,
.tradesafe-icon { background: rgba(14,165,233,0.06); }

