/* EZPT public landing + header — scoped to avoid clashing with Bootstrap/global .btn, .nav-link */
/* Variables & section box model */
.announcement-bar,
.site-header,
.hero,
.how-strip {
  box-sizing: border-box;
}

.announcement-bar *,
.site-header *,
.hero *,
.how-strip * {
  box-sizing: border-box;
}

:root {
  --ezpt-blue-primary: #1a7fd4;
  --ezpt-blue-dark: #0f5fa3;
  --ezpt-blue-deeper: #0a3f70;
  --ezpt-blue-light: #e8f4fd;
  --ezpt-green-cta: #22c55e;
  --ezpt-green-dark: #16a34a;
  --ezpt-white: #ffffff;
  --ezpt-off-white: #f8fafc;
  --ezpt-text-dark: #0f172a;
  --ezpt-text-mid: #334155;
  --ezpt-text-muted: #64748b;
  --ezpt-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --ezpt-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --ezpt-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --ezpt-radius-sm: 6px;
  --ezpt-radius-md: 12px;
  --ezpt-radius-lg: 20px;
  --ezpt-radius-pill: 999px;
  --ezpt-transition: 0.22s ease;
  --ezpt-header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

.ezpt-public-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ezpt-text-dark);
  background: var(--ezpt-white);
  -webkit-font-smoothing: antialiased;
}

.hero img,
.site-header .header-logo img {
  display: block;
  max-width: 100%;
}

.hero a,
.how-strip a {
  text-decoration: none;
  color: inherit;
}

.hero button,
.header-location {
  cursor: pointer;
  font-family: inherit;
}

/* Announcement bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--ezpt-blue-deeper) 0%, var(--ezpt-blue-dark) 100%);
  color: var(--ezpt-white);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.01em;
}

.announcement-bar a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 6px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  height: var(--ezpt-header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}

.header-search input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 44px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--ezpt-radius-pill);
  font-size: 0.875rem;
  color: var(--ezpt-text-dark);
  background: var(--ezpt-off-white);
  transition: border-color var(--ezpt-transition), box-shadow var(--ezpt-transition);
  outline: none;
}

.header-search input::placeholder {
  color: var(--ezpt-text-muted);
}

.header-search input:focus {
  border-color: var(--ezpt-blue-primary);
  box-shadow: 0 0 0 3px rgba(26, 127, 212, 0.12);
  background: var(--ezpt-white);
}

.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ezpt-text-muted);
  pointer-events: none;
}

.header-location {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 42px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--ezpt-radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ezpt-text-mid);
  background: var(--ezpt-off-white);
  transition: border-color var(--ezpt-transition);
  white-space: nowrap;
}

.header-location:hover {
  border-color: var(--ezpt-blue-primary);
}

.header-location svg {
  color: var(--ezpt-blue-primary);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.header-nav .ezpt-nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ezpt-text-mid);
  border-radius: var(--ezpt-radius-sm);
  transition: color var(--ezpt-transition), background var(--ezpt-transition);
  white-space: nowrap;
  text-decoration: none;
}

.header-nav .ezpt-nav-link:hover {
  color: var(--ezpt-blue-primary);
  background: var(--ezpt-blue-light);
}

.header-nav .ezpt-nav-link.active {
  color: var(--ezpt-blue-primary);
  font-weight: 600;
}

.nav-toggle {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: var(--ezpt-radius-pill);
  padding: 3px;
  gap: 2px;
  margin: 0 8px;
}

.nav-toggle button {
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--ezpt-radius-pill);
  color: var(--ezpt-text-muted);
  transition: all var(--ezpt-transition);
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-toggle button.active {
  background: var(--ezpt-white);
  color: var(--ezpt-blue-primary);
  box-shadow: var(--ezpt-shadow-sm);
}

/* Header CTAs — not Bootstrap .btn */
.ezpt-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  height: 42px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--ezpt-radius-pill);
  transition: all var(--ezpt-transition);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.ezpt-header-btn--ghost {
  color: var(--ezpt-text-mid);
  border: 1.5px solid #e2e8f0;
}

.ezpt-header-btn--ghost:hover {
  border-color: var(--ezpt-blue-primary);
  color: var(--ezpt-blue-primary);
}

.ezpt-header-btn--primary {
  background: var(--ezpt-blue-primary);
  color: var(--ezpt-white);
  box-shadow: 0 2px 8px rgba(26, 127, 212, 0.35);
}

.ezpt-header-btn--primary:hover {
  background: var(--ezpt-blue-dark);
  box-shadow: 0 4px 16px rgba(26, 127, 212, 0.45);
  transform: translateY(-1px);
  color: var(--ezpt-white);
}

.ezpt-header-btn--green {
  background: var(--ezpt-green-cta);
  color: var(--ezpt-white);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
}

.ezpt-header-btn--green:hover {
  background: var(--ezpt-green-dark);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.45);
  transform: translateY(-1px);
  color: var(--ezpt-white);
}

.site-header .dropdown-toggle.ezpt-header-btn--primary::after {
  margin-left: 6px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border: none;
  background: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ezpt-text-dark);
  border-radius: 2px;
  transition: all var(--ezpt-transition);
}

/* Mobile offcanvas menu — reuse Bootstrap offcanvas */
.ezpt-offcanvas-nav .offcanvas-header {
  border-bottom: 1px solid #e2e8f0;
}

.ezpt-offcanvas-nav .ezpt-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e9ecef;
  color: var(--ezpt-text-mid);
  font-weight: 500;
  text-decoration: none;
}

.ezpt-offcanvas-nav .ezpt-mobile-nav-link:hover {
  color: var(--ezpt-blue-primary);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--ezpt-header-h) - 36px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a3f70 0%, #0f5fa3 35%, #1a7fd4 70%, #2196f3 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(26, 127, 212, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: ezpt-float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: #60a5fa;
  top: -100px;
  right: -80px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: #22c55e;
  bottom: -80px;
  left: 30%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: #a78bfa;
  top: 40%;
  left: -60px;
  animation-delay: -5s;
}

@keyframes ezpt-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.03); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ezpt-radius-pill);
  color: #bfdbfe;
  font-size: 0.8125rem;
  font-weight: 600;
  width: fit-content;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ezpt-green-cta);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
  animation: ezpt-pulse 2s infinite;
}

@keyframes ezpt-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15); }
}

.hero-headline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ezpt-white);
  letter-spacing: -0.02em;
}

.how-strip .step-title,
.how-strip .section-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-headline .highlight {
  background: linear-gradient(90deg, #7dd3fc, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
}

.hero-search-wrap {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ezpt-radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.hero-search-field {
  flex: 1;
  position: relative;
}

.hero-search-field--wide {
  flex: 2;
}

.hero-search-field--narrow {
  flex: 1.5;
}

.hero-search-field input,
.hero-search-field select {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: var(--ezpt-radius-md);
  font-size: 0.9375rem;
  color: var(--ezpt-text-dark);
  outline: none;
  transition: box-shadow var(--ezpt-transition);
  -webkit-appearance: none;
}

.hero-search-field input:focus,
.hero-search-field select:focus {
  box-shadow: 0 0 0 3px rgba(26, 127, 212, 0.3);
}

.hero-search-field input::placeholder {
  color: var(--ezpt-text-muted);
}

.hero-search-field .field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ezpt-blue-primary);
  pointer-events: none;
}

.hero-search-btn {
  height: 48px;
  padding: 0 24px;
  background: var(--ezpt-blue-primary);
  color: var(--ezpt-white);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--ezpt-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--ezpt-transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.hero-search-btn:hover {
  background: var(--ezpt-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 127, 212, 0.4);
}

.hero-search-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-search-tags span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.search-tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ezpt-radius-pill);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all var(--ezpt-transition);
  font-family: inherit;
}

.search-tag:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--ezpt-white);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  height: 52px;
  padding: 0 28px;
  background: var(--ezpt-green-cta);
  color: var(--ezpt-white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--ezpt-radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--ezpt-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  text-decoration: none;
  font-family: inherit;
}

.btn-hero-primary:hover {
  background: var(--ezpt-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.5);
  color: var(--ezpt-white);
}

.btn-hero-secondary {
  height: 52px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ezpt-white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--ezpt-radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--ezpt-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  text-decoration: none;
  font-family: inherit;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: var(--ezpt-white);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.trust-item svg {
  color: var(--ezpt-green-cta);
  flex-shrink: 0;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ezpt-radius-md);
  padding: 18px 16px;
  text-align: center;
  transition: transform var(--ezpt-transition), background var(--ezpt-transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--ezpt-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.3;
}

.trainer-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ezpt-radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trainer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trainer-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.trainer-card-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--ezpt-radius-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #86efac;
}

.trainer-card-badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.trainer-profiles {
  display: flex;
  gap: 12px;
}

.trainer-profile {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ezpt-radius-md);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--ezpt-transition);
}

.trainer-profile:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.trainer-profile.featured {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.08);
}

.trainer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ezpt-white);
  position: relative;
  flex-shrink: 0;
}

.trainer-avatar.orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.trainer-avatar.purple {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.trainer-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--ezpt-green-cta);
  border-radius: 50%;
  border: 2px solid rgba(15, 95, 163, 0.8);
}

.trainer-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ezpt-white);
  text-align: center;
}

.trainer-spec {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.3;
}

.trainer-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fbbf24;
}

.trainer-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.trainer-book-btn {
  width: 100%;
  height: 30px;
  background: var(--ezpt-blue-primary);
  color: var(--ezpt-white);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: var(--ezpt-radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--ezpt-transition);
  font-family: inherit;
}

.trainer-book-btn:hover {
  background: var(--ezpt-blue-dark);
}

a.trainer-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ezpt-white);
}

.availability-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--ezpt-radius-sm);
}

.availability-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.availability-slots {
  display: flex;
  gap: 4px;
}

.availability-slots .slot {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.availability-slots .slot.open {
  background: rgba(34, 197, 94, 0.25);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.availability-slots .slot.taken {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* How it works */
.how-strip {
  background: var(--ezpt-off-white);
  border-top: 1px solid #e2e8f0;
  padding: 48px 24px;
}

.how-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how-strip .section-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ezpt-blue-primary);
  margin: 0;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--ezpt-blue-primary), var(--ezpt-green-cta));
  z-index: 0;
}

.how-strip .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-strip .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ezpt-white);
  border: 2px solid var(--ezpt-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--ezpt-blue-primary);
  box-shadow: var(--ezpt-shadow-sm);
  transition: all var(--ezpt-transition);
}

.how-strip .step:hover .step-num {
  background: var(--ezpt-blue-primary);
  color: var(--ezpt-white);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(26, 127, 212, 0.3);
}

.how-strip .step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ezpt-text-dark);
}

.how-strip .step-desc {
  font-size: 0.8125rem;
  color: var(--ezpt-text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .hero-right {
    order: -1;
  }

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

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

  .how-steps::before {
    display: none;
  }

  .header-location {
    display: none;
  }

  .header-search {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --ezpt-header-h: 64px;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-search {
    max-width: 200px;
  }

  .hero-inner {
    padding: 40px 20px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-search-row {
    flex-direction: column;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
  }

  .trainer-profiles {
    flex-direction: column;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-value {
    font-size: 1.375rem;
  }
}

@media (max-width: 480px) {
  .header-search {
    display: none;
  }

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

  .how-steps {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SESSION FINDER
============================================= */
.session-finder {
  background: var(--ezpt-white);
  padding: 72px 24px;
  border-top: 1px solid #e2e8f0;
}

.session-finder-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.session-finder-header {
  text-align: center;
}

.session-finder-header .section-label {
  margin-bottom: 10px;
}

.session-finder-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ezpt-text-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.session-finder-title span {
  color: var(--ezpt-blue-primary);
}

.session-finder-subtitle {
  font-size: 1rem;
  color: var(--ezpt-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Controls bar */
.sf-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.sf-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.sf-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ezpt-text-muted);
  pointer-events: none;
}

.sf-input {
  width: 100%;
  height: 46px;
  padding: 0 14px 0 42px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--ezpt-radius-md);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--ezpt-text-dark);
  background: var(--ezpt-off-white);
  transition: border-color var(--ezpt-transition), box-shadow var(--ezpt-transition);
  outline: none;
}

.sf-input:focus {
  border-color: var(--ezpt-blue-primary);
  box-shadow: 0 0 0 3px rgba(26, 127, 212, 0.12);
  background: var(--ezpt-white);
}

.sf-input::placeholder {
  color: var(--ezpt-text-muted);
}

.sf-btn {
  height: 46px;
  padding: 0 20px;
  border-radius: var(--ezpt-radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--ezpt-transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.sf-btn-primary {
  background: var(--ezpt-blue-primary);
  color: var(--ezpt-white);
}

.sf-btn-primary:hover {
  background: var(--ezpt-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 127, 212, 0.3);
}

.sf-btn-outline {
  background: var(--ezpt-white);
  color: var(--ezpt-text-mid);
  border-color: #e2e8f0;
}

.sf-btn-outline:hover {
  border-color: var(--ezpt-blue-primary);
  color: var(--ezpt-blue-primary);
  background: var(--ezpt-blue-light);
}

.sf-btn-outline.active {
  background: var(--ezpt-blue-light);
  border-color: var(--ezpt-blue-primary);
  color: var(--ezpt-blue-primary);
}

/* Stats bar */
.sf-stats-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  background: var(--ezpt-off-white);
  border-radius: var(--ezpt-radius-md);
  border: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.sf-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: var(--ezpt-text-mid);
  font-weight: 500;
}

.sf-stat svg {
  color: var(--ezpt-blue-primary);
  flex-shrink: 0;
}

.sf-stat strong {
  color: var(--ezpt-text-dark);
  font-weight: 700;
}

.sf-stat-divider {
  width: 1px;
  height: 16px;
  background: #e2e8f0;
}

/* Two-column layout */
.sf-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 20px;
  min-height: 560px;
}

/* Trainer list panel */
.sf-panel {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--ezpt-radius-lg);
  overflow: hidden;
  background: var(--ezpt-white);
  box-shadow: var(--ezpt-shadow-sm);
}

.sf-panel-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--ezpt-blue-primary), #4f9ef8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-panel-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ezpt-white);
}

.sf-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  max-height: 540px;
}

.sf-panel-body::-webkit-scrollbar {
  width: 4px;
}

.sf-panel-body::-webkit-scrollbar-track {
  background: transparent;
}

.sf-panel-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* Trainer list items */
.sf-trainer-item {
  border-bottom: 1px solid #f1f5f9;
  transition: background var(--ezpt-transition);
}

.sf-trainer-item:last-child {
  border-bottom: none;
}

.sf-trainer-header {
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background var(--ezpt-transition);
}

.sf-trainer-header:hover {
  background: #f8fafc;
}

.sf-trainer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ezpt-blue-primary), #4f9ef8);
  color: var(--ezpt-white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sf-trainer-info {
  flex: 1;
  min-width: 0;
}

.sf-trainer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ezpt-text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sf-trainer-desc {
  font-size: 0.78rem;
  color: var(--ezpt-text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sf-trainer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.sf-trainer-type {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ezpt-blue-primary);
  background: var(--ezpt-blue-light);
  padding: 2px 8px;
  border-radius: var(--ezpt-radius-pill);
}

.sf-trainer-chevron {
  color: var(--ezpt-text-muted);
  flex-shrink: 0;
  transition: transform var(--ezpt-transition);
}

.sf-trainer-chevron.rotated {
  transform: rotate(180deg);
}

/* Expandable session details */
.sf-trainer-details {
  display: none;
  padding: 0 18px 14px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
}

.sf-trainer-details.show {
  display: block;
}

.sf-sessions-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ezpt-blue-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 0 8px;
}

.sf-session-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.sf-session-item:last-child {
  border-bottom: none;
}

.sf-session-type {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ezpt-text-dark);
}

.sf-session-time {
  font-size: 0.75rem;
  color: var(--ezpt-text-muted);
  margin-top: 2px;
}

