/* Alonzo Baseball — shared stylesheet */

:root {
  --navy: #0a0a0b;          /* black (primary dark) */
  --navy-2: #16171a;        /* charcoal */
  --red: #e6b422;           /* gold (primary accent) */
  --red-dark: #c99a12;      /* deep gold */
  --gold: #e6b422;
  --gold-bright: #ffd75e;   /* highlight */
  --gold-deep: #b8860b;     /* shadow */
  --gold-shine: linear-gradient(135deg, #fff3c4 0%, #f5cf4e 28%, #e6b422 52%, #b8860b 78%, #f5cf4e 100%);
  --gold-soft: rgba(230,180,34,0.14);
  --silver: #b8bcc4;        /* silver */
  --silver-light: #d9dce1;
  --ink: #1a1c20;
  --slate: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --white: #ffffff;
  --radius: 14px;
  --maxw: 1140px;
  --shadow: 0 10px 30px rgba(10, 10, 11, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 10, 11, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate); }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--gold-bright);
  background: linear-gradient(135deg, #fff3c4, #f5cf4e 40%, #e6b422 70%, #ffd75e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--navy); font-size: 1.12rem; letter-spacing: -0.02em; }
.brand .mark { width: 80px; height: 80px; display: block; }
.brand .mark img, .brand .mark svg { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand small { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; color: var(--slate); text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; color: var(--navy);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--bg-soft); }
.nav-links a.active {
  color: var(--gold);
  background: linear-gradient(135deg, #d9a400, #e6b422 40%, #b8860b 70%, #e6b422);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links a.btn { color: var(--white); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 10px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
}
.btn-primary { background: var(--gold-shine); background-size: 200% 200%; background-position: 0% 50%; color: #14120a; box-shadow: 0 4px 14px rgba(184,134,11,0.35), inset 0 1px 0 rgba(255,255,255,0.55); transition: transform 0.12s, box-shadow 0.2s, background-position 0.5s; }
.btn-primary:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(230,180,34,0.45), inset 0 1px 0 rgba(255,255,255,0.6); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 500px at 70% -10%, rgba(201,162,39,0.18), transparent 60%), linear-gradient(180deg, #0a0a0b, #16171a);
  color: var(--white); padding: 96px 0 104px; position: relative; overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--silver-light), var(--gold), transparent); opacity: 0.6; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero h1 .accent { background: linear-gradient(135deg, #fff3c4, #f5cf4e 40%, #e6b422 70%, #ffd75e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gold-bright); }
.grad-gold { background-image: linear-gradient(135deg, #fff3c4, #f5cf4e 40%, #e6b422 70%, #ffd75e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #ffd75e; }
.grad-silver { background-image: linear-gradient(135deg, #ffffff, #dfe2e6 45%, #a7adb5 75%, #eef0f2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #dfe2e6; }
.grad-bronze { background-image: linear-gradient(135deg, #f6cfa6, #cd8a4c 42%, #9c6631 72%, #e0a56c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #e0a56c; }
.hero p { color: rgba(255,255,255,0.78); font-size: 1.2rem; max-width: 52ch; margin: 22px 0 34px; }
.hero .eyebrow { color: var(--gold); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 2.4rem; color: var(--white); font-weight: 800; letter-spacing: -0.02em; }
.hero-stats .stat span { color: rgba(255,255,255,0.66); font-size: 0.92rem; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }

/* ---------- Black panel (rounded box behind section content) ---------- */
.panel {
  background: linear-gradient(180deg, #0a0a0b, #16171a);
  border-radius: 24px;
  padding: 56px 44px;
  border: 1px solid rgba(255,255,255,0.08);
}
.panel h2 { color: #fff; }
.panel .section-head p { color: rgba(255,255,255,0.78); }
.panel > p { color: rgba(255,255,255,0.82); }
.panel > p strong { color: #fff; }
.panel blockquote { color: #fff !important; }
.panel blockquote span { color: rgba(255,255,255,0.6) !important; }
.panel .step h3 { color: #fff; }
.panel .step p { color: rgba(255,255,255,0.82); }
.panel .contact-info h4 { color: #fff; }
.panel .contact-info p { color: rgba(255,255,255,0.8); }
.panel .contact-info .info-item { border-bottom-color: rgba(255,255,255,0.12); }

/* ---------- Social buttons ---------- */
.social-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 999px; color: #fff; font-weight: 600; font-size: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,162,39,0.5);
  transition: transform 0.12s, border-color 0.15s, background 0.15s;
}
.social-btn:hover { transform: translateY(-2px); border-color: var(--gold); background: rgba(201,162,39,0.14); }
.social-btn svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--gold); }
@media (max-width: 700px) { .panel { padding: 40px 22px; } }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; margin-top: 14px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .num {
  width: 44px; height: 44px; border-radius: 11px; background: var(--navy); color: var(--white);
  display: grid; place-items: center; font-weight: 800; margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 22px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step .badge {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(var(--navy), var(--navy)) padding-box, var(--gold-shine) border-box;
  border: 3px solid transparent; color: var(--gold-bright); display: grid; place-items: center; font-weight: 800;
  box-shadow: 0 4px 12px rgba(184,134,11,0.35);
}
.step h3 { margin-bottom: 4px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; align-items: stretch; }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.plan.featured { border: 2px solid var(--red); position: relative; box-shadow: var(--shadow-lg); }
.plan .tag { position: absolute; top: -13px; left: 30px; background: var(--gold-shine); color: #14120a; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 20px; box-shadow: 0 3px 10px rgba(184,134,11,0.4), inset 0 1px 0 rgba(255,255,255,0.5); }
.plan h3 { font-size: 1.35rem; }
.plan .price { font-size: 1.7rem; font-weight: 800; color: var(--navy); margin: 10px 0 2px; letter-spacing: -0.03em; white-space: nowrap; }
.plan .price span { font-size: 1rem; font-weight: 600; color: var(--slate); }
.plan .desc { min-height: 48px; margin-bottom: 20px; }
.plan ul { list-style: none; margin: 8px 0 26px; display: grid; gap: 12px; }
.plan li { position: relative; padding-left: 30px; color: var(--ink); font-size: 0.96rem; }
.plan li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; background: rgba(215,38,61,0.12); color: var(--red); border-radius: 50%; display: grid; place-items: center; font-size: 0.72rem; font-weight: 800; }
.plan .btn { margin-top: auto; text-align: center; }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-visual {
  border-radius: var(--radius); background: linear-gradient(160deg, var(--navy), var(--navy-2));
  min-height: 380px; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-visual .big { font-size: 4.4rem; font-weight: 900; letter-spacing: -0.03em; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--navy); font-size: 0.92rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: var(--bg-soft); transition: border 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,38,61,0.12); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.contact-info .info-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border: 0; }
.contact-info .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--navy); color: var(--gold); border: 1px solid rgba(201,162,39,0.55); display: grid; place-items: center; font-size: 1.2rem; flex: 0 0 auto; }
.contact-info h4 { color: var(--navy); margin-bottom: 2px; }

/* ---------- Video testimonials ---------- */
.video-grid {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px; -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
}
.video-grid::-webkit-scrollbar { height: 8px; }
.video-grid::-webkit-scrollbar-track { background: var(--bg-soft); border-radius: 10px; }
.video-grid::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #fff3c4, #f5cf4e 30%, #e6b422 60%, #b8860b 85%, #f5cf4e); border-radius: 10px; }
.video-card {
  flex: 0 0 300px; max-width: 300px; scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform 0.15s, box-shadow 0.15s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 9 / 16; background: #0a0a0b;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: linear-gradient(160deg, #16171a, #0a0a0b); color: var(--silver);
  border: 2px dashed rgba(201,162,39,0.4); border-radius: var(--radius);
}
.video-placeholder .play {
  width: 60px; height: 60px; border-radius: 50%; background: var(--gold-shine);
  display: grid; place-items: center; margin: 0 auto 14px; color: #14120a; font-size: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.video-placeholder small { display: block; padding: 0 18px; font-size: 0.82rem; line-height: 1.5; }
.video-card .cap { padding: 16px 18px; }
.video-card .cap h4 { color: var(--navy); font-size: 1rem; }
.video-card .cap span { color: var(--slate); font-size: 0.85rem; }
@media (max-width: 900px) { .video-card { flex-basis: 260px; max-width: 260px; } }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; height: 100%;
}
.quote .stars {
  letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem;
  color: var(--gold-bright);
  background: linear-gradient(135deg, #fff3c4, #f5cf4e 40%, #e6b422 70%, #ffd75e);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.quote blockquote { color: var(--ink); font-size: 1.05rem; line-height: 1.6; margin-bottom: 20px; }
.quote blockquote::before { content: "\201C"; color: var(--silver); font-size: 2.4rem; line-height: 0; vertical-align: -0.35em; margin-right: 4px; font-family: Georgia, serif; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .avatar {
  width: 46px; height: 46px; border-radius: 50%; color: var(--gold-bright);
  display: grid; place-items: center; font-weight: 800; flex: 0 0 auto;
  background: linear-gradient(var(--navy), var(--navy)) padding-box, var(--gold-shine) border-box;
  border: 2px solid transparent;
}
.quote .who h4 { color: var(--navy); font-size: 0.98rem; }
.quote .who span { color: var(--slate); font-size: 0.85rem; }
.result-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.result-row .stat strong { display: block; font-size: 2.6rem; color: var(--navy); font-weight: 800; letter-spacing: -0.02em; }
.result-row .stat span { color: var(--slate); font-size: 0.95rem; }
.result-row .stat .plus { color: var(--gold); }
@media (max-width: 900px) { .result-row { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; border-radius: 20px; padding: 60px 40px; margin: 0 24px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 14px auto 28px; max-width: 46ch; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-2); color: rgba(255,255,255,0.7); padding: 54px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer .brand { color: #fff; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: #fff; }
.footer-links a.active {
  color: var(--gold-bright);
  background: linear-gradient(135deg, #fff3c4, #f5cf4e 40%, #e6b422 70%, #ffd75e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 34px; padding-top: 22px; font-size: 0.86rem; text-align: center; }

/* ---------- Page header ---------- */
.page-head { background: linear-gradient(180deg, #0a0a0b, #16171a); color: #fff; padding: 72px 0; text-align: center; position: relative; }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--silver-light), var(--gold), transparent); opacity: 0.6; }
.page-head h1 { color: #fff; }
.page-head h1 .accent, .gold-text { background: linear-gradient(135deg, #fff3c4, #f5cf4e 40%, #e6b422 70%, #ffd75e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gold-bright); }
.page-head p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 54ch; margin: 16px auto 0; }
.page-head .eyebrow { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .price-grid { grid-template-columns: 1fr; }
  .grid-2, .split, .contact-grid { grid-template-columns: 1fr; }
  .split { gap: 32px; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-toggle { display: block; }
  .hero-stats { gap: 28px; }
}
