/*
Theme Name: SuccessScheduler
Theme URI: https://successscheduler.com
Description: Custom coaching platform theme — structure, growth, results
Version: 1.1
Author: SuccessScheduler
Text Domain: successscheduler
*/

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

:root {
  --navy:    #0f1b2d;
  --blue:    #1a3a5c;
  --blue-l:  #2563a8;
  --gold:    #f0a500;
  --gold-l:  #fbbf24;
  --grey:    #f8f9fb;
  --border:  #e2e8f0;
  --text:    #1e293b;
  --mid:     #64748b;
  --white:   #ffffff;
  --font:    'Plus Jakarta Sans', system-ui, sans-serif;
  --radius:  8px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header { background: var(--navy); color: var(--white); padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { font-size: 1.25rem; font-weight: 800; color: var(--white); }
.logo span { color: var(--gold); }
.main-nav { display: flex; gap: 2rem; }
.main-nav a { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500; transition: color .2s; }
.main-nav a:hover { color: var(--white); }
.header-cta { background: var(--gold); color: var(--navy); padding: .5rem 1.25rem; border-radius: var(--radius); font-weight: 700; font-size: .875rem; transition: background .2s; }
.header-cta:hover { background: var(--gold-l); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: var(--white); padding: 6rem 0; text-align: center; }
.hero__tag { display: inline-block; background: rgba(240,165,0,.15); border: 1px solid rgba(240,165,0,.4); color: var(--gold); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .35rem 1rem; border-radius: 20px; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto 2.5rem; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: var(--radius); font-weight: 700; font-size: .95rem; cursor: pointer; border: 2px solid transparent; transition: all .2s; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-l); }
.btn-outline-white { border-color: rgba(255,255,255,.4); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-blue { background: var(--blue-l); color: var(--white); }
.btn-blue:hover { background: var(--blue); }

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-grey { background: var(--grey); }
.section-navy { background: var(--navy); color: var(--white); }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: .75rem; }
.section-sub { color: var(--mid); font-size: 1.05rem; margin-bottom: 3rem; max-width: 560px; }

/* ── Pillar grid ─────────────────────────────────────────────────── */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.pillar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: box-shadow .2s, transform .2s; }
.pillar-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-3px); }
.pillar-card__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.pillar-card__title { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; color: var(--navy); }
.pillar-card__text { font-size: .875rem; color: var(--mid); }

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pricing-card { border: 2px solid var(--border); border-radius: var(--radius); padding: 2rem; background: var(--white); }
.pricing-card.featured { border-color: var(--gold); background: var(--navy); color: var(--white); }
.pricing-card__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mid); margin-bottom: .5rem; }
.pricing-card.featured .pricing-card__label { color: var(--gold); }
.pricing-card__price { font-size: 2.5rem; font-weight: 900; margin-bottom: .25rem; }
.pricing-card__period { font-size: .875rem; color: var(--mid); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-card__period { color: rgba(255,255,255,.6); }
.pricing-card__features { list-style: none; margin-bottom: 2rem; }
.pricing-card__features li { padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; display: flex; align-items: center; gap: .5rem; }
.pricing-card.featured .pricing-card__features li { border-color: rgba(255,255,255,.1); }
.pricing-card__features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── Testimonials ────────────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.testimonial__text { font-style: italic; color: var(--mid); margin-bottom: 1rem; line-height: 1.7; }
.testimonial__author { font-weight: 700; font-size: .875rem; }
.testimonial__role { font-size: .8rem; color: var(--mid); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }

/* ── Progress tracker preview ────────────────────────────────────── */
.tracker-preview { background: var(--navy); border-radius: var(--radius); padding: 2rem; color: var(--white); }
.tracker-row { display: flex; align-items: center; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.tracker-row:last-child { border: none; }
.tracker-icon { font-size: 1.25rem; width: 2rem; text-align: center; }
.tracker-label { flex: 1; font-size: .9rem; }
.tracker-bar { width: 120px; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.tracker-bar__fill { height: 100%; background: var(--gold); border-radius: 3px; }
.tracker-pct { font-size: .8rem; color: var(--gold); font-weight: 700; min-width: 30px; text-align: right; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-q { font-weight: 700; margin-bottom: .5rem; cursor: pointer; }
.faq-a { color: var(--mid); font-size: .9rem; line-height: 1.7; }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 2.5rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; }
.footer-logo { color: var(--white); font-weight: 800; font-size: 1.1rem; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color .2s; }
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: .8rem; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 0; }
  .main-nav { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
}