.sf-session-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ezpt-white);
  background: var(--ezpt-green-cta);
  padding: 3px 10px;
  border-radius: var(--ezpt-radius-pill);
  white-space: nowrap;
}

.sf-view-map-btn {
  width: 100%;
  margin-top: 10px;
  height: 36px;
  background: var(--ezpt-blue-primary);
  color: var(--ezpt-white);
  border: none;
  border-radius: var(--ezpt-radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--ezpt-transition), transform var(--ezpt-transition);
}

.sf-view-map-btn:hover {
  background: var(--ezpt-blue-dark);
  transform: translateY(-1px);
}

.sf-empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--ezpt-text-muted);
  font-size: 0.875rem;
}

.sf-empty-state svg {
  margin: 0 auto 12px;
  color: #cbd5e1;
}

/* Map panel */
.sf-map-panel {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--ezpt-radius-lg);
  overflow: hidden;
  box-shadow: var(--ezpt-shadow-sm);
  display: flex;
  flex-direction: column;
}

.sf-map-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--ezpt-blue-primary), #4f9ef8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-map-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ezpt-white);
}

.sf-map-search-wrap {
  padding: 14px 16px;
  background: var(--ezpt-white);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.sf-map-search-input {
  width: 100%;
  height: 42px;
  padding: 0 50px 0 40px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--ezpt-radius-md);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--ezpt-text-dark);
  background: var(--ezpt-off-white);
  outline: none;
  transition: border-color var(--ezpt-transition), box-shadow var(--ezpt-transition);
}

.sf-map-search-input:focus {
  border-color: var(--ezpt-blue-primary);
  box-shadow: 0 0 0 3px rgba(26, 127, 212, 0.12);
  background: var(--ezpt-white);
}

.sf-map-search-input::placeholder {
  color: var(--ezpt-text-muted);
}

.sf-map-search-icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ezpt-text-muted);
  pointer-events: none;
}

.sf-locate-btn {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ezpt-white);
  border: 1.5px solid var(--ezpt-blue-primary);
  color: var(--ezpt-blue-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ezpt-transition);
}

.sf-locate-btn:hover {
  background: var(--ezpt-blue-primary);
  color: var(--ezpt-white);
  transform: translateY(-50%) scale(1.08);
}

#sf-map {
  flex: 1;
  min-height: 460px;
}

/* Filter modal */
.sf-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sf-modal-overlay.open {
  display: flex;
}

.sf-modal {
  background: var(--ezpt-white);
  border-radius: var(--ezpt-radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ezpt-shadow-lg);
  overflow: hidden;
}

.sf-modal-head {
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sf-modal-head-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ezpt-text-dark);
}

.sf-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: var(--ezpt-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--ezpt-transition);
  font-family: inherit;
}

.sf-modal-close:hover {
  background: #e2e8f0;
}

.sf-modal-search {
  padding: 14px 24px;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.sf-modal-search-input {
  width: 100%;
  height: 40px;
  padding: 0 14px 0 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--ezpt-radius-md);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--ezpt-transition);
}

.sf-modal-search-input:focus {
  border-color: var(--ezpt-blue-primary);
}

.sf-modal-search-icon {
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ezpt-text-muted);
  pointer-events: none;
}

.sf-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.sf-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sf-filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--ezpt-radius-sm);
  cursor: pointer;
  transition: background var(--ezpt-transition);
}

.sf-filter-option:hover {
  background: #f8fafc;
}

.sf-filter-option input[type="checkbox"] {
  accent-color: var(--ezpt-blue-primary);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.sf-filter-option label {
  font-size: 0.875rem;
  color: var(--ezpt-text-mid);
  cursor: pointer;
}

.sf-modal-foot {
  padding: 16px 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Session finder responsive */
@media (max-width: 1024px) {
  .sf-layout {
    grid-template-columns: 1fr;
  }

  .sf-panel {
    max-height: 340px;
  }

  #sf-map {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .session-finder {
    padding: 48px 16px;
  }

  .sf-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .sf-stats-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sf-stat-divider {
    display: none;
  }

  .sf-modal-grid {
    grid-template-columns: 1fr;
  }
}
