/* ===== LOKATOR — DESIGN SYSTEM ===== */
/* Nigerian Flag Inspired: Green #006B3F, White #FFFFFF, Gold #D4AF37 */

:root {
  --green: #006B3F;
  --green-dark: #004D2C;
  --green-light: #E8F5E9;
  --green-pale: #F0FFF4;
  --gold: #D4AF37;
  --gold-light: #F5E6A3;
  --gold-dark: #B8960C;
  --white: #FFFFFF;
  --bg: #FAFCFA;
  --muted: #F1F5F1;
  --fg: #0D1B0F;
  --fg-muted: #4A5E4C;
  --border: #D6E4D8;
  --border-light: #E8F0E9;
  --card: #FFFFFF;
  --danger: #DC2626;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 107, 63, 0.06), 0 1px 2px rgba(0, 107, 63, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 107, 63, 0.08), 0 2px 6px rgba(0, 107, 63, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 107, 63, 0.12), 0 4px 12px rgba(0, 107, 63, 0.06);
  --shadow-xl: 0 20px 60px rgba(0, 107, 63, 0.16), 0 8px 20px rgba(0, 107, 63, 0.08);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Emil Kowalski Design Engineering Motion Tokens */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --transition: 160ms var(--ease-out);
  --transition-fast: 120ms var(--ease-out);
  --transition-smooth: 220ms var(--ease-out);
}

