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

:root {
  --bg: #0d0f0d;
  --bg2: #161815;
  --panel: #1c1f1b;
  --lime: #c2f73c;
  --lime-dark: #a4d62f;
  --text: #f0f2ec;
  --muted: #8d9286;
  --line: rgba(194,247,60,0.18);
}

html { scroll-behavior: smooth; }

body { background: var(--bg); color: var(--text); font-family: 'Arial', 'Helvetica Neue', sans-serif; overflow-x: hidden; }

/* PROMO BANNER */
.promo-bar { position: sticky; top: 0; z-index: 300; background: #000; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 22px; height: 48px; border-bottom: 1px solid var(--line); }
.promo-back { display: inline-flex; align-items: center; gap: 7px; color: var(--text); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; opacity: 0.8; transition: opacity 0.2s, transform 0.2s; white-space: nowrap; }
.promo-back:hover { opacity: 1; transform: translateX(-3px); }
.promo-msg { font-size: 13px; letter-spacing: 0.02em; text-align: center; flex: 1; }
.promo-msg strong { color: var(--lime); }
.promo-cta { background: var(--lime); color: #0d0f0d; text-decoration: none; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 18px; border-radius: 4px; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.promo-cta:hover { background: var(--lime-dark); transform: translateY(-1px); }

/* NAV */
nav { position: absolute; top: 48px; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 26px 60px; }
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-top { font-size: 9px; letter-spacing: 5px; color: var(--lime); text-transform: uppercase; margin-bottom: 5px; }
.logo-main { font-size: 24px; font-weight: 900; letter-spacing: 2px; color: #fff; text-transform: uppercase; font-style: italic; }
nav ul { list-style: none; display: flex; gap: 32px; align-items: center; }
nav a { color: #fff; text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; transition: color 0.3s; position: relative; }
nav a:hover { color: var(--lime); }
nav a.active { color: var(--lime); }
nav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--lime); }
.nav-cta { background: var(--lime); padding: 11px 22px; border-radius: 4px; color: var(--bg); }
.nav-cta:hover { background: var(--lime-dark); color: var(--bg); }
.nav-cta.active::after { display: none; }

/* HERO */
.hero { height: calc(100vh - 48px); min-height: 580px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,15,13,0.9) 0%, rgba(13,15,13,0.6) 55%, rgba(13,15,13,0.4) 100%), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover; }
.hero-content { position: relative; max-width: 660px; padding: 0 60px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 5px; color: var(--lime); text-transform: uppercase; margin-bottom: 22px; display: flex; align-items: center; gap: 14px; }
.hero-eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--lime); }
.hero h1 { font-size: clamp(46px, 7vw, 88px); line-height: 0.98; color: #fff; font-weight: 900; font-style: italic; margin-bottom: 22px; text-transform: uppercase; letter-spacing: -1px; }
.hero h1 em { color: var(--lime); font-style: italic; display: block; }
.hero-sub { font-weight: 300; font-size: 16px; line-height: 1.8; color: rgba(240,242,236,0.8); max-width: 460px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero { height: 52vh; min-height: 340px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,15,13,0.95) 0%, rgba(13,15,13,0.4) 70%, rgba(13,15,13,0.6) 100%); }
.page-hero-content { position: relative; padding: 0 60px 52px; max-width: 760px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1; color: #fff; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.5px; }
.page-hero h1 em { color: var(--lime); font-style: italic; }
.page-hero p { font-weight: 300; font-size: 16px; line-height: 1.8; color: rgba(240,242,236,0.8); margin-top: 14px; max-width: 540px; }

.btn-primary { background: var(--lime); color: #0d0f0d; padding: 16px 34px; border-radius: 4px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; text-decoration: none; transition: background 0.3s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-2px); }
.btn-ghost { color: #fff; padding: 16px 34px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.35); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--lime); font-weight: 800; margin-bottom: 16px; }

/* STATS BAR */
.stats { background: var(--lime); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 20px; text-align: center; }
.stat-val { font-size: 40px; font-weight: 900; font-style: italic; color: #0d0f0d; }
.stat-lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #2a3018; margin-top: 4px; font-weight: 700; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.about-img { background-position: center; background-size: cover; min-height: 540px; }
.about-text { padding: 90px 70px; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-size: 42px; line-height: 1.1; font-weight: 900; font-style: italic; margin-bottom: 22px; text-transform: uppercase; letter-spacing: -0.5px; }
.about-text p { color: var(--muted); line-height: 1.9; font-size: 15px; margin-bottom: 18px; font-weight: 300; }
.checklist { list-style: none; margin-top: 14px; }
.checklist li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 15px; }
.checklist svg { flex-shrink: 0; }

/* PROGRAMS / CARDS */
.programs { padding: 100px 60px; }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 { font-size: 46px; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.5px; }
.sec-head p { color: var(--muted); font-size: 15px; margin-top: 12px; }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1160px; margin: 0 auto; }
.prog-card { position: relative; border-radius: 10px; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.prog-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.prog-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,15,13,0.95), transparent 70%); }
.prog-card:hover img { transform: scale(1.06); }
.prog-body { position: relative; padding: 34px; z-index: 2; }
.prog-body h3 { font-size: 24px; font-weight: 900; font-style: italic; text-transform: uppercase; margin-bottom: 10px; }
.prog-body p { color: rgba(240,242,236,0.8); font-size: 14px; line-height: 1.7; font-weight: 300; }
.prog-tag { display: inline-block; background: var(--lime); color: #0d0f0d; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }

/* PRICING */
.pricing { padding: 100px 60px; background: var(--bg2); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.price-card { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 44px 36px; text-align: center; transition: transform 0.2s; }
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: var(--lime); position: relative; background: #20241c; }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lime); color: #0d0f0d; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; padding: 6px 16px; border-radius: 20px; }
.price-card h3 { font-size: 22px; font-weight: 900; font-style: italic; text-transform: uppercase; margin-bottom: 8px; }
.price-num { font-size: 48px; font-weight: 900; font-style: italic; color: var(--lime); margin: 16px 0; }
.price-num span { font-size: 15px; color: var(--muted); font-style: normal; font-weight: 400; }
.price-card ul { list-style: none; margin: 22px 0 30px; }
.price-card li { padding: 10px 0; color: var(--muted); font-size: 14px; border-bottom: 1px solid var(--line); font-weight: 300; }

/* QUOTE */
.quote-band { padding: 90px 60px; text-align: center; background: var(--bg); }
.quote-band blockquote { max-width: 780px; margin: 0 auto; font-size: 26px; line-height: 1.5; color: #fff; font-weight: 300; font-style: italic; }
.quote-band cite { display: block; margin-top: 24px; font-style: normal; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--lime); font-weight: 800; }

/* CONTACT */
.contact { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1180px; margin: 0 auto; }
.contact-text h2 { font-size: 44px; font-weight: 900; font-style: italic; line-height: 1.05; margin-bottom: 18px; text-transform: uppercase; letter-spacing: -0.5px; }
.contact-text p { color: var(--muted); line-height: 1.8; font-size: 15px; margin-bottom: 24px; font-weight: 300; }
.contact-info { list-style: none; }
.contact-info li { display: flex; align-items: center; gap: 14px; padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
.contact-info svg { color: var(--lime); flex-shrink: 0; }
.form-card { background: var(--panel); border: 1px solid var(--line); padding: 44px; border-radius: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 700; }
input, select, textarea { background: var(--bg); border: 1px solid var(--line); border-radius: 6px; color: var(--text); padding: 13px 15px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.3s; }
input:focus, select:focus, textarea:focus { border-color: var(--lime); }
.form-submit { margin-top: 18px; width: 100%; background: var(--lime); color: #0d0f0d; padding: 17px; border: none; border-radius: 6px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; cursor: pointer; transition: background 0.3s; }
.form-submit:hover { background: var(--lime-dark); }

/* CTA BAND */
.cta-band { background: var(--lime); color: #0d0f0d; text-align: center; padding: 84px 40px; }
.cta-band h2 { font-size: 44px; font-weight: 900; font-style: italic; margin-bottom: 14px; text-transform: uppercase; }
.cta-band p { color: #1f2415; font-size: 16px; margin-bottom: 30px; font-weight: 500; }
.cta-band .btn-primary { background: #0d0f0d; color: var(--lime); }
.cta-band .btn-primary:hover { background: #000; }

/* FOOTER */
footer { background: #080908; padding: 64px 60px 30px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-main { color: #fff; font-size: 26px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--muted); max-width: 280px; font-weight: 300; }
.footer-col h5 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer-col p, .footer-col a { display: block; font-size: 13px; line-height: 1.9; color: var(--muted); text-decoration: none; font-weight: 300; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { background: #000; text-align: center; padding: 18px; font-size: 11px; color: var(--muted); }

@media (max-width: 860px) {
  nav { padding: 18px 24px; }
  nav ul { display: none; }
  .about, .contact { grid-template-columns: 1fr; }
  .stats, .prog-grid, .price-grid { grid-template-columns: 1fr; }
  .hero-content, .page-hero-content { padding-left: 28px; padding-right: 28px; }
  .promo-msg { display: none; }
  footer { grid-template-columns: 1fr; }
}
