/* ============================================================
   David Polly Fitness — style.css
   ============================================================ */

/* ---- Variables -------------------------------------------- */
:root {
  --bg:        #070d1a;
  --surface:   #0d1526;
  --surface-2: #111d35;
  --border:    #1e2d45;
  --border-hi: #2a3f5f;
  --ink:       #e2e8f0;
  --muted:     #8896b0;
  --brand:     #38bdf8;
  --brand-dk:  #0ea5e9;
  --brand2:    #22d3ee;
  --accent:    #34d399;
  --warning:   #f59e0b;
  --maxw:      1100px;
  --r:         1rem;
  --r-sm:      .55rem;
  --ease:      .18s ease;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.35);
  --shadow:    0 6px 28px rgba(0,0,0,.45);
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
a            { color: var(--brand); text-decoration: none; }
a:hover      { color: var(--brand2); text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; }
ul           { list-style: none; }
img          { display: block; max-width: 100%; }

/* ---- Layout ----------------------------------------------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Header / Nav ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,13,26,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: .01em;
  transition: opacity var(--ease);
}
.brand:hover          { opacity: .8; color: var(--ink); }
.brand-logo           { font-size: 1.35rem; }
.footer-brand         { font-size: 1rem; margin-bottom: .6rem; display: inline-flex; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--ink);
  padding: .4rem .6rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  transition: background var(--ease);
}
.nav-toggle:hover { background: var(--surface-2); }

.nav-list {
  display: flex;
  gap: .15rem;
}
.nav-list a {
  display: inline-block;
  padding: .45rem .8rem;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--ease), background var(--ease);
}
.nav-list a:hover {
  color: var(--ink);
  background: var(--surface-2);
}
.nav-list a.active {
  color: var(--brand);
  background: rgba(56,189,248,.1);
}

@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 1rem;
    top: calc(3.75rem + 6px);
    background: var(--surface);
    border: 1px solid var(--border-hi);
    border-radius: var(--r);
    padding: .6rem;
    min-width: 180px;
    gap: .1rem;
    box-shadow: var(--shadow);
  }
  .nav-list.open { display: flex; }
  .nav-list a { padding: .6rem 1rem; font-size: .95rem; }
}

/* ---- Main -------------------------------------------------- */
.site-main { min-height: 65vh; }

/* ---- Hero -------------------------------------------------- */
.hero {
  background:
    linear-gradient(130deg, rgba(56,189,248,.12) 0%, rgba(34,211,238,.07) 45%, transparent 70%),
    radial-gradient(ellipse 900px 420px at 0% -5%, rgba(52,211,153,.1), transparent 65%);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0 4.5rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 3rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .9rem;
  background: linear-gradient(135deg, var(--ink) 55%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 48ch;
}
.hero-actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: .9rem;
}
.hero-art {
  font-size: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 0 24px rgba(56,189,248,.22));
}

@media (max-width: 820px) {
  .hero { padding: 3rem 0 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-art { font-size: 4rem; justify-content: flex-start; order: -1; }
}

/* ---- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .93rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--ease), box-shadow var(--ease), transform var(--ease), background var(--ease), border-color var(--ease);
}
.btn:hover  { opacity: .92; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #031525;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(56,189,248,.18);
}
.btn-primary:hover { box-shadow: 0 0 28px rgba(56,189,248,.32); color: #031525; }

.btn-outline {
  color: var(--ink);
  border-color: var(--border-hi);
  background: transparent;
}
.btn-outline:hover { background: var(--surface-2); border-color: var(--muted); color: var(--ink); }

/* ---- Cards ------------------------------------------------- */
.card, .info-card, .price-card, .cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.card:hover, .info-card:hover, .cert-card:hover {
  border-color: var(--border-hi);
  border-top-color: var(--brand);
  box-shadow: 0 8px 36px rgba(0,0,0,.35);
  transform: translateY(-3px);
}
.card h3, .info-card h3, .cert-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .55rem;
}
.card p, .info-card p, .cert-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin: 0;
}

/* ---- Features (home 3-col grid) --------------------------- */
.features { padding: 3.5rem 0; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }

/* ---- CTA section ------------------------------------------ */
.cta {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 900px 500px at 50% 120%, rgba(56,189,248,.1), transparent 65%),
    var(--surface);
  text-align: center;
}
.cta h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: .75rem;
}
.cta > .container > p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* ---- Inner page layout ------------------------------------ */
.page { padding: 3.5rem 0 3rem; }
.page h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}
.page h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 .75rem;
}
.page > p, .page .lead {
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.75;
  margin-bottom: .9rem;
}

/* ---- Info grid (About) ------------------------------------ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }

/* ---- Pricing (Services) ----------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.price-card h3    { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.price-card > p   { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: .85rem; }
.price-card ul    { list-style: none; padding-left: 0; color: var(--muted); font-size: .88rem; margin-bottom: .85rem; }
.price-card li    { margin: .35rem 0; padding-left: 1.35rem; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: .82rem; top: .05rem; }
.price            { color: var(--muted); font-size: .8rem; margin: 0; margin-top: auto; padding-top: .95rem; border-top: 1px solid var(--border); }
.price strong     { display: block; font-size: 1.85rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: .2rem; letter-spacing: -.03em; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }

.steps           { padding-left: 1.3rem; list-style: decimal; color: var(--muted); margin: .75rem 0 1.5rem; }
.steps li        { margin: .6rem 0; line-height: 1.65; }
.steps strong    { color: var(--ink); }
.cta-row         { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.fineprint       { font-size: .83rem; color: var(--muted); margin: .5rem 0; }

/* ---- Certs ----------------------------------------------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
@media (max-width: 640px) { .cert-grid { grid-template-columns: 1fr; } }
.cert-grid .cert-card:last-child:nth-child(2n+1) { grid-column: 1 / -1; }

/* ---- Alerts ---------------------------------------------- */
.alert {
  border-radius: var(--r-sm);
  padding: .85rem 1.1rem;
  margin: 1rem 0;
  font-size: .92rem;
  line-height: 1.55;
}
.alert-success { background: rgba(52,211,153,.1);  border: 1px solid rgba(52,211,153,.28); color: #6ee7b7; }
.alert-warn    { background: rgba(245,158,11,.1);  border: 1px solid rgba(245,158,11,.28); color: #fcd34d; }

/* ---- Contact form ---------------------------------------- */
.contact-form { max-width: 580px; margin-top: 1.75rem; }
.form-row {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}
.form-row label { font-size: .875rem; font-weight: 500; color: var(--muted); }
.form-row input,
.form-row textarea {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  color: var(--ink);
  padding: .7rem .9rem;
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(56,189,248,.12);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-actions      { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }

/* ---- Footer ---------------------------------------------- */
.site-footer {
  border-top: none;
  margin-top: 4rem;
  background: var(--surface);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.55) 30%, rgba(34,211,238,.65) 50%, rgba(56,189,248,.55) 70%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding: 2.75rem 0 1.5rem;
  align-items: start;
}
.footer-about > p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: .4rem;
}
.footer-grid h4 {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .9rem;
}
.footer-links li    { margin: .45rem 0; }
.footer-links a     { color: var(--muted); font-size: .88rem; transition: color var(--ease); }
.footer-links a:hover { color: var(--ink); }

.fineprint-bar {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .82rem;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.fineprint-bar a { color: var(--muted); }
.fineprint-bar a:hover { color: var(--brand); }

@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .fineprint-bar { flex-direction: column; align-items: flex-start; gap: .25rem; }
}

/* ---- Nav Book Now button ------------------------------------------ */
/* nav needs flex so the Book Now button sits inline with nav-list */
.nav { display: flex; align-items: center; gap: .5rem; }

.nav-book-btn {
  padding: .45rem 1rem;
  font-size: .88rem;
  flex-shrink: 0;
}
@media (max-width: 680px) { .nav-book-btn { display: none; } }

/* ---- Pricing — popular card variant ------------------------------- */
.price-card.popular {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 20px 56px rgba(56,189,248,.22);
  position: relative;
  background: linear-gradient(155deg, rgba(56,189,248,.09) 0%, var(--surface) 55%);
  translate: 0 -6px;
}
.price-card.popular:hover {
  border-color: var(--brand);
  translate: 0 -10px;
  box-shadow: 0 0 0 1px var(--brand), 0 28px 72px rgba(56,189,248,.3);
}
@media (max-width: 820px) {
  .price-card.popular { translate: none; }
}
.popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #031525;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: 100px;
  margin-bottom: .6rem;
}
.pkg-btn {
  margin-top: .75rem;
  width: 100%;
  justify-content: center;
  padding: .6rem 1rem;
  font-size: .9rem;
}