/* ===== DARK THEME TOKENS: Deep Slate & Obsidian (Aligned via /grill-me) ===== */
[data-theme="dark"] {
  --bg: #0B0F17;
  --card: #111827;
  --fg: #F8FAFC;
  --fg-muted: #94A3B8;
  --muted: #1E293B;
  --border: #1E293B;
  --border-light: rgba(255, 255, 255, 0.08);
  --green: #00A859;
  --green-dark: #008043;
  --green-light: rgba(0, 168, 89, 0.15);
  --green-pale: #062314;
  --gold: #F59E0B;
  --gold-light: rgba(245, 158, 11, 0.15);
  --gold-dark: #D97706;
  --white: #111827;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.65);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Theme Toggle Button Component (3-Way: Light / Dark / System) */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--muted, #F1F5F1);
  border: 1px solid var(--border, #D6E4D8);
  color: var(--fg, #0D1B0F);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.theme-toggle-btn:hover {
  background: var(--border-light, #E8F0E9);
  border-color: var(--green, #00A859);
  transform: translateY(-1px);
}

.theme-toggle-btn .theme-icon {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

.theme-toggle-btn:hover .theme-icon {
  transform: rotate(15deg) scale(1.1);
}

[data-theme="dark"] .theme-toggle-btn {
  background: #1E293B;
  border-color: #334155;
  color: #F8FAFC;
}

[data-theme="dark"] .theme-toggle-btn:hover {
  background: #2D3B4F;
  border-color: #00A859;
}

/* Universal Callout Banners: Dual-Mode High Contrast (WCAG AAA) */
.callout-green {
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #166534;
  line-height: 1.5;
}
.callout-green strong, .callout-green .callout-title {
  color: #15803D;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

[data-theme="dark"] .callout-green {
  background: #062314;
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #D1FAE5;
}
[data-theme="dark"] .callout-green strong, [data-theme="dark"] .callout-green .callout-title {
  color: #34D399;
}

.callout-amber {
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #92400E;
  line-height: 1.5;
}
.callout-amber strong, .callout-amber .callout-title {
  color: #B45309;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

[data-theme="dark"] .callout-amber {
  background: #261805;
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #FEF3C7;
}
[data-theme="dark"] .callout-amber strong, [data-theme="dark"] .callout-amber .callout-title {
  color: #FBBF24;
}

.callout-blue {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #1E40AF;
  line-height: 1.5;
}
.callout-blue strong, .callout-blue .callout-title {
  color: #1E3A8A;
  font-weight: 800;
}

[data-theme="dark"] .callout-blue {
  background: #0B1E3B;
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #DBEAFE;
}
[data-theme="dark"] .callout-blue strong, [data-theme="dark"] .callout-blue .callout-title {
  color: #60A5FA;
}

.callout-red {
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: #991B1B;
  line-height: 1.5;
}
.callout-red strong, .callout-red .callout-title {
  color: #B91C1C;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

[data-theme="dark"] .callout-red {
  background: #2D0E0E;
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #FEE2E2;
}
[data-theme="dark"] .callout-red strong, [data-theme="dark"] .callout-red .callout-title {
  color: #F87171;
}


/* Dark Mode Global Overrides for Forms & Containers */
[data-theme="dark"] .navbar {
  background: rgba(11, 15, 23, 0.94);
  border-bottom-color: #1E293B;
}

[data-theme="dark"] .reg-hero {
  background: radial-gradient(circle at 10% 20%, rgba(0, 168, 89, 0.12) 0%, rgba(11, 15, 23, 0) 60%), #0B0F17;
}

[data-theme="dark"] .reg-form-card {
  background: #111827;
  border-color: #1E293B;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .onboarding-stepper {
  background: #0F172A;
  border-color: #1E293B;
}

[data-theme="dark"] .step-indicator {
  color: #94A3B8;
}

[data-theme="dark"] .step-badge {
  background: #1E293B;
  border-color: #334155;
  color: #94A3B8;
}

[data-theme="dark"] .step-indicator.is-active .step-badge {
  background: #00A859;
  border-color: #00A859;
  color: #FFFFFF;
}

[data-theme="dark"] .step-separator {
  background: #1E293B;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="password"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: #1E293B;
  border-color: #334155;
  color: #F8FAFC;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: #64748B;
}

[data-theme="dark"] .preview-profile-card {
  background: #111827;
  border-color: #1E293B;
  border-top-color: #00A859;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .preview-provider-name strong,
[data-theme="dark"] .preview-provider-name span:first-child {
  color: #F8FAFC;
}

[data-theme="dark"] .preview-bio-snippet {
  background: #0F172A;
  border-color: #1E293B;
  color: #CBD5E1;
}

[data-theme="dark"] .completeness-meter-wrap {
  background: #0F172A;
  border-color: #1E293B;
}

[data-theme="dark"] .completeness-chip.is-pending {
  background: #1E293B;
  border-color: #334155;
  color: #94A3B8;
}

[data-theme="dark"] .btn-outline {
  border-color: #334155;
  color: #F8FAFC;
}

[data-theme="dark"] .btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #00A859;
}

[data-theme="dark"] .badge-pill {
  background: rgba(0, 168, 89, 0.18);
  color: #34D399;
  border: 1px solid rgba(0, 168, 89, 0.35);
}

[data-theme="dark"] .perk svg {
  stroke: #34D399;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.marketplace-browse,
.top-providers {
  overflow-x: clip;
  max-width: 100vw;
}

.section-pad {
  padding: 96px 0;
}

.bg-muted {
  background: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.btn:active {
  transform: scale(0.97) !important;
  transition-duration: 80ms !important;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-1px);
  }
}

.btn-gold {
  background: var(--gold);
  color: var(--fg);
  border-color: var(--gold);
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  .btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
  }
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.badge-pill {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.section-header p {
  font-size: 17px;
  color: #CBD5E1;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 252, 250, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

[data-theme="dark"] .navbar {
  background: rgba(11, 15, 23, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover .brand-logo-img {
  transform: scale(1.02);
  opacity: 0.95;
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 32px;
  }
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--green);
  background: var(--green-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO VERTICAL VIDEO SCROLL (DOCUMENT-DRIVEN PINNED ENGINE) ===== */
.hero-scroll-wrapper {
  position: relative;
  width: 100%;
  height: 750vh; /* Dedicated vertical space for all 9 scenes on desktop */
  background: #060D07;
  touch-action: pan-y;
}

/* Sticky Stage pinned at top of viewport */
.hero-stage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: #040905;
  touch-action: pan-y;
}

/* 9 Vertical Snap Anchors for Native Momentum Detents */
.hero-scroll-anchors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-snap-anchor {
  height: 72.2vh;
  width: 100%;
  scroll-snap-align: start;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-scroll-wrapper {
    height: 550vh;
    height: 550svh; /* 550svh provides comfortable ~50svh per scene so all 9 scenes are cleanly explored without jumping */
    scroll-snap-type: y proximity;
  }

  .hero-snap-anchor {
    height: 50svh;
  }
}

/* Timeline navigation overlay positioned inside pinned stage */
.hero-timeline-sticky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
}

/* Individual hero video slide (stacked absolute in pinned stage) */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: #040905;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.15s ease-out;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Full-bleed background video within each slide */
.hero-slide > .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.05) brightness(1.0);
  opacity: 0.8;
  transform: scale(0.985);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  z-index: 1;
}

.hero-slide.is-active > .hero-video {
  opacity: 0.96;
  transform: scale(1);
}

/* Contrast scrim overlay per slide — strengthened right side for mobile readability */
.hero-slide > .hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(4, 12, 6, 0.82) 0%,
      rgba(4, 12, 6, 0.58) 42%,
      rgba(4, 12, 6, 0.32) 75%,
      rgba(4, 12, 6, 0.18) 100%),
    linear-gradient(180deg,
      rgba(4, 12, 6, 0.50) 0%,
      rgba(4, 12, 6, 0.12) 25%,
      rgba(4, 12, 6, 0.12) 70%,
      rgba(4, 12, 6, 0.65) 100%);
}

/* Ambient glow per slide */
.hero-slide > .hero-ambient-glow {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  transform: translateZ(0);
  opacity: 0.65;
  transition: opacity 0.65s ease;
  z-index: 3;
}

.hero-slide.is-active > .hero-ambient-glow {
  opacity: 1;
}

.hero-slide[data-index="0"] > .hero-ambient-glow,
.hero-slide[data-index="2"] > .hero-ambient-glow,
.hero-slide[data-index="4"] > .hero-ambient-glow,
.hero-slide[data-index="6"] > .hero-ambient-glow,
.hero-slide[data-index="8"] > .hero-ambient-glow {
  background: radial-gradient(circle, rgba(0, 168, 89, 0.16) 0%, rgba(0, 107, 63, 0.22) 50%, transparent 75%);
}

.hero-slide[data-index="1"] > .hero-ambient-glow,
.hero-slide[data-index="3"] > .hero-ambient-glow,
.hero-slide[data-index="5"] > .hero-ambient-glow,
.hero-slide[data-index="7"] > .hero-ambient-glow {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 107, 63, 0.20) 50%, transparent 75%);
}

/* Foreground content container within each slide */
.hero-slide-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 84px 0 24px;
}

/* Glassmorphism story card with 1% opacity background, ultra-clear visibility to see videos clearly */
.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 490px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(82, 229, 140, 0.45);
  border-radius: 20px;
  padding: 24px 26px;
  touch-action: pan-y;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(0, 107, 63, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.story-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.story-slide-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  letter-spacing: 0.5px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.hero-slide.is-active .story-card {
  opacity: 1;
  transform: translateY(0);
}

/* Master Stage Typography */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  background: rgba(0, 107, 63, 0.7);
  border: 1px solid rgba(82, 229, 140, 0.75);
  color: #34D399;
  border-radius: var(--radius-full);
  padding: 5px 13px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-size: clamp(22px, 2.3vw, 29px);
  font-weight: 800;
  line-height: 1.22;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.highlight {
  color: #34D399;
  position: relative;
  background: linear-gradient(180deg, transparent 60%, rgba(212, 175, 55, 0.3) 60%);
  padding: 0 3px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-sub {
  font-size: 14.5px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.55;
  max-width: 440px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-cta-group .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.hero-cta-group .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-cta-group .btn-outline:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Hero Search Card & Input System (Phase 10.17 Polish) */
.search-card {
  background: rgba(10, 14, 23, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 14px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  margin-top: 14px;
  max-width: 580px;
}

.search-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 12px;
  transition: all 0.2s ease;
  position: relative;
}

.search-field:focus-within {
  border-color: #10B981;
  box-shadow: 0 0 0 2px rgba(82, 229, 140, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.search-field .field-icon {
  color: #34D399;
  flex-shrink: 0;
}

.search-field input,
.search-field input[type="text"],
.hero-scroll-wrapper .search-field input,
.hero-scroll-wrapper .search-field input[type="text"],
[data-theme="dark"] .search-field input,
[data-theme="dark"] .search-field input[type="text"],
[data-theme="dark"] .hero-scroll-wrapper .search-field input,
[data-theme="dark"] .hero-scroll-wrapper .search-field input[type="text"] {
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  font-size: 13.5px;
  font-weight: 500;
  width: 100%;
  outline: none !important;
  box-shadow: none !important;
}

.search-field input::placeholder,
.search-field input[type="text"]::placeholder,
.hero-scroll-wrapper .search-field input::placeholder,
[data-theme="dark"] .search-field input::placeholder,
[data-theme="dark"] .hero-scroll-wrapper .search-field input::placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
  font-weight: 400;
}

.hero-dropdown,
.search-suggestions-dropdown.hero-dropdown,
.hero-suggest-wrap .search-suggestions-dropdown {
  top: calc(100% + 6px);
  background: #0D131F !important;
  border: 1.5px solid rgba(82, 229, 140, 0.4) !important;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99999;
  border-radius: 12px;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
  display: none;
  padding: 6px 0;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .hero-dropdown,
[data-theme="dark"] .search-suggestions-dropdown.hero-dropdown,
[data-theme="dark"] .hero-suggest-wrap .search-suggestions-dropdown {
  background: #0A0F1D !important;
  border-color: rgba(82, 229, 140, 0.5) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.hero-dropdown .suggestion-item,
.search-suggestions-dropdown.hero-dropdown .suggestion-item,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #F8FAFC !important;
  cursor: pointer;
  transition: all 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.4;
  background: transparent;
}

.hero-dropdown .suggestion-item:last-child,
.search-suggestions-dropdown.hero-dropdown .suggestion-item:last-child,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item:last-child {
  border-bottom: none;
}

.hero-dropdown .suggestion-item span,
.search-suggestions-dropdown.hero-dropdown .suggestion-item span,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item span {
  color: #F8FAFC !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.hero-dropdown .suggestion-item:hover,
.hero-dropdown .suggestion-item.is-focused,
.hero-dropdown .suggestion-item.active,
.search-suggestions-dropdown.hero-dropdown .suggestion-item:hover,
.search-suggestions-dropdown.hero-dropdown .suggestion-item.is-focused,
.search-suggestions-dropdown.hero-dropdown .suggestion-item.active,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item:hover,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item.is-focused,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item.active,
[data-theme="dark"] .hero-dropdown .suggestion-item:hover,
[data-theme="dark"] .hero-dropdown .suggestion-item.is-focused,
[data-theme="dark"] .hero-dropdown .suggestion-item.active {
  background: rgba(82, 229, 140, 0.18) !important;
  color: #34D399 !important;
  padding-left: 20px;
}

.hero-dropdown .suggestion-item:hover span,
.hero-dropdown .suggestion-item.is-focused span,
.hero-dropdown .suggestion-item.active span,
.search-suggestions-dropdown.hero-dropdown .suggestion-item:hover span,
.search-suggestions-dropdown.hero-dropdown .suggestion-item.is-focused span,
.search-suggestions-dropdown.hero-dropdown .suggestion-item.active span,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item:hover span,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item.is-focused span,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-item.active span,
[data-theme="dark"] .hero-dropdown .suggestion-item:hover span,
[data-theme="dark"] .hero-dropdown .suggestion-item.is-focused span,
[data-theme="dark"] .hero-dropdown .suggestion-item.active span {
  color: #34D399 !important;
}

.hero-dropdown .suggestion-meta,
.search-suggestions-dropdown.hero-dropdown .suggestion-meta,
.hero-suggest-wrap .search-suggestions-dropdown .suggestion-meta {
  color: #94A3B8 !important;
  font-size: 12px;
  font-weight: 500;
}

.gps-btn {
  background: rgba(0, 107, 63, 0.4);
  border: 1px solid rgba(82, 229, 140, 0.4);
  color: #34D399;
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.gps-btn:hover, .gps-btn.is-loading {
  background: #006B3F;
  color: #FFF;
  transform: scale(1.05);
}

.search-card .search-btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.quick-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 11.5px;
}

.quick-tags .qt-label {
  color: #94A3B8;
  font-weight: 600;
}

.quick-tags .qtag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  padding: 3px 8px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.quick-tags .qtag:hover {
  background: rgba(0, 107, 63, 0.4);
  border-color: #10B981;
  color: #34D399;
}

/* Story Scenes Common Styling */
.scene-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  background: rgba(212, 175, 55, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: #FDE68A;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.scene-badge-icon {
  font-size: 13px;
}

.scene-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.scene-sub {
  font-size: 14.5px;
  font-weight: 600;
  color: #34D399;
  letter-spacing: -0.1px;
}

.scene-desc {
  font-size: 13.5px;
  font-weight: 450;
  color: #F1F5F9;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1px;
}

.stag {
  background: rgba(6, 18, 10, 0.75);
  border: 1px solid rgba(82, 229, 140, 0.25);
  color: #F0FDF4;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 500;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.scene-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px;
  background: rgba(4, 14, 7, 0.8);
  border: 1.5px solid rgba(82, 229, 140, 0.35);
  border-radius: var(--radius-sm);
  width: fit-content;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.sm-item {
  display: flex;
  flex-direction: column;
}

.sm-item strong {
  font-size: 13px;
  color: #FBBF24;
  font-weight: 700;
}

.sm-item span {
  font-size: 11.5px;
  font-weight: 500;
  color: #E2E8F0;
}

.sm-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.18);
}

.scene-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.scene-actions .btn {
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
}

.scene-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.scene-actions .btn-outline:hover {
  background: var(--green);
  border-color: var(--green);
}

.call-quick-btn {
  background: rgba(0, 107, 63, 0.4) !important;
  border-color: rgba(82, 229, 140, 0.5) !important;
  color: #34D399 !important;
}

.call-quick-btn:hover {
  background: var(--green) !important;
  color: var(--white) !important;
}

.wa-quick-btn {
  background: rgba(37, 211, 102, 0.18) !important;
  border-color: rgba(37, 211, 102, 0.45) !important;
  color: #4ADE80 !important;
}

.wa-quick-btn:hover {
  background: #25D366 !important;
  color: #071009 !important;
}

/* Finale Categories Pills */
.finale-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 440px;
}

.f-pill {
  background: rgba(8, 20, 11, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #F8FAFC;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.f-pill:hover {
  background: var(--green);
  border-color: #10B981;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Location Search Card on Hero */
.hero-scroll-wrapper .search-card {
  background: rgba(6, 18, 10, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-scroll-wrapper .search-row {
  background: rgba(4, 12, 6, 0.68);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
}

.hero-scroll-wrapper .search-row:focus-within {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(82, 229, 140, 0.2);
}

.hero-scroll-wrapper .search-field input {
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 400;
  padding: 8px 6px;
}

.hero-scroll-wrapper .search-field input::placeholder {
  color: #859B89;
}

.hero-scroll-wrapper .search-field .field-icon {
  color: #8CA390;
  width: 16px;
  height: 16px;
}

.hero-scroll-wrapper .search-divider {
  background: rgba(255, 255, 255, 0.12);
}

.hero-scroll-wrapper .gps-btn {
  background: rgba(0, 107, 63, 0.45);
  color: #34D399;
  padding: 6px;
}

.hero-scroll-wrapper .gps-btn:hover {
  background: var(--green);
  color: var(--white);
}

.hero-scroll-wrapper .search-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

.hero-scroll-wrapper .quick-tags {
  margin-top: 8px;
  gap: 4px;
}

.hero-scroll-wrapper .qt-label {
  color: #E2E8F0;
  font-size: 11.5px;
  font-weight: 600;
}

.hero-scroll-wrapper .qtag {
  background: rgba(255, 255, 255, 0.1);
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 3px 9px;
  font-size: 11.5px;
  font-weight: 500;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-scroll-wrapper .qtag:hover {
  background: var(--green);
  color: #FFFFFF;
  border-color: #10B981;
}

.hero-scroll-wrapper .hero-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 1px;
}

.hero-scroll-wrapper .hstat strong {
  color: #34D399;
  font-size: 15px;
  font-weight: 700;
}

.hero-scroll-wrapper .hstat span {
  color: #E2E8F0;
  font-size: 11.5px;
  font-weight: 500;
}

.hero-scroll-wrapper .hstat-sep {
  background: rgba(255, 255, 255, 0.18);
  height: 20px;
}

.scroll-prompt-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-top: 1px;
  opacity: 0.9;
  transition: opacity var(--transition);
  cursor: pointer;
}

.scroll-prompt-indicator:hover {
  opacity: 1;
}

/* ==================================================
   VERTICAL HERO VIDEO SIDE SCENE INDICATOR
   (Removed from side viewport to ensure clean view without affecting scrolling experience)
   ================================================== */
.hero-timeline-nav,
.hero-timeline-sticky {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

/* Vertical Steps Track Container */
.timeline-steps {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 2px;
  background: rgba(6, 18, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full, 24px);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(0, 107, 63, 0.2);
}

/* Individual Indicator Button (compact sizing clear of content) */
.t-step {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--radius-full);
  transition: transform 0.25s ease;
}

/* Accessible keyboard focus ring */
.t-step:focus-visible {
  border-radius: var(--radius-full);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Visible Indicator Dot */
.t-indicator {
  position: relative;
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.t-step:hover .t-indicator {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.4);
}

/* Active State: Elongated glowing emerald/gold pill with subtle video playback progress */
.t-step.active .t-indicator {
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: #00A859;
  background-image: linear-gradient(180deg, #34D399 var(--video-progress, 100%), rgba(255,255,255,0.3) var(--video-progress, 100%));
  box-shadow: 0 0 10px rgba(82, 229, 140, 0.95),
              0 0 4px rgba(212, 175, 55, 0.6);
  transform: scale(1);
}

/* PROVIDER CARD (Downstream retained) */
.provider-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
  transition: all var(--transition);
  flex-wrap: wrap;
}

.provider-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  background: var(--green-pale);
}

.prov-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.prov-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.av1 {
  background: linear-gradient(135deg, #006B3F, #059669);
}

.av2 {
  background: linear-gradient(135deg, #D4AF37, #F59E0B);
}

.av3 {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.prov-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.prov-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.prov-name-row strong {
  font-size: 14px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #D1FAE5;
  color: #065F46;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

.verified-badge.sm {
  font-size: 11px;
  padding: 2px 8px;
}

.prov-trade {
  font-size: 13px;
  color: var(--fg-muted);
}

.prov-rating {
  font-size: 12px;
  color: var(--gold-dark);
}

.prov-rating span {
  color: var(--fg-muted);
}

.prov-dist {
  font-size: 12px;
  color: var(--fg-muted);
}

.prov-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.action-btn.sm {
  padding: 6px 12px;
  font-size: 12px;
}

.call-btn {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(0, 107, 63, 0.15);
}

.call-btn:hover {
  background: var(--green);
  color: var(--white);
}

.wa-btn {
  background: #DCF8C6;
  color: #075E54;
  border: 1px solid rgba(7, 94, 84, 0.15);
}

.wa-btn:hover {
  background: #25D366;
  color: var(--white);
}

.profile-btn {
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--fg);
}

.profile-btn:hover {
  background: var(--border-light);
  color: var(--fg);
}

.tp-card-link {
  text-decoration: none;
  color: inherit;
}

/* ===== HOW IT WORKS ===== */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  color: var(--green);
  margin: 0 auto 16px;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.55;
  font-weight: 450;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== CATEGORIES ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition), box-shadow var(--transition), color var(--transition);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}

.cat-item:active {
  transform: scale(0.97) !important;
  transition-duration: 80ms !important;
}

@media (hover: hover) and (pointer: fine) {
  .cat-item:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--green);
  }
}

.cat-item:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.2);
  outline: none;
}

.cat-icon-svg,
.cat-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  color: var(--green);
  transition: transform var(--transition-fast), background-color var(--transition), color var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .cat-item:hover .cat-icon-svg,
  .cat-item:hover .cat-emoji {
    background: var(--green);
    color: #FFFFFF;
    transform: scale(1.05);
  }
}

.cat-item-more {
  border-style: dashed;
  background: var(--green-pale);
}

/* ===== WHY SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid var(--border-light);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.55;
  font-weight: 450;
}

/* ===== TOP PROVIDERS ===== */
.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 2px solid var(--border-light);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.tp-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tp-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFFEF5, #FEF9E7);
}

.tp-featured:hover {
  border-color: var(--gold-dark);
}

.tp-featured-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--fg);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 12px;
  border-radius: var(--radius-full);
}

.tp-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.tpa-1 {
  background: linear-gradient(135deg, #006B3F, #059669);
}

.tpa-2 {
  background: linear-gradient(135deg, #D4AF37, #F59E0B);
}

.tpa-3 {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.tp-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tp-details strong {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}

.tp-trade {
  font-size: 14px;
  color: #047857;
  font-weight: 600;
}

.tp-rating {
  font-size: 13px;
  color: var(--gold-dark);
}

.tp-rating span {
  color: #475569;
  font-weight: 500;
}

.tp-loc {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}

.tp-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* ===== TESTIMONIALS (HORIZONTAL CONTINUOUS MOTION TRACK) ===== */
.testimonials {
  overflow: hidden;
  position: relative;
  background: #060F09;
  color: #FFFFFF;
  border-top: 1px solid rgba(82, 229, 140, 0.15);
  border-bottom: 1px solid rgba(82, 229, 140, 0.15);
}

/* Explicit high contrast for testimonials section header */
.testimonials .section-header h2 {
  color: #FFFFFF;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.testimonials .section-header p {
  color: #E2E8F0;
  font-size: 17px;
  font-weight: 500;
}

.testimonials .badge-pill {
  background: rgba(0, 107, 63, 0.45);
  border: 1px solid #10B981;
  color: #34D399;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.testimonials {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.testi-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 16px 0 28px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testi-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: scrollTestimonials 30s linear infinite;
  animation-direction: normal;
}

.testi-group {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-right: 24px; /* Matches gap exactly so inter-group spacing equals inter-card gap */
  flex-shrink: 0;
}

@keyframes scrollTestimonials {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.testi-card {
  width: 380px;
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  background: #0E1E14;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid rgba(82, 229, 140, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  cursor: default;
}

.testi-card:hover {
  border-color: #10B981;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(82, 229, 140, 0.25);
  transform: translateY(-4px);
}

.testi-hl {
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, #132418, #182D20);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.15);
}

.testi-stars {
  color: #FBBF24;
  font-size: 17px;
  letter-spacing: 3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.testi-card p {
  font-size: 15px;
  color: #F1F5F9;
  line-height: 1.65;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.tav1 {
  background: linear-gradient(135deg, #006B3F, #059669);
}

.tav2 {
  background: linear-gradient(135deg, #D4AF37, #F59E0B);
}

.tav3 {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.testi-author strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.testi-author span {
  font-size: 12.5px;
  color: #94A3B8;
  font-weight: 500;
}

/* ===== CTA PROVIDER ===== */
.cta-provider {
  background: linear-gradient(135deg, #004D2C 0%, #006B3F 50%, #008B50 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
}

.cta-text {
  max-width: 520px;
}

.cta-text h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== REGISTRATION PAGE ===== */
.reg-hero {
  background: linear-gradient(160deg, #F0FFF4 0%, #FAFCFA 40%, #FFFEF5 100%);
  padding: 48px 0 80px;
}

.reg-hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 480px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.reg-hero-text {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reg-hero-text h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
}

.reg-hero-text p {
  font-size: 16px;
  color: var(--fg-muted);
}

.reg-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

/* REG FORM */
.reg-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 36px;
  border: 1px solid var(--border-light);
}

.reg-form-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--fg);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group textarea {
  resize: vertical;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.phone-input:focus-within {
  border-color: var(--green);
}

.phone-prefix {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-muted);
  background: var(--muted);
  border-right: 1px solid var(--border);
}

.phone-input input {
  border: none;
  padding: 12px 14px;
}

.loc-input-wrap {
  display: flex;
  gap: 8px;
}

.loc-input-wrap input {
  flex: 1;
}

.gps-btn-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--green-light);
  color: var(--green);
  border: 2px solid rgba(0, 107, 63, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.gps-btn-form:hover {
  background: var(--green);
  color: var(--white);
}

/* SKILLS CHIPS & CONTENT MODERATION */
.skills-chips-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: border-color var(--transition);
}

.skills-chips-wrapper:focus-within {
  border-color: var(--green);
}

.skills-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F5E9;
  border: 1px solid #A7F3D0;
  color: #006B3F;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  animation: chipFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chipFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.skill-chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 107, 63, 0.15);
  color: #004D2C;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease;
}

.skill-chip-remove:hover {
  background: rgba(220, 38, 38, 0.2);
  color: #DC2626;
}

.skills-chips-wrapper {
  position: relative;
}

.skills-autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #0D1612;
  border: 1.5px solid rgba(82, 229, 140, 0.45);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 20px rgba(0, 107, 63, 0.2);
  z-index: 100;
  max-height: 260px;
  overflow-y: auto;
  padding: 6px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.skills-autocomplete-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: #F1F5F9;
  font-size: 13.5px;
  transition: all 0.15s ease;
}

.skills-autocomplete-item:hover,
.skills-autocomplete-item.is-selected {
  background: rgba(0, 107, 63, 0.4);
  color: #34D399;
  transform: translateX(2px);
}

.autocomplete-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.autocomplete-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.autocomplete-text {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.autocomplete-match {
  color: #34D399;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.autocomplete-category {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.skills-autocomplete-item:hover .autocomplete-category,
.skills-autocomplete-item.is-selected .autocomplete-category {
  color: #FFFFFF;
  background: rgba(0, 107, 63, 0.6);
}

.skills-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.skills-input-row input {
  flex: 1;
  border: none !important;
  padding: 6px 0 !important;
  background: transparent !important;
  font-size: 16px;
}

.btn-add-skill {
  background: #E8F5E9;
  color: #006B3F;
  border: 1.5px solid #006B3F;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-add-skill:hover {
  background: #006B3F;
  color: #FFFFFF;
}

.popular-skills-hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.hints-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #0F172A;
  margin-right: 4px;
}

.popular-skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  color: #0F172A;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.15s ease;
}

.popular-skill-pill:hover {
  background: #E8F5E9;
  border-color: #006B3F;
  color: #006B3F;
  transform: translateY(-1px);
}

.moderation-error-alert {
  display: none;
  align-items: flex-start;
  gap: 8px;
  background: #FEF2F2;
  border: 1.5px solid #F87171;
  color: #991B1B;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 6px;
  line-height: 1.45;
  animation: shakeAlert 0.3s ease;
}

@keyframes shakeAlert {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* LOCATION MAP PREVIEW */
.loc-map-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loc-map-preview {
  width: 100%;
  height: 150px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  background: #E5E7EB;
}

.map-placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E0F2FE 0%, #F0FDF4 50%, #FEF3C7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: 
    linear-gradient(to right, rgba(148, 163, 184, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-pin-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.map-pin-icon {
  font-size: 28px;
  line-height: 1;
}

.map-pin-label {
  background: #1E293B;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  margin-top: 2px;
}

.loc-gps-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--green);
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 0;
  width: fit-content;
}

.loc-gps-quick-btn:hover {
  text-decoration: underline;
}

/* PROFILE PICTURE UPLOAD ZONE */
.photo-upload-zone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px dashed #CBD5E1;
  border-radius: var(--radius-md);
  background: #F8FAFC;
  transition: all var(--transition);
  cursor: pointer;
}

.photo-upload-zone:hover {
  border-color: var(--green);
  background: #F0FDF4;
}

.photo-preview-avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #64748B;
  overflow: hidden;
  border: 2px solid #CBD5E1;
}

.photo-preview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-upload-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.photo-upload-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}

.photo-upload-hint {
  font-size: 12px;
  color: var(--fg-muted);
}

.photo-file-hidden {
  display: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check label {
  font-size: 13px;
  color: var(--fg-muted);
}

.form-check a {
  color: var(--green);
  font-weight: 600;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
}

.success-msg {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-msg h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.success-msg p {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 360px;
}

/* ===== PRICING ===== */
.pricing .section-header h2 {
  color: var(--fg, #0F172A);
  text-shadow: none;
}

.pricing .section-header p {
  color: var(--fg-muted, #64748B);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all var(--transition);
}

.price-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-featured {
  border-color: var(--green);
  background: linear-gradient(135deg, #F0FDF4, #FFFFFF);
  box-shadow: 0 4px 20px rgba(0, 168, 89, 0.12);
}

.price-featured:hover {
  border-color: var(--green-dark);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 168, 89, 0.3);
}

.price-card.price-vip {
  border-color: rgba(217, 119, 6, 0.45);
  background: linear-gradient(135deg, #FFFBEB, #FFFFFF);
}

.price-card.price-vip:hover {
  border-color: #D97706;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.15);
}

.price-vip-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #D97706;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.price-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
}

.price-amount span {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}

.price-contacts {
  font-size: 12px;
  font-weight: 700;
  color: #0284C7;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
  margin-top: -4px;
}

.price-featured .price-contacts {
  color: #006B3F;
  background: rgba(0, 107, 63, 0.08);
  border-color: rgba(0, 107, 63, 0.25);
}

.price-vip .price-contacts {
  color: #B45309;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
}

.price-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  min-height: 36px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin: 0 0 12px 0;
  padding: 0;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--fg);
  line-height: 1.35;
}

.price-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.price-features li.feat-disabled {
  color: #94A3B8;
}

/* ===== PRICING CARDS DUAL-MODE OVERRIDES ===== */
[data-theme="dark"] .price-card {
  background: #111827;
  border-color: #1E293B;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .price-featured {
  background: linear-gradient(135deg, #062314 0%, #111827 100%);
  border-color: #00A859;
  box-shadow: 0 4px 20px rgba(0, 168, 89, 0.25);
}

[data-theme="dark"] .price-featured:hover {
  border-color: #34D399;
}

[data-theme="dark"] .price-card.price-vip {
  background: linear-gradient(135deg, #241403 0%, #111827 100%);
  border-color: #D97706;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.25);
}

[data-theme="dark"] .price-card.price-vip:hover {
  border-color: #F59E0B;
}

[data-theme="dark"] .price-amount {
  color: #F8FAFC;
}

[data-theme="dark"] .price-amount span {
  color: #94A3B8;
}

[data-theme="dark"] .price-desc {
  color: #94A3B8;
}

[data-theme="dark"] .price-features li {
  color: #F8FAFC;
}

[data-theme="dark"] .price-features li svg {
  stroke: #34D399;
}

[data-theme="dark"] .price-features li svg[stroke="#D4AF37"] {
  stroke: #FBBF24;
}

[data-theme="dark"] .price-features li.feat-disabled {
  color: #64748B;
}

[data-theme="dark"] .price-features li.feat-disabled svg {
  stroke: #475569;
}

[data-theme="dark"] .price-label {
  color: #94A3B8;
}

[data-theme="dark"] .price-featured .price-contacts {
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
}

[data-theme="dark"] .price-vip .price-contacts {
  color: #FBBF24;
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
}

[data-theme="dark"] #select-premium {
  border-color: #F59E0B !important;
  color: #FBBF24 !important;
}


/* ===== FOOTER ===== */
.footer {
  background: #0D1B0F;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
}

.footer .logo-text {
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 14px 0 20px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 10px;
}

.soc-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all var(--transition);
}

.soc-link:hover {
  background: var(--green);
  color: var(--white);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fcol h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fcol a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.fcol a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  padding: 20px 0;
}

.fb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .testi-viewport {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px 16px 24px;
  }

  .testi-track {
    animation: none !important;
    transform: none !important;
    width: max-content;
  }

  .testi-group[aria-hidden="true"] {
    display: none !important;
  }

  .testi-card {
    scroll-snap-align: start;
  }

  /* Hero Pinned Stage Reduced Motion: Suppress rapid 3D transforms while keeping all 9 scenes fully scrollable & interactive */
  .hero-slide {
    transform: none !important;
    transition: opacity 0.15s ease-out !important;
  }

  .hero-slide > .hero-video {
    transition: none !important;
    transform: none !important;
  }

  .story-card {
    transition: none !important;
    transform: none !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-timeline-nav {
    right: 14px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {

  html,
  body {
    overflow-x: clip;
  }

  .hero-scroll-wrapper {
    overflow: visible;
  }

  .hero-slide {
    height: 100dvh;
    min-height: 100dvh;
  }

  .hero-slide-content {
    padding: 68px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .story-card {
    max-width: 100%;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.01);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-color: rgba(82, 229, 140, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 107, 63, 0.08);
    gap: 10px;
    touch-action: pan-y;
  }

  /* On mobile viewports: Hide vertical dots sidebar so it does not cover card content (matching Photo 1) */
  @media (max-width: 768px) {
    .hero-timeline-nav {
      display: none !important;
    }
  }

  .timeline-steps {
    flex-direction: column;
    gap: 3px;
    padding: 5px 3px;
    align-items: center;
    background: rgba(6, 18, 10, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .t-step {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .t-indicator {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }

  .t-step.active .t-indicator {
    width: 6px;
    height: 18px;
    border-radius: 999px;
    background: #00A859;
    background-image: linear-gradient(180deg, #34D399 var(--video-progress, 100%), rgba(255,255,255,0.2) var(--video-progress, 100%));
    box-shadow: 0 0 10px rgba(82, 229, 140, 0.9);
  }

  .t-tooltip {
    display: none !important;
  }

  .results-preview {
    display: none;
  }

  .tp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reg-hero-inner {
    grid-template-columns: 1fr;
  }

  .reg-hero-text {
    order: 1;
  }

  .reg-form-card {
    order: 2;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 21px;
    line-height: 1.22;
  }

  .hero-sub {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .scene-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .scene-sub {
    font-size: 13.5px;
  }

  .scene-desc {
    font-size: 12px;
    line-height: 1.42;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .tp-grid {
    grid-template-columns: 1fr;
  }

  .testi-viewport {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    padding: 10px 0 20px;
  }

  .testi-track {
    animation-duration: 24s;
  }

  .testi-group {
    gap: 16px;
    padding-right: 16px;
  }

  .testi-card {
    width: 300px;
    min-width: 280px;
    max-width: 320px;
    padding: 22px 18px;
  }

  .testi-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-list {
    align-items: center;
  }

  .cta-btns {
    width: 100%;
  }

  .cta-btns .btn {
    width: 100%;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #0D1B0F;
    padding: 24px;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99;
  }

  .nav-links .nav-link {
    color: #FFFFFF;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    background: #FFFFFF;
  }

  .navbar {
    background: rgba(10, 22, 12, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .navbar .logo-text {
    color: #FFFFFF;
  }

  .search-row {
    flex-wrap: wrap;
  }

  .search-divider {
    display: none;
  }

  .search-field {
    width: 100%;
  }

  .search-btn {
    width: 100%;
    border-radius: var(--radius-sm);
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hstat-sep {
    display: none;
  }

  .prov-actions {
    width: 100%;
  }

  .action-btn {
    flex: 1;
    justify-content: center;
  }



  .hud-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .loc-input-wrap {
    flex-direction: column;
  }

  .gps-btn-form {
    justify-content: center;
  }

  .hero-slide-content {
    padding: 76px 36px 20px 14px;
    align-items: center;
  }

  .story-card {
    max-width: calc(100vw - 44px);
    padding: 18px 16px;
  }

  .hero-title {
    font-size: 19px;
  }

  .scene-title {
    font-size: 19px;
  }

  .hero-cta-group {
    flex-direction: row;
    gap: 8px;
  }

  .hero-cta-group .btn {
    flex: 1;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
  }

  .scene-actions {
    flex-direction: row;
    gap: 8px;
  }

  .scene-actions .btn {
    flex: 1;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
  }

  .stag {
    font-size: 11px;
    padding: 4px 8px;
    min-height: 24px;
  }

  .f-pill {
    font-size: 11px;
    padding: 6px 12px;
    min-height: 32px;
  }

  .testi-card {
    width: 88vw;
    min-width: 88vw;
    padding: 18px 16px;
  }

  .testi-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ==================================================
   DEDICATED MOBILE LANDSCAPE OPTIMIZATION
   (Phones in horizontal orientation: height <= 540px)
   ================================================== */
@media (max-height: 540px) and (orientation: landscape) {
  .navbar {
    height: 48px;
    padding: 4px 16px;
  }

  .nav-links {
    top: 48px;
  }

  .hero-slide {
    height: 100vh;
    min-height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
  }

  .hero-slide-content {
    padding: 50px 14px 6px;
    max-width: 640px;
    justify-content: center;
  }

  .story-card {
    max-width: 100%;
    max-height: calc(100dvh - 54px);
    padding: 10px 16px;
    gap: 5px;
    border-radius: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero-badge,
  .scene-badge {
    padding: 2px 8px;
    font-size: 10px;
  }

  .hero-title,
  .scene-title {
    font-size: 16px;
    line-height: 1.15;
  }

  .hero-sub,
  .scene-sub {
    font-size: 11px;
    line-height: 1.25;
  }

  .scene-desc {
    font-size: 10.5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .scene-tags {
    gap: 3px;
  }

  .stag {
    font-size: 10px;
    padding: 2px 6px;
    min-height: 20px;
  }

  .scene-meta {
    padding: 3px 8px;
    gap: 8px;
  }

  .sm-item strong {
    font-size: 10.5px;
  }

  .sm-item span {
    font-size: 9px;
  }

  .hero-cta-group,
  .scene-actions {
    margin-top: 1px;
    gap: 6px;
  }

  .hero-cta-group .btn,
  .scene-actions .btn {
    padding: 5px 12px;
    font-size: 11.5px;
    min-height: 34px;
  }

  .hero-scroll-wrapper .search-card {
    padding: 6px 10px;
  }

  .hero-scroll-wrapper .search-field input {
    padding: 5px 4px;
    font-size: 11px;
  }

  .hero-scroll-wrapper .search-btn {
    padding: 6px 12px;
    font-size: 11.5px;
  }

  .hero-timeline-nav {
    display: none !important;
  }

  .testi-card {
    width: 320px;
    min-width: 320px;
    padding: 18px;
  }

  .testi-card p {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* ============================================================================
   FLEXIBLE MULTI-SKILL CHIPS & TAGS (Registration & Onboarding)
   ============================================================================ */
.skills-chips-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition);
}

.skills-chips-wrapper:focus-within {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 107, 63, 0.1);
}

.skills-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 107, 63, 0.2);
  animation: popIn 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 32px;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.skill-chip-remove {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 107, 63, 0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transition: all 0.15s;
}

.skill-chip-remove::after {
  content: '';
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: -12px;
  right: -12px;
}

.skill-chip-remove:hover {
  background: #DC2626;
  color: #FFFFFF;
}

.skills-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.skills-input-row input {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 4px 0 !important;
  font-size: 16px;
  flex: 1;
  color: var(--fg);
}

.btn-add-skill {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(0, 107, 63, 0.2);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-add-skill:hover {
  background: var(--green);
  color: var(--white);
}

.popular-skills-hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.hints-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-right: 2px;
}

.popular-skill-pill {
  font-size: 11.5px;
  font-weight: 600;
  background: var(--muted);
  color: var(--fg-muted);
  border: 1px solid var(--border-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  -webkit-user-select: none;
  user-select: none;
}

.popular-skill-pill:hover {
  background: var(--green-pale);
  color: var(--green);
  border-color: var(--green);
}

/* ===== LOKATOR GLOBAL CONNECTION & OFFLINE BADGE ===== */
.lokator-conn-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--fg);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lokator-conn-badge.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lokator-conn-badge.offline {
  background: #78350F;
  color: #FEF3C7;
  border: 1px solid #D97706;
}

.lokator-conn-badge.syncing {
  background: #1E3A8A;
  color: #DBEAFE;
  border: 1px solid #3B82F6;
}

.lokator-conn-badge.synced {
  background: var(--green-dark);
  color: #DCFCE7;
  border: 1px solid var(--green);
}

.lokator-conn-badge.failed {
  background: #7F1D1D;
  color: #FEE2E2;
  border: 1px solid #EF4444;
}

.conn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.conn-dot.offline {
  background: #F59E0B;
}

.conn-dot.syncing {
  background: #60A5FA;
  animation: pulse-sync 1.2s infinite ease-in-out;
}

.conn-dot.synced {
  background: #22C55E;
}

.conn-dot.failed {
  background: #EF4444;
}

@keyframes pulse-sync {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Offline search notice banner */
.offline-search-banner {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

/* ==============================================================================
   PHASE 10.9: MARKETPLACE DISCOVERY & CONVERSION INTELLIGENCE ENGINE (MDCIE)
   ============================================================================== */

/* Breadcrumbs Navigation Bar */
.marketplace-breadcrumbs-nav {
  margin-bottom: 16px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 10px);
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb-trail-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  font-size: 13px;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted, #9CA3AF);
}

.breadcrumb-item .crumb-link {
  color: var(--fg-muted, #9CA3AF);
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-item .crumb-link:hover {
  color: var(--green, #006B3F);
}

.breadcrumb-item .crumb-separator {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

.breadcrumb-item.is-active .crumb-current {
  color: var(--fg, #F9FAFB);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Zero-Results Intelligent Recovery UI */
.zero-recovery-card {
  margin-top: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 10px);
  text-align: left;
  width: 100%;
  max-width: 580px;
}

.recovery-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg, #F9FAFB);
  margin-bottom: 12px;
}

.recovery-suggestions-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.recovery-btn-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 107, 63, 0.08);
  border: 1px solid rgba(0, 107, 63, 0.25);
  border-radius: var(--radius-sm, 6px);
  color: var(--green, #006B3F);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.recovery-btn-chip:hover {
  background: var(--green, #006B3F);
  color: #FFFFFF;
}

.related-skills-box {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.related-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-muted, #9CA3AF);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.related-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: 20px;
  color: #E6C657;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.related-skill-pill:hover {
  background: #D4AF37;
  color: #0A0E17;
}

/* ==============================================================================
   PHASE 10.10: MARKETPLACE EXPERIENCE & BROWSE-BY-INDUSTRY DISCOVERY ENGINE
   ============================================================================== */

/* Mobile Filter Backdrop Overlay */
.filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 23, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.filter-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-filter-close-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--fg, #F9FAFB);
  font-size: 20px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.mobile-filter-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #EF4444;
}

/* Mobile Sidebar Drawer Styling (Delegates to search.css canonical bottom sheet) */
@media (max-width: 860px) {
  .mobile-filter-close-btn {
    display: inline-flex;
  }
}

/* Browse by Industry Section */
.marketplace-browse-section {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg, 14px);
  padding: 20px;
  margin-bottom: 24px;
}

.browse-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34D399;
  background: rgba(82, 229, 140, 0.14);
  border: 1px solid rgba(82, 229, 140, 0.35);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.browse-title {
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}

.browse-subtitle {
  font-size: 13.5px;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.5;
}

.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.industry-browse-card {
  display: flex;
  flex-direction: column;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md, 10px);
  padding: 14px;
  text-decoration: none;
  color: #F8FAFC;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.industry-browse-card:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: #10B981;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.industry-browse-card.is-selected {
  background: rgba(82, 229, 140, 0.15);
  border-color: #10B981;
}

.industry-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.industry-card-icon {
  font-size: 22px;
  line-height: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.industry-card-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.industry-card-desc {
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.45;
}

.industry-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  color: #34D399;
  font-weight: 600;
}

.industry-popular-skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-skill-pill-tag {
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fg-muted, #9CA3AF);
  padding: 2px 7px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.industry-skill-pill-tag:hover {
  background: var(--green, #006B3F);
  border-color: var(--green, #006B3F);
  color: #FFFFFF;
}

/* Collapse browse section when specific filter/search query is actively queried */
.marketplace-browse-section.is-compact {
  padding: 12px 16px;
  margin-bottom: 16px;
}

.marketplace-browse-section.is-compact .industry-cards-grid {
  display: none;
}

.browse-toggle-btn {
  background: none;
  border: none;
  color: var(--green, #006B3F);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================================
   PHASE 10.12G: PROVIDER ONBOARDING CONVERSION OPTIMIZATION & MOBILE-FIRST STYLES
   ============================================================================ */

/* Onboarding Progress Stepper */
.onboarding-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 10px 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md, 12px);
  gap: 6px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  color: #64748B;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: var(--radius-sm, 8px);
  white-space: nowrap;
  transition: all 0.2s ease;
  min-width: 0;
  flex-shrink: 0;
}

.step-indicator:hover:not(:disabled) {
  color: var(--fg, #0D1B0F);
  background: rgba(0, 0, 0, 0.04);
}

.step-indicator:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.step-indicator.is-active {
  color: var(--green, #006B3F);
  font-weight: 800;
}

.step-indicator.is-completed {
  color: var(--green, #006B3F);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #64748B;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.step-indicator.is-active .step-badge {
  background: var(--green, #006B3F);
  color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 107, 63, 0.2);
  border: 1.5px solid var(--green, #006B3F);
}

.step-indicator.is-completed .step-badge {
  background: var(--green, #006B3F);
  color: #FFFFFF;
}

.step-label {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
}

.step-indicator.is-active .step-label {
  display: inline-block;
  color: var(--green, #006B3F);
  font-weight: 800;
}

.step-separator {
  flex: 1 1 8px;
  height: 2px;
  background: #E2E8F0;
  min-width: 6px;
  max-width: 48px;
  border-radius: 2px;
}

.step-separator.is-completed {
  background: var(--green, #006B3F);
}

/* Step Panels */
.onboarding-step-pane {
  display: none;
  animation: fadeInStep 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.onboarding-step-pane.is-active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header-wrap {
  margin-bottom: 20px;
}

.step-header-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--fg, #0D1B0F);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-header-desc {
  font-size: 14px;
  color: var(--fg-muted, #4A5E4C);
  line-height: 1.5;
}

/* Location Grid System */
.reg-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.reg-loc-grid-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.reg-loc-grid-item label {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg, #0D1B0F);
}

.reg-loc-grid-item select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm, 8px);
  border: 1.5px solid var(--border, #D6E4D8);
  background: #FFFFFF;
  color: var(--fg, #0D1B0F);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  min-height: 46px;
  transition: border-color var(--transition);
}

.reg-loc-grid-item select:focus {
  border-color: var(--green, #006B3F);
}

/* Location Status Banner */
.loc-feedback-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  border-radius: var(--radius-md, 12px);
  padding: 12px 14px;
  margin: 12px 0 14px;
}

.loc-feedback-icon {
  width: 22px;
  height: 22px;
  background: #16A34A;
  color: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.loc-feedback-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.loc-feedback-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #166534;
}

.loc-feedback-desc {
  font-size: 12.5px;
  color: #15803D;
}

/* Interactive Map Section */
.loc-map-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
}

.loc-map-preview {
  width: 100%;
  height: 220px;
  min-height: 200px;
  border-radius: var(--radius-md, 14px);
  border: 1.5px solid var(--border, #D6E4D8);
  position: relative;
  overflow: hidden;
  background: #E2E8F0;
}

.loc-map-gps-float {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 500;
  background: #FFFFFF;
  color: var(--green, #006B3F);
  border: 1.5px solid var(--green, #006B3F);
  border-radius: 20px;
  padding: 7px 14px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.loc-map-gps-float:hover {
  background: #F0FFF4;
  transform: translateY(-1px);
}

.loc-current-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 4px 0;
  font-size: 13px;
  color: var(--fg-muted, #4A5E4C);
}

.loc-current-summary-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #166534;
}

.loc-change-link {
  color: var(--green, #006B3F);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  font-size: 13px;
}

/* Step Navigation Footer */
.step-nav-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light, #E8F0E9);
}

.step-nav-actions .btn {
  min-height: 48px;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
}

/* AI Assistant & Enhancement Helpers */
.ai-assistant-card {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--green, #006B3F);
}

.btn-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F5E9;
  border: 1.5px solid var(--green, #006B3F);
  color: var(--green, #006B3F);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-ai-pill:hover {
  background: var(--green, #006B3F);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 107, 63, 0.25);
}

.ai-pricing-result-card {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: #92400E;
  margin-top: 8px;
}

.ai-pricing-badge {
  font-size: 11px;
  font-weight: 800;
  background: #D4AF37;
  color: #06180E;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}

/* Profile Completeness Meter */
.completeness-meter-wrap {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md, 14px);
  padding: 16px;
  margin-bottom: 20px;
}

.completeness-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.completeness-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--fg, #0D1B0F);
}

.completeness-score-badge {
  font-size: 13px;
  font-weight: 800;
  color: #166534;
  background: #DCFCE7;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #86EFAC;
}

.completeness-bar-track {
  width: 100%;
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.completeness-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D4AF37 0%, var(--green, #006B3F) 100%);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.completeness-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.completeness-chip {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.completeness-chip.is-done {
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  color: #166534;
}

.completeness-chip.is-pending {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #475569;
}

/* Live Profile Card Preview — WCAG AA High Contrast */
.preview-profile-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-top: 3px solid var(--green, #006B3F);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.preview-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.preview-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006B3F, #059669);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 107, 63, 0.25);
  overflow: hidden;
  flex-shrink: 0;
}

.preview-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-meta-wrap {
  flex: 1;
  min-width: 0;
}

.preview-provider-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--fg, #0D1B0F);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.preview-trade-title {
  font-size: 14px;
  color: var(--green, #006B3F);
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  margin-top: 2px;
}

.preview-loc-pill {
  font-size: 12.5px;
  color: var(--fg-muted, #4A5E4C);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.preview-bio-snippet {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.preview-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: default;
  min-height: 46px;
  box-sizing: border-box;
}

.preview-cta-wa {
  background: var(--green, #006B3F);
  color: #FFFFFF;
  border: 1.5px solid var(--green, #006B3F);
}

.preview-cta-call {
  background: #FFFFFF;
  color: var(--green, #006B3F);
  border: 1.5px solid var(--green, #006B3F);
}

.field-error-msg {
  color: #DC2626;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.field-error-msg.is-visible {
  display: block;
}

/* Mobile Responsive Adjustments (< 640px) */
@media (max-width: 640px) {
  .reg-hero {
    padding: 32px 0 48px;
  }

  .reg-hero-inner {
    padding: 0;
  }

  .reg-form-card {
    padding: 20px 16px;
    border-radius: 16px;
    margin: 0;
  }

  .step-header-title {
    font-size: 20px;
  }

  .step-header-desc {
    font-size: 13px;
  }

  /* Compact responsive stepper */
  .onboarding-stepper {
    padding: 8px 10px;
    gap: 4px;
    margin-bottom: 20px;
  }

  .step-indicator {
    padding: 2px 4px;
    gap: 4px;
  }

  .step-label {
    display: none;
  }

  .step-indicator.is-active .step-label {
    display: inline;
    font-size: 11.5px;
  }

  .step-badge {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .step-separator {
    flex: 1 1 4px;
    min-width: 4px;
    max-width: 24px;
  }

  /* Location grid vertical stacking */
  .reg-loc-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .loc-map-preview {
    height: 190px;
    min-height: 180px;
  }

  /* Action buttons vertical stacking for touch */
  .step-nav-actions {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .step-nav-actions .btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
    text-align: center;
    justify-content: center;
  }
}

/* ===== PHASE 10.12H: TRUST & VERIFICATION LAYER ===== */
.profile-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(0, 107, 63, 0.2);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
}

.profile-verified-pill.verified {
  background: rgba(0, 107, 63, 0.15);
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.3);
}

.profile-verified-pill.pending {
  background: rgba(217, 119, 6, 0.15);
  color: #F59E0B;
  border-color: rgba(245, 158, 11, 0.3);
}

.profile-verified-pill.unverified {
  background: rgba(107, 114, 128, 0.15);
  color: #9CA3AF;
  border-color: rgba(156, 163, 175, 0.25);
}

.provider-supplied-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 500;
}

.btn-report-listing:hover {
  border-color: #EF4444 !important;
  color: #EF4444 !important;
  background: rgba(239, 68, 68, 0.08) !important;
}

/* ==========================================================================
   PHASE 10.19 — REAL LOCATION MAP + INTERACTIVE MOBILE NAVIGATION STYLES
   ========================================================================== */

/* Universal Hamburger Toggle Target (>= 44x44px Touch Target) */
.hamburger,
.mobile-nav-toggle {
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  color: #FFFFFF;
  transition: all 0.2s ease;
  position: relative;
  z-index: 100;
}

.hamburger:hover,
.mobile-nav-toggle:hover {
  background: rgba(0, 107, 63, 0.25);
  border-color: rgba(82, 229, 140, 0.4);
}

.hamburger:active,
.mobile-nav-toggle:active {
  transform: scale(0.94);
}

.hamburger:focus-visible,
.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Right-Side Sliding Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 290px;
  max-width: 85vw;
  background: linear-gradient(180deg, #06150B 0%, #0D2213 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.85);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* Semi-Transparent Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Prevent Background Scroll When Drawer is Active */
body.mobile-nav-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Drawer Header with Close Button */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #FFFFFF;
  text-decoration: none;
}

.drawer-close-btn {
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #E2E8F0;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.4);
}

/* Drawer Navigation Links List */
.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #E2E8F0;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}

.drawer-link svg,
.drawer-link span.drawer-icon {
  font-size: 18px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34D399;
}

.drawer-link:hover,
.drawer-link:focus-visible {
  background: rgba(0, 107, 63, 0.25);
  color: #34D399;
  transform: translateX(4px);
}

.drawer-link.drawer-logout {
  color: #F87171;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.drawer-link.drawer-logout:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

/* Phase 10.19 Service Location & GPS Card Styles */
.service-location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
}

.service-map-canvas {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: #0E1611;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 14px;
}

.gps-cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 107, 63, 0.12);
  border: 1px solid rgba(0, 107, 63, 0.35);
  border-radius: 10px;
  color: #F1F5F9;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.gps-cta-button:hover {
  background: rgba(0, 107, 63, 0.22);
  border-color: rgba(82, 229, 140, 0.5);
  transform: translateY(-1px);
}

.gps-cta-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gps-cta-icon {
  font-size: 18px;
  color: #34D399;
}

.gps-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.gps-meta-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
}

.gps-meta-label {
  color: var(--fg-muted);
  display: block;
  margin-bottom: 2px;
}

.gps-meta-val {
  color: #F1F5F9;
  font-weight: 700;
}

.gps-status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #10B981;
  margin-top: 10px;
}

/* User Location Pulse Marker */
.user-pulse-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.4);
  animation: userPulse 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.user-pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2563EB;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.9);
}

@keyframes userPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Service Pin Marker Badge */
.service-pin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #061D0F;
  border: 1.5px solid #D4AF37;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none !important;
  }
  .hamburger,
  .mobile-nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .nav-inner {
    height: 60px;
  }
  input, select, textarea, .form-control, .search-input, .location-input, .input {
    font-size: 16px !important;
  }
}