/* Elite Coach Booking — shared styles. Blue palette. */
:root {
  --navy-900: #0a1733;
  --navy-800: #0f2350;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --sky-100: #e0ecff;
  --sky-50: #f1f6ff;
  --ink: #0b1220;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --line: #e6edf6;
  --white: #ffffff;
  --bg: #f7faff;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(13, 38, 76, .06), 0 1px 3px rgba(13, 38, 76, .08);
  --shadow-md: 0 10px 30px -12px rgba(13, 38, 76, .25);
  --shadow-lg: 0 30px 60px -20px rgba(13, 38, 76, .35);
  --max: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-600); margin: 0 0 14px;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; }
.section { padding: 88px 0; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { color: var(--slate-500); font-size: 18px; margin: 16px 0 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 16px; padding: 13px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: 0 8px 20px -8px rgba(37, 99, 235, .7); }
.btn-primary:hover { background: var(--blue-700); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-light { background: #fff; color: var(--navy-900); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-light:hover { color: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 250, 255, .82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--navy-900); letter-spacing: -.01em; }
.brand:hover { color: var(--navy-900); }
.brand .logo { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); display: grid; place-items: center; box-shadow: 0 6px 14px -6px rgba(37,99,235,.8); }
.brand .logo svg { width: 19px; height: 19px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--slate-700); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--blue-600); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 70% -10%, var(--navy-800), var(--navy-900) 60%);
  color: #fff; padding: 96px 0 110px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 15% 110%, rgba(59,130,246,.25), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5.2vw, 56px); font-weight: 800; }
.hero h1 .grad { background: linear-gradient(90deg, var(--blue-400), #a5c8ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { font-size: 19px; color: #c7d6f0; margin: 22px 0 32px; max-width: 540px; }
.hero .eyebrow { color: var(--blue-400); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; color: #9fb3d6; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; flex: none; }

/* Hero mock card */
.mock {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 18px; box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.25); }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.07); margin-bottom: 10px; }
.mock-row .av { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--blue-400), var(--blue-700)); flex: none; }
.mock-row .ln { flex: 1; }
.mock-row .ln b { display: block; font-size: 14px; color: #fff; font-weight: 600; }
.mock-row .ln span { font-size: 12px; color: #aebfdd; }
.mock-row .pill { font-size: 11px; font-weight: 600; color: #bfe0c4; background: rgba(52,211,153,.15); padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(52,211,153,.3); }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero { padding: 72px 0 84px; } .mock { display: none; } }

/* Features */
.features { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sky-100); }
.card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sky-50); color: var(--blue-600); display: grid; place-items: center; margin-bottom: 16px; }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--slate-500); font-size: 15px; margin: 0; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { background: linear-gradient(180deg, var(--sky-50), #fff); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { text-align: left; }
.step .num { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-600); color: #fff; font-weight: 700; display: grid; place-items: center; margin-bottom: 16px; box-shadow: 0 8px 18px -8px rgba(37,99,235,.8); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--slate-500); margin: 0; }
@media (max-width: 880px) { .step-grid { grid-template-columns: 1fr; gap: 22px; } }

/* Pricing */
.pricing { background: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px; background: #fff; box-shadow: var(--shadow-sm);
}
.plan.featured { border-color: var(--blue-500); box-shadow: var(--shadow-md); position: relative; }
.plan.featured::before {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue-600); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 999px;
}
.plan h3 { font-size: 18px; }
.plan .price { font-size: 42px; font-weight: 800; letter-spacing: -.03em; margin: 14px 0 2px; }
.plan .price span { font-size: 16px; font-weight: 500; color: var(--slate-500); }
.plan .desc { color: var(--slate-500); font-size: 14px; margin: 0 0 20px; min-height: 40px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.plan li { display: flex; gap: 10px; font-size: 15px; color: var(--slate-700); }
.plan li svg { width: 18px; height: 18px; color: var(--blue-600); flex: none; margin-top: 3px; }
.plan .btn { margin-top: auto; width: 100%; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { background: var(--sky-50); }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 17px; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--navy-900); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--blue-600); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--slate-500); margin: 0 0 18px; }

/* CTA band */
.cta-band { background: radial-gradient(900px 400px at 50% -40%, var(--navy-800), var(--navy-900)); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); }
.cta-band p { color: #c7d6f0; font-size: 18px; max-width: 560px; margin: 16px auto 30px; }
.cta-band .hero-actions { justify-content: center; }

/* Contact */
.contact { background: #fff; }
.contact-card { max-width: 560px; margin: 0 auto; text-align: center; border: 1px solid var(--line); border-radius: 20px; padding: 44px; box-shadow: var(--shadow-sm); }
.contact-card .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--sky-50); color: var(--blue-600); display: grid; place-items: center; margin: 0 auto 18px; }
.contact-card a.mail { font-size: 22px; font-weight: 700; color: var(--blue-600); }

/* Footer */
.footer { background: var(--navy-900); color: #b9c6e2; padding: 56px 0 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer-blurb { max-width: 320px; font-size: 14px; color: #93a4c8; margin: 14px 0 0; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col a { display: block; color: #b9c6e2; font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: #7e90b6; }

/* Legal pages */
.legal { background: #fff; padding: 64px 0 80px; }
.legal .wrap { max-width: 800px; }
.legal h1 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 8px; }
.legal .updated { color: var(--slate-500); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; margin: 38px 0 12px; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--slate-700); font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { font-weight: 500; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; margin-bottom: 28px; }
