/* ============================================================
   BBT SPORTS PERFORMANCE — Global Stylesheet
   Dark athletic theme · crimson accent · responsive
   ============================================================ */

:root {
  --bg:        #0a0a0b;
  --bg-2:      #111114;
  --surface:   #16161a;
  --surface-2: #1d1d22;
  --line:      #2a2a31;
  --red:       #e11d2a;
  --red-dark:  #b3141f;
  --red-soft:  rgba(225,29,42,0.12);
  --text:      #f5f5f6;
  --muted:     #a7a7af;
  --muted-2:   #76767e;
  --radius:    12px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --shadow:    0 18px 50px rgba(0,0,0,.45);
  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .5px;
  text-transform: uppercase;
}

p { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.accent { color: var(--red); }
.center { text-align: center; }

/* ---------- Eyebrow / section labels ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--red);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .98rem;
  padding: 15px 30px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(225,29,42,.32); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--red); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: #0a0a0b; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,255,255,.18); }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,11,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.15rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand .accent { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--muted);
  transition: color .15s; padding: 8px 0;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { margin-left: 6px; }

/* dropdown */
.has-drop > a::after { content: " ▾"; font-size: .72em; color: var(--muted-2); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 8px; min-width: 230px; list-style: none;
  opacity: 0; visibility: hidden; transition: all .18s var(--ease);
  box-shadow: var(--shadow);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 7px; font-size: .9rem; color: var(--muted); }
.dropdown a:hover { background: var(--red-soft); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 88px;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(225,29,42,.20), transparent 60%),
    linear-gradient(180deg, #0c0c0e 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.3rem); margin: 14px 0 18px; }
.hero p.lead { font-size: 1.18rem; color: var(--muted); max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero card (assessment) */
.hero-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.hero-card .tag { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-family: var(--font-head); }
.hero-card h3 { font-size: 1.7rem; margin: 8px 0 18px; }
.check-list { list-style: none; }
.check-list li { position: relative; padding: 9px 0 9px 32px; color: var(--text); font-size: .98rem; border-bottom: 1px solid var(--line); }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
}
.hero-card .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ---------- Sections ---------- */
section { padding: 78px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 14px; }
.section-head p { font-size: 1.08rem; }
.bg-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center;
}
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--red); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .9rem; margin-top: 8px; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .2s var(--ease), border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(225,29,42,.5); }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--red-soft);
  display: grid; place-items: center; color: var(--red);
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card .card-link { display: inline-block; margin-top: 16px; color: var(--red); font-weight: 600; font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; font-size: .85rem; }
.card .card-link:hover { color: #fff; }

/* numbered pillar */
.pillar .step-num { font-family: var(--font-head); font-size: 1.1rem; color: var(--red); font-weight: 700; letter-spacing: 2px; }
.pillar h3 { font-size: 1.2rem; margin: 8px 0 8px; }

/* ---------- Checklist (who it's for) ---------- */
.who-list { list-style: none; columns: 2; column-gap: 40px; }
.who-list li { break-inside: avoid; position: relative; padding: 11px 0 11px 30px; color: var(--text); border-bottom: 1px solid var(--line); }
.who-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 26px; }
.step { display: flex; gap: 22px; align-items: flex-start; }
.step .bubble {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), var(--shadow); }
.price-card .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-family: var(--font-head); font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.price-card .plan { font-family: var(--font-head); letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }
.price-card .amount { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; margin: 6px 0; }
.price-card .amount span { font-size: 1rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.price-card .blurb { font-size: .95rem; margin-bottom: 18px; }
.price-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.price-card ul li { position: relative; padding: 9px 0 9px 28px; font-size: .95rem; color: var(--text); border-bottom: 1px solid var(--line); }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; }

/* secondary price rows */
.price-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px; margin-top: 18px;
}
.price-row h3 { font-size: 1.3rem; }
.price-row .price-row-amt { font-family: var(--font-head); font-size: 1.6rem; color: var(--red); }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; min-width: 560px; }
.cmp th, .cmp td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.cmp thead th { background: var(--surface-2); font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; font-size: .9rem; }
.cmp thead th:first-child { border-top-left-radius: 10px; }
.cmp thead th:last-child { border-top-right-radius: 10px; }
.cmp td { color: var(--muted); }
.cmp td:first-child { color: var(--text); font-weight: 500; }
.yes { color: #36c46a; font-weight: 700; }
.no  { color: var(--muted-2); font-weight: 700; }
.cmp .col-bbt { background: var(--red-soft); color: #fff; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 18px;
}
.quote p { color: var(--text); font-size: 1.02rem; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--red);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff;
}
.quote .who b { display: block; font-size: .98rem; }
.quote .who span { font-size: .82rem; color: var(--muted); }
.stars { color: var(--red); letter-spacing: 2px; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 4px 22px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-head);
  font-size: 1.1rem; letter-spacing: .5px; display: flex; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 13px 15px; color: var(--text); font-family: var(--font-body); font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { min-height: 120px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; }