/* ---- Booking Modal ------------------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: 2rem 2rem 1.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  max-height: 92vh;
  overflow-y: auto;
}
.modal h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem;
}
.modal-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: .1rem .3rem;
  border-radius: 4px;
  transition: color var(--ease), background var(--ease);
}
.modal-close:hover { color: var(--ink); background: var(--surface-2); }

.selected-package {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .65rem .9rem;
  margin-bottom: 1.1rem;
  font-size: .9rem;
}
.pkg-info { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.selected-package .pkg-name  { color: var(--ink); font-weight: 500; }
.selected-package .pkg-sep   { color: var(--muted); }
.selected-package .pkg-price { color: var(--brand); font-weight: 700; }
.pkg-change-btn {
  background: none;
  border: none;
  color: var(--brand);
  font-size: .8rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  flex-shrink: 0;
  opacity: .8;
}
.pkg-change-btn:hover { opacity: 1; }
.package-picker { margin-bottom: 1.1rem; }
.package-picker select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--brand);
  border-radius: var(--r-sm);
  color: var(--ink);
  padding: .65rem .9rem;
  font-family: inherit;
  font-size: .93rem;
  outline: none;
  box-shadow: 0 0 0 3px rgba(56,189,248,.12);
}
.package-picker select option { background: var(--surface-2); }

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .85rem;
}
.modal-form-group label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
}
.modal-form-group input {
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  color: var(--ink);
  padding: .65rem .9rem;
  font-family: inherit;
  font-size: .93rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
}
.modal-form-group input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(56,189,248,.12);
}

.modal-submit-btn {
  width: 100%;
  margin-top: .35rem;
  padding: .8rem 1rem;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #031525;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: opacity var(--ease), box-shadow var(--ease);
  box-shadow: 0 0 18px rgba(56,189,248,.18);
}
.modal-submit-btn:hover:not(:disabled) { opacity: .92; box-shadow: 0 0 28px rgba(56,189,248,.32); }
.modal-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(3,21,37,.3);
  border-top-color: #031525;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.modal-submit-btn.loading .btn-text { display: none; }
.modal-submit-btn.loading .spinner  { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.modal-error {
  display: none;
  margin-top: .75rem;
  padding: .6rem .85rem;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.28);
  border-radius: var(--r-sm);
  color: #fca5a5;
  font-size: .88rem;
}

.stripe-note {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--muted);
  justify-content: center;
}
.stripe-note a { color: var(--muted); text-decoration: underline; }
.stripe-note a:hover { color: var(--ink); }
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Trust bar -------------------------------------------- */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .6rem 2.5rem;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  display: block;
  margin-bottom: .2rem;
}
.trust-item span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
@media (max-width: 600px) {
  .trust-item { padding: .65rem 1.1rem; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---- Section heading utility ------------------------------ */
.section-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

/* ---- Card icon -------------------------------------------- */
.card-icon {
  width: 1.9rem;
  height: 1.9rem;
  color: var(--brand);
  margin-bottom: .75rem;
  flex-shrink: 0;
}

/* ---- Testimonials ----------------------------------------- */
.testimonials {
  padding: 4rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 820px) { .testimonials-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.t-stars {
  color: var(--warning);
  font-size: .85rem;
  letter-spacing: .18em;
  margin-bottom: .85rem;
}
.t-card blockquote {
  font-style: italic;
  font-size: .93rem;
  color: var(--ink);
  line-height: 1.72;
  margin: 0 0 1.1rem;
  flex: 1;
}
.t-author strong {
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.t-author span {
  font-size: .78rem;
  color: var(--muted);
}

/* ---- FAQ -------------------------------------------------- */
.faq-section { padding: 3.5rem 0; }
.faq-list { max-width: 680px; margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: .97rem;
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  transition: transform var(--ease), color var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--brand); }
.faq-item.open .faq-q { color: var(--brand); }
.faq-a {
  display: none;
  padding: 0 2.5rem 1.1rem 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ---- About profile layout --------------------------------- */
.about-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.25rem;
  align-items: start;
  margin-bottom: 2.75rem;
}
.about-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(34,211,238,.08));
  border: 2px solid rgba(56,189,248,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.02em;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(56,189,248,.08), var(--shadow-sm);
}
.about-tagline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(56,189,248,.09);
  border: 1px solid rgba(56,189,248,.2);
  border-radius: 100px;
  padding: .28rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: .03em;
  margin-bottom: .85rem;
}
.about-intro { margin-bottom: 1rem; font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 55ch; }
@media (max-width: 560px) {
  .about-profile { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-avatar { width: 100px; height: 100px; font-size: 2.75rem; }
}

/* ---- Mobile nav Book Now ---------------------------------- */
.mobile-book-item { display: none !important; }
@media (max-width: 680px) {
  .mobile-book-item { display: list-item !important; padding: .35rem .4rem .55rem; }
  .mobile-book-item .btn { display: flex; width: 100%; justify-content: center; }
}

/* ---- Inner page header ------------------------------------ */
.page-header {
  background:
    linear-gradient(135deg, rgba(56,189,248,.055) 0%, transparent 55%),
    var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2.75rem 0 2.5rem;
}
.page-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .6rem;
  line-height: 1.15;
}
.page-header > .container > p,
.page-header .page-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 54ch;
  line-height: 1.75;
  margin: 0;
}

