/* =====================================================
   Neogen Football Academy — Company Profile
   Single stylesheet, mobile-first, scoped under .nav/.hero/.section etc.
   ===================================================== */

:root {
  --brand: #1E4FD1;
  --brand-dark: #0B1E4D;
  --brand-2: #3E7BFA;
  --accent: #F2C879;
  --ink: #0F172A;
  --ink-soft: #475569;
  --muted: #94A3B8;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-alt: #F1F3F8;
  --bg-dark: #05060A;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 16px 40px -16px rgba(15, 23, 42, 0.18);
  --shadow-soft: 0 8px 20px -8px rgba(15, 23, 42, 0.10);
  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-size: 16px; letter-spacing: 0.08em; color: var(--brand-dark);
}
.brand-text small {
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--muted); margin-top: 2px;
}
.nav-links { display: none; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta { padding: 9px 16px; font-size: 13px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 12px; font-weight: 700;
  font-size: 14px; cursor: pointer; border: none; transition: all .2s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; box-shadow: 0 10px 22px -10px rgba(30, 79, 209, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(30, 79, 209, 0.65); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(62, 123, 250, 0.18), transparent 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(242, 200, 121, 0.18), transparent 60%),
    linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 79, 209, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 79, 209, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 800; color: var(--brand-dark);
  margin-bottom: 22px;
}
.grad-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-soft); max-width: 620px; margin-bottom: 32px;
}
.lead b { color: var(--ink); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.hero-stats {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; max-width: 620px;
}
.hero-stats li {
  background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.hero-stats b {
  display: block; font-size: 28px; font-weight: 800; color: var(--brand-dark);
  line-height: 1;
}
.hero-stats span {
  display: block; font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; font-weight: 600;
}

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section h2 {
  font-size: clamp(28px, 4vw, 44px); line-height: 1.15;
  letter-spacing: -0.02em; font-weight: 800; color: var(--brand-dark);
  margin-bottom: 12px;
}
.two-col { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
.two-col p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.two-col p b { color: var(--ink); }

/* ============ VALUES ============ */
.value-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.value-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(30, 79, 209, 0.2);
}
.value-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.value-card h3 {
  font-size: 17px; font-weight: 700; color: var(--brand-dark);
  margin-bottom: 6px;
}
.value-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ============ PROGRAMS ============ */
.prog-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.prog-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.prog-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prog-card:hover::after { transform: scaleX(1); }
.prog-card header { margin-bottom: 14px; }
.prog-tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(30, 79, 209, 0.1); color: var(--brand);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 10px;
}
.prog-card h3 { font-size: 22px; font-weight: 800; color: var(--brand-dark); }
.prog-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.prog-card ul { list-style: none; }
.prog-card li {
  font-size: 13.5px; color: var(--ink-soft);
  padding: 7px 0; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.prog-card li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}
.prog-card-feature {
  background: linear-gradient(160deg, #0B1E4D 0%, #1E4FD1 100%);
  color: #fff; border-color: transparent;
}
.prog-card-feature p, .prog-card-feature li { color: rgba(255, 255, 255, 0.85); }
.prog-card-feature h3 { color: #fff; }
.prog-card-feature .prog-tag {
  background: rgba(242, 200, 121, 0.2); color: var(--accent);
}
.prog-card-feature li { border-color: rgba(255, 255, 255, 0.15); }
.prog-card-feature li::before { background: var(--accent); }

/* ============ STEPS ============ */
.step-list {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.step-list li {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.step-list li:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.step-list h3 {
  font-size: 17px; font-weight: 700; color: var(--brand-dark);
  margin-bottom: 4px;
}
.step-list p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ============ FACILITIES ============ */
.facility-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.facility {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  transition: transform .2s, box-shadow .2s;
}
.facility:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.facility span { font-size: 32px; display: block; margin-bottom: 12px; }
.facility h3 { font-size: 17px; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.facility p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ============ CTA ============ */
.cta-section {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(62, 123, 250, 0.15), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #F1F3F8 100%);
}
.cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-inner h2 { margin-bottom: 12px; }
.cta-inner > p { color: var(--ink-soft); margin-bottom: 32px; }
.cta-form {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  background: #fff; padding: 16px; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.cta-form input, .cta-form select {
  padding: 13px 16px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 14px;
  background: #fff; transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
}
.cta-form input:focus, .cta-form select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(30, 79, 209, 0.08);
}
.cta-form .btn-primary { padding: 14px 20px; }
.form-note {
  margin-top: 16px; font-size: 14px; min-height: 20px; font-weight: 600;
}
.form-note.success { color: #16A34A; }
.form-note.error { color: #DC2626; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark); color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px;
}
.footer strong { color: #fff; font-size: 16px; letter-spacing: 0.08em; }
.footer > .footer-inner > div > p:first-of-type { margin-top: 8px; font-size: 13.5px; }
.footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.footer a { display: block; padding: 4px 0; font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--accent); }
.footer p { font-size: 14px; padding: 4px 0; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center; color: rgba(255, 255, 255, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (min-width: 720px) {
  .container { padding: 0 32px; }
  .hero { padding: 110px 0 80px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-grid { grid-template-columns: repeat(3, 1fr); }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-form {
    grid-template-columns: 1fr 1fr 180px auto;
    align-items: center;
  }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .two-col { grid-template-columns: 1fr 1.1fr; gap: 80px; }
  .step-list { grid-template-columns: repeat(4, 1fr); }
  .facility-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