.form-note { font-size: .82rem; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  border-radius: 0; padding: 70px 0; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }

/* ---------- Lead capture inline ---------- */
.lead-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* ---------- Article / prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.8rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.3rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--muted); }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--red); text-decoration: underline; }

/* page hero (simple) */
.page-hero { padding: 70px 0 56px; background: radial-gradient(800px 360px at 80% -20%, rgba(225,29,42,.18), transparent 60%), var(--bg-2); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin: 12px 0 14px; }
.page-hero p { font-size: 1.12rem; max-width: 620px; }
.breadcrumb { font-size: .82rem; color: var(--muted-2); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--red); }

/* blog list */
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: border-color .2s, transform .2s; }
.post-card:hover { border-color: rgba(225,29,42,.5); transform: translateY(-3px); }
.post-card .meta { font-size: .8rem; color: var(--red); font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; }
.post-card h3 { font-size: 1.3rem; margin: 8px 0 10px; }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-grid h4 { font-family: var(--font-head); font-size: .95rem; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 9px; }
.footer-grid a { color: var(--muted); font-size: .92rem; }
.footer-grid a:hover { color: var(--red); }
.footer-brand p { font-size: .95rem; max-width: 300px; margin-top: 12px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: var(--muted-2); }
.footer-bottom a:hover { color: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .grid-3, .grid-4, .price-grid, .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lead-split { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 22px; gap: 4px;
    transform: translateY(-130%); transition: transform .28s var(--ease); height: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 0 12px; min-width: auto; }
  .has-drop:hover .dropdown { transform: none; }
  .nav-toggle { display: block; }
  .who-list { columns: 1; }
}
@media (max-width: 540px) {
  .grid-3, .grid-4, .price-grid, .stat-strip, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  section { padding: 56px 0; }
}

/* ============================================================
   MEDIA / SOCIAL-PROOF COMPONENTS (added June 2026)
   ============================================================ */

/* photo placeholder slot — drop a real <img> in to replace */
.img-slot {
  position: relative; min-height: 240px; padding: 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 2px dashed var(--line); border-radius: var(--radius);
  display: grid; place-items: center; text-align: center; color: var(--muted-2);
}
.img-slot .cam { font-size: 2.2rem; margin-bottom: 8px; opacity: .75; }
.img-slot .slot-label { font-size: .8rem; max-width: 260px; line-height: 1.4; }
.img-slot.tall { min-height: 340px; }
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery .img-slot { min-height: 200px; }

/* placeholder badge */
.ph { display: inline-block; background: rgba(225,29,42,.15); color: #ff7b84;
  font-family: var(--font-head); font-size: .6rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px; vertical-align: middle; margin-left: 8px; }

/* Google reviews */
.reviews-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.g-rating { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 26px; }
.g-rating .score { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1; }
.g-rating .gstars { color: #fbbc04; letter-spacing: 2px; font-size: 1.1rem; }
.g-rating .gmeta { font-size: .82rem; color: var(--muted); }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.review-card .gstars { color: #fbbc04; letter-spacing: 2px; }
.review-card p { color: var(--text); margin: 12px 0 16px; font-size: .98rem; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .who .ravatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-family: var(--font-head); color: var(--muted); font-weight: 700; }
.review-card .who b { display: block; font-size: .92rem; }
.review-card .who span { font-size: .78rem; color: var(--muted-2); }

/* college commit wall */
.commit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.commit { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 16px; text-align: center; }
.commit .logo-slot { width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 50%; border: 2px dashed var(--line); display: grid; place-items: center; color: var(--muted-2); font-size: .62rem; }
.commit .athlete { font-family: var(--font-head); color: #fff; font-size: 1rem; }
.commit .school { color: var(--red); font-size: .85rem; font-weight: 600; }
.commit .sport-yr { color: var(--muted-2); font-size: .78rem; }

/* testimonial photo avatar (real photo drop-in) */
.quote .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

@media (max-width: 920px) {
  .gallery, .commit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .gallery, .commit-grid { grid-template-columns: 1fr; }
}