/* ---- Pricing section -------------------------------------- */
.pricing-section {
  padding: 3.25rem 0 2.5rem;
  background: var(--bg);
}

/* ---- How It Works section --------------------------------- */
.how-it-works-section {
  padding: 3rem 0 3.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-it-works-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

/* ---- Hero credentials card -------------------------------- */
.hero-cred-card {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 0 40px rgba(56,189,248,.07), var(--shadow);
}
.hero-cred-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted);
  margin-bottom: .9rem;
}
.hero-cred-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
}
.hero-cred-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-cred-item:first-child { padding-top: 0; }
.cred-badge {
  background: rgba(56,189,248,.1);
  border: 1px solid rgba(56,189,248,.22);
  color: var(--brand);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .18rem .5rem;
  border-radius: 4px;
  flex-shrink: 0;
  text-transform: uppercase;
  line-height: 1.5;
  white-space: nowrap;
}
.cred-badge.elite {
  background: rgba(52,211,153,.1);
  border-color: rgba(52,211,153,.22);
  color: var(--accent);
}
.hero-cred-item > span:last-child {
  font-size: .85rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 820px) {
  .hero-cred-card { order: -1; }
}

/* ---- Features section heading ----------------------------- */
.features-head {
  margin-bottom: 2rem;
}

/* ---- FAQ section background ------------------------------- */
.faq-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* ---- Stepped "How It Works" flow -------------------------- */
.steps-flow {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0 2rem;
  max-width: 560px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  position: relative;
  padding-bottom: 1.5rem;
}
.step-item:last-child { padding-bottom: 0; }
.step-connector {
  position: absolute;
  left: .9rem;
  top: 2rem;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-item:last-child .step-connector { display: none; }
.step-num {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(56,189,248,.1);
  border: 1px solid rgba(56,189,248,.28);
  color: var(--brand);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .05rem;
}
.step-body strong {
  font-size: .95rem;
  color: var(--ink);
  display: block;
  margin-bottom: .2rem;
}
.step-body p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ---- Contact info bar ------------------------------------- */
.contact-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: var(--muted);
}
.contact-info-item svg { color: var(--brand); flex-shrink: 0; }
.contact-info-item a { color: var(--ink); font-weight: 500; }
.contact-info-item a:hover { color: var(--brand); }

/* ---- Cert card icons -------------------------------------- */
.cert-card-icon {
  width: 1.85rem;
  height: 1.85rem;
  color: var(--brand);
  margin-bottom: .85rem;
}

