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

:root {
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-light: #EEF2FF;
  --gold: #F59E0B;
  --green: #10B981;
  --text: #111827;
  --text-secondary: #6B7280;
  --border: #E5E7EB;
  --bg: #F9FAFB;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
}

body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; text-decoration: none; transition: all .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-large { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header .container { display: flex; align-items: center; gap: 32px; height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { font-size: 22px; }
.logo-text { font-size: 20px; font-weight: 700; color: var(--text); }
.nav { display: flex; gap: 24px; margin-left: auto; }
.nav a { text-decoration: none; color: var(--text-secondary); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav a:hover { color: var(--primary); }
.header .btn { margin-left: 8px; }

/* HERO */
.hero { background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 50%, #EDE9FE 100%); padding: 80px 0 72px; text-align: center; }
.hero-badge { display: inline-block; background: #fff; color: var(--green); font-size: 14px; font-weight: 600; padding: 6px 16px; border-radius: 99px; border: 1.5px solid #D1FAE5; margin-bottom: 24px; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.15; color: var(--text); margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--text-secondary); max-width: 560px; margin: 0 auto 36px; }

.search-bar { display: flex; gap: 12px; max-width: 600px; margin: 0 auto 40px; background: #fff; padding: 8px; border-radius: 14px; box-shadow: var(--shadow-lg); }
.search-input-wrap { flex: 1; position: relative; display: flex; align-items: center; }
.search-icon { position: absolute; left: 12px; width: 20px; height: 20px; color: var(--text-secondary); }
.search-input-wrap input { width: 100%; padding: 10px 12px 10px 40px; border: none; outline: none; font-size: 15px; font-family: inherit; background: transparent; }
.search-bar .btn { border-radius: 10px; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-size: 24px; font-weight: 700; color: var(--primary); }
.stat span { font-size: 13px; color: var(--text-secondary); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* FILTERS */
.filters-section { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 64px; z-index: 90; }
.filters { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 11px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .5px; }
.filter-group select {
  padding: 8px 12px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit; background: #fff; cursor: pointer;
  color: var(--text); min-width: 160px; outline: none; transition: border-color .15s;
}
.filter-group select:focus { border-color: var(--primary); }
.reset-btn { padding: 8px 16px; font-size: 13px; }
.results-count { margin-top: 12px; font-size: 14px; color: var(--text-secondary); }

/* COACHES GRID */
.coaches-section { padding: 40px 0 60px; background: var(--bg); }
.coaches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.coach-card {
  background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border);
  padding: 24px; transition: transform .2s, box-shadow .2s; position: relative;
  display: flex; flex-direction: column; gap: 16px;
}
.coach-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: #C7D2FE; }
.coach-card-premium { border-color: #C7D2FE; background: linear-gradient(to bottom right, #fff, #FAFAFE); }

.premium-badge { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px; }

.coach-header { display: flex; gap: 16px; padding-right: 80px; }
.coach-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.coach-info { flex: 1; min-width: 0; }
.coach-name { font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.coach-title { font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }

.coach-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { display: flex; gap: 1px; }
.star { font-size: 14px; color: #D1D5DB; }
.star.full { color: var(--gold); }
.star.half { color: var(--gold); opacity: .5; }
.rating-num { font-size: 14px; font-weight: 700; color: var(--text); }
.rating-count { font-size: 12px; color: var(--text-secondary); }

.coach-certs { display: flex; gap: 6px; flex-wrap: wrap; }
.cert-badge { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; letter-spacing: .3px; }
.cert-icf { background: #DBEAFE; color: #1D4ED8; }
.cert-emcc { background: #D1FAE5; color: #065F46; }
.cert-mcc { background: #EDE9FE; color: #6D28D9; }
.cert-eqa { background: #D1FAE5; color: #065F46; }

.coach-intro { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

.coach-specs { display: flex; gap: 6px; flex-wrap: wrap; }
.spec-tag { font-size: 12px; background: var(--bg); color: var(--text-secondary); padding: 4px 10px; border-radius: 99px; border: 1px solid var(--border); }

.coach-footer { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.coach-meta { flex: 1; min-width: 0; }
.coach-price { display: block; font-size: 15px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.coach-exp { font-size: 12px; color: var(--text-secondary); white-space: nowrap; }
.free-consult { display: block; font-size: 12px; color: var(--green); font-weight: 500; margin-top: 2px; }

.load-more-wrap { text-align: center; margin-top: 40px; }

/* HOW IT WORKS */
.how-it-works { padding: 80px 0; background: #fff; }
.how-it-works h2 { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 32px 24px; border-radius: var(--radius); background: var(--bg); }
.step-num { width: 48px; height: 48px; background: var(--primary); color: #fff; font-size: 20px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-secondary); }

/* FOR COACHES */
.for-coaches { padding: 80px 0; background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%); color: #fff; }
.for-coaches-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.badge { display: inline-block; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 99px; margin-bottom: 16px; }
.badge-green { background: rgba(16,185,129,.2); color: #34D399; border: 1px solid rgba(16,185,129,.3); }
.for-coaches-text h2 { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.for-coaches-text p { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 24px; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.benefits-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.check { color: var(--green); font-weight: 700; }
.check.gold { color: var(--gold); }
.for-coaches-img img { width: 100%; border-radius: var(--radius); object-fit: cover; max-height: 420px; }

/* CONTACT */
.contact-section { padding: 80px 0; background: var(--bg); }
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-inner h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.contact-inner > p { color: var(--text-secondary); margin-bottom: 40px; }
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 500; }
.form-group input, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: inherit; outline: none; transition: border-color .15s;
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--text-secondary); text-align: center; margin-top: 12px; }

.form-success { padding: 48px; text-align: center; }
.success-icon { width: 64px; height: 64px; background: #D1FAE5; color: var(--green); font-size: 28px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); }

/* FOOTER */
.footer { background: var(--text); color: rgba(255,255,255,.7); padding: 48px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 13px; margin-top: 6px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; font-size: 13px; text-align: center; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .header .btn { display: none; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 32px; }
  .search-bar { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .steps { grid-template-columns: 1fr; }
  .for-coaches-inner { grid-template-columns: 1fr; }
  .for-coaches-img { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; }
  .filters { flex-direction: column; }
  .filter-group select { min-width: unset; width: 100%; }
  .footer-inner { flex-direction: column; gap: 24px; }
}