/* ---- Footer social icons ---------------------------------- */
.footer-links.socials li a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.social-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* ---- Icon wrap -------------------------------------------- */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  background: rgba(56,189,248,.1);
  border: 1px solid rgba(56,189,248,.16);
  border-radius: .5rem;
  margin-bottom: .85rem;
  flex-shrink: 0;
}
.icon-wrap .card-icon,
.icon-wrap .cert-card-icon {
  width: .95rem;
  height: .95rem;
  margin: 0;
}

/* ---- Price card flex layout ------------------------------- */
.price-card {
  display: flex;
  flex-direction: column;
}
.pkg-btn { margin-top: .85rem; }

/* ---- Hero trust pills ------------------------------------- */
.hero-trust {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  padding: .3rem .85rem;
  font-size: .79rem;
  color: var(--muted);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
a.trust-pill:hover {
  border-color: rgba(56,189,248,.45);
  color: var(--brand);
  background: rgba(56,189,248,.06);
}
.trust-pill svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ---- Online coaching spotlight ---------------------------- */
.online-spotlight {
  padding: 4.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 820px) {
  .spotlight-inner { grid-template-columns: 1fr; }
}
.spotlight-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}
.spotlight-list li {
  padding: .38rem 0 .38rem 1.5rem;
  position: relative;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.6;
}
.spotlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: .85rem;
  top: .42rem;
}
.spotlight-card {
  background: var(--surface-2);
  border: 1px solid var(--brand);
  border-radius: var(--r);
  padding: 1.75rem;
  box-shadow: 0 0 0 1px var(--brand), 0 16px 48px rgba(56,189,248,.16);
}
.spotlight-card-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--brand);
  margin-bottom: .6rem;
  display: block;
}
.spotlight-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.spotlight-price span {
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.spotlight-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.spotlight-card-features li {
  padding: .28rem 0 .28rem 1.35rem;
  position: relative;
  color: var(--muted);
  font-size: .88rem;
}
.spotlight-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: .8rem;
  top: .3rem;
}
.spotlight-full-btn {
  width: 100%;
  justify-content: center;
}

/* ---- Scroll reveal --------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.card.reveal.visible:hover,
.info-card.reveal.visible:hover,
.cert-card.reveal.visible:hover { transform: translateY(-3px); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
/* 2-col cert grid: reset stagger per-row so left col always leads */
.cert-grid .reveal:nth-child(3) { transition-delay: 0s; }
.cert-grid .reveal:nth-child(4) { transition-delay: .1s; }
.cert-grid .reveal:nth-child(5) { transition-delay: 0s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Floating CTA bar ------------------------------------ */
.float-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13,21,38,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.float-bar.visible { transform: translateY(0); }
.float-bar-text { font-size: .875rem; color: var(--muted); line-height: 1.35; }
.float-bar-text strong { display: block; color: var(--ink); font-weight: 600; font-size: .95rem; }
@media (max-width: 480px) { .float-bar-text { display: none; } .float-bar { justify-content: center; } }

/* ---- Form validation ------------------------------------- */
.form-row input.input-error,
.form-row textarea.input-error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.12);
}
.form-field-error {
  font-size: .8rem;
  color: #f87171;
  margin-top: .15rem;
}

/* ---- Confirmation page ----------------------------------- */
.confirm-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
.confirm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
@media (max-width: 560px) { .confirm-card { padding: 2rem 1.25rem; } }
.confirm-icon {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem; font-weight: 700;
}
.confirm-icon-success { background: rgba(52,211,153,.12); color: var(--accent); border: 1px solid rgba(52,211,153,.28); }
.confirm-icon-cancel  { background: rgba(100,116,139,.1);  color: var(--muted);  border: 1px solid var(--border); }
.confirm-card h1 { font-size: 1.7rem; font-weight: 800; margin-bottom: .75rem; }
.confirm-card > p { color: var(--muted); line-height: 1.7; margin-bottom: .5rem; }
.confirm-detail {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
  text-align: left;
}
.confirm-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .4rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.confirm-detail-row:last-child { border-bottom: none; }
.confirm-detail-row span:first-child { color: var(--muted); }
.confirm-detail-row span:last-child  { font-weight: 600; color: var(--ink); }
.confirm-status { color: var(--accent) !important; font-weight: 700 !important; }
