@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Knewave&display=swap');

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'PT Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ─── Typography ───────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.font-knewave { font-family: 'Knewave', cursive; }

/* ─── Colours ──────────────────────────────────── */
:root {
  --yellow: #FFE600;
  --black: #0a0a0a;
  --dark: #141414;
  --gray: #1a1a1a;
  --border: #2a2a2a;
}

/* ─── Buttons ──────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-yellow {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: #000;
  color: var(--yellow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #000;
}

.btn-black {
  background: #000;
  color: var(--yellow);
  border-color: #000;
}
.btn-black:hover {
  background: var(--yellow);
  color: #000;
}

/* ─── Layout helpers ───────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

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

.divider {
  width: 50px;
  height: 4px;
  background: var(--yellow);
  margin: 0.75rem 0 1.25rem;
}
.divider-center { margin: 0.75rem auto 1.25rem; }

.eyebrow {
  font-family: 'Knewave', cursive;
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
}

/* ─── Card ─────────────────────────────────────── */
.card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

/* ─── Navbar ───────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.5rem 0;
  transition: padding 0.3s;
}
#navbar.scrolled { padding-top: 0.6rem; }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, padding 0.3s;
}
#navbar.scrolled .nav-inner {
  background: rgba(10,10,10,0.92);
  border-color: rgba(255,255,255,0.11);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links .btn { font-size: 0.85rem; padding: 0.55rem 1.25rem; }
.nav-links .btn-nav-cta {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.nav-links .btn-nav-cta:hover { background: #000; color: var(--yellow); border-color: #000; }
.nav-mobile .btn-nav-cta {
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  border-color: var(--yellow);
  text-align: center;
}
.nav-mobile .btn-nav-cta:hover { background: #000; color: var(--yellow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--yellow); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--yellow); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 24px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-mobile a {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--yellow); }
.nav-mobile .btn { text-align: center; }

/* ─── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%);
}

.hero-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 1.5rem 7rem;
}

.hero-label {
  font-family: 'Knewave', cursive;
  color: var(--yellow);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-stats {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.stat-number {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}
.scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #fff, transparent);
}

/* ─── Page Hero (inner pages) ──────────────────── */
.page-hero {
  background: #050505;
  background-size: cover;
  background-position: center;
  padding: 10rem 1.5rem 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── What We Do ───────────────────────────────── */
.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.pillar-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}
.pillar-body {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.quote-block {
  border-left: 4px solid var(--yellow);
  padding-left: 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.quote-block p {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}

/* ─── Card image header ─────────────────────────── */
.card-img {
  width: calc(100% + 4rem);
  margin: -2.5rem -2rem 1.75rem;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.7);
  transition: filter 0.4s;
}
.card:hover .card-img { filter: brightness(0.85) saturate(1); }

/* ─── Image strip ───────────────────────────────── */
.image-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 220px;
  overflow: hidden;
  gap: 3px;
  background: #000;
}
.image-strip-item {
  overflow: hidden;
}
.image-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.6);
  transition: filter 0.4s, transform 0.5s;
  display: block;
}
.image-strip-item img:hover {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.04);
}
@media (max-width: 600px) {
  .image-strip { grid-template-columns: repeat(3, 1fr); height: 140px; }
  .image-strip-item:nth-child(n+4) { display: none; }
}

/* ─── VSL / Training section ────────────────────── */
.vsl-section {
  background: #050505;
  padding: 5.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.vsl-section .section-title { margin-bottom: 1.25rem; }
.vsl-section p {
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.vsl-thumb {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  cursor: pointer;
  border: 2px solid #222;
  overflow: hidden;
  transition: border-color 0.3s;
}
.vsl-thumb:hover { border-color: var(--yellow); }
.vsl-thumb img {
  width: 100%;
  display: block;
  filter: brightness(0.55);
  transition: filter 0.3s;
}
.vsl-thumb:hover img { filter: brightness(0.4); }
.vsl-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
  box-shadow: 0 0 0 0 rgba(255,230,0,0.4);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.vsl-thumb:hover .vsl-play { transform: translate(-50%, -50%) scale(1.12); }
.vsl-play svg { width: 28px; height: 28px; margin-left: 5px; }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,230,0,0.4); }
  50% { box-shadow: 0 0 0 18px rgba(255,230,0,0); }
}
.vsl-label {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Training CTA band (kept for other pages) ─── */
.cta-band {
  background: var(--yellow);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #000;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.cta-band p { color: rgba(0,0,0,0.72); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-band .eyebrow { color: #000; }

/* ─── Who It's For ─────────────────────────────── */
.for-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.for-item .icon { flex-shrink: 0; margin-top: 2px; }
.for-item.yes .icon { color: var(--yellow); }
.for-item.no  .icon { color: #555; }
.for-item.yes { color: rgba(255,255,255,0.82); }
.for-item.no  { color: rgba(255,255,255,0.45); }

.for-cta-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.for-cta-block p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 1rem; }

/* ─── Results grid ─────────────────────────────── */
.result-cell {
  background: #0a0a0a;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.result-cell:hover { background: var(--dark); }
.result-number {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.result-label {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.6rem;
}
.result-desc { color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.6; }

/* ─── Package card image ───────────────────────── */
.pkg-img {
  width: calc(100% + 4rem);
  margin: -2.5rem -2rem 1.75rem;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.6);
  transition: filter 0.4s;
}
.package-card:hover .pkg-img { filter: brightness(0.85) saturate(0.9); }
.featured .pkg-img { filter: brightness(0.5) saturate(0.4); }

/* ─── Packages ─────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  padding: 2.5rem 2rem;
  position: relative;
}
.package-card.featured { padding-top: 3.5rem; }
.package-card.standard {
  background: var(--dark);
  border: 1px solid var(--border);
}
.package-card.featured {
  background: var(--yellow);
  border: 2px solid var(--yellow);
  transform: scale(1.03);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: var(--yellow);
  font-family: Impact, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.3rem 1rem;
  border: 2px solid var(--yellow);
  white-space: nowrap;
}

.pkg-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.standard .pkg-tag { color: var(--yellow); }
.featured  .pkg-tag { color: #000; }

.pkg-name {
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.3rem;
}
.standard .pkg-name { color: #fff; }
.featured  .pkg-name { color: #000; }

.pkg-kicker {
  font-family: 'Knewave', cursive;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.standard .pkg-kicker { color: var(--yellow); }
.featured  .pkg-kicker { color: rgba(0,0,0,0.65); }

.pkg-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.standard .pkg-desc { color: rgba(255,255,255,0.62); }
.featured  .pkg-desc { color: rgba(0,0,0,0.72); }

.pkg-features { margin-bottom: 2rem; }
.pkg-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.standard .pkg-features li { color: rgba(255,255,255,0.75); }
.featured  .pkg-features li { color: rgba(0,0,0,0.8); }
.pkg-check { flex-shrink: 0; }
.standard .pkg-check { color: var(--yellow); }
.featured  .pkg-check { color: #000; }

.pkg-ideal {
  background: rgba(0,0,0,0.12);
  border-left: 3px solid var(--yellow);
  padding: 0.85rem 1rem;
  font-style: italic;
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.standard .pkg-ideal { background: #0a0a0a; color: rgba(255,255,255,0.52); border-color: var(--yellow); }
.standard .pkg-ideal strong { color: #fff; }
.featured  .pkg-ideal { background: rgba(0,0,0,0.08); color: rgba(0,0,0,0.65); border-color: #000; }
.featured  .pkg-ideal strong { color: #000; }

.pkg-cta {
  display: block;
  text-align: center;
  border-radius: 50px;
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.standard .pkg-cta { background: var(--yellow); color: #000; border-color: var(--yellow); }
.standard .pkg-cta:hover { background: #000; color: var(--yellow); }
.featured  .pkg-cta { background: #000; color: var(--yellow); border-color: #000; }
.featured  .pkg-cta:hover { background: #1a1a1a; }

/* ─── Testimonials ─────────────────────────────── */
.testimonial-card {
  background: var(--dark);
  border-left: 4px solid var(--yellow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.t-quote-mark {
  font-size: 2.2rem;
  color: var(--yellow);
  font-family: Georgia, serif;
  line-height: 1;
}
.t-quote {
  color: rgba(255,255,255,0.84);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.t-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.t-name {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.t-niche { color: var(--yellow); font-size: 0.8rem; margin-top: 2px; }
.t-video-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--yellow);
  padding: 0.35rem 0.75rem;
  transition: all 0.2s;
}
.t-video-link:hover { background: var(--yellow); color: #000; }

/* ─── Schedule CTA section ─────────────────────── */
.schedule-cta {
  background: #050505;
  background-size: cover;
  background-position: center;
  padding: 8rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Dark overlay over background image */
.schedule-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 1;
  pointer-events: none;
}
/* Yellow glow accent */
.schedule-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,230,0,0.07) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}
.schedule-cta h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.schedule-cta p {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.schedule-cta .small-note {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-top: 1.25rem;
}

/* ─── Portfolio ────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--dark);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.portfolio-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.thumb-wrap:hover img { transform: scale(1.04); }

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.thumb-wrap:hover .play-overlay { opacity: 1; }

.play-btn {
  width: 64px; height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { margin-left: 4px; }

.thumb-badge {
  position: absolute;
  bottom: 0.5rem; right: 0.5rem;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
}

.portfolio-info { padding: 1.5rem; }
.p-coach {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.p-niche { color: var(--yellow); font-size: 0.8rem; margin-top: 2px; margin-bottom: 0.75rem; }
.p-desc { color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1rem; }
.p-result {
  background: #0a0a0a;
  border: 1px solid var(--border);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--yellow);
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── Video Modal ──────────────────────────────── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.open { display: flex; }

.modal-inner {
  width: 100%;
  max-width: 900px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: -3rem; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-family: Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--yellow); }

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ─── Comparison Table ─────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #1f1f1f;
  font-size: 0.9rem;
}
.compare-table th {
  text-align: center;
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--border);
}
.compare-table th:first-child { text-align: left; color: #888; font-size: 0.78rem; border-bottom-color: var(--yellow); }
.compare-table th.highlight { color: var(--yellow); border-bottom-color: var(--yellow); background: rgba(255,230,0,0.04); }
.compare-table td:first-child { color: rgba(255,255,255,0.72); }
.compare-table td { text-align: center; background: #0a0a0a; }
.compare-table tr:nth-child(even) td { background: #111; }
.compare-table td.highlight { background: rgba(255,230,0,0.04); }

.check-yes, .check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
}
.check-yes { background: var(--yellow); color: #000; font-size: 0.78rem; font-weight: bold; }
.check-no  { color: #333; font-size: 1rem; }

.table-wrap { overflow-x: auto; }

/* ─── FAQ ──────────────────────────────────────── */
.faq-cat-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.faq-cat-title::before {
  content: '';
  display: block;
  width: 30px; height: 3px;
  background: var(--yellow);
  flex-shrink: 0;
}
.faq-cat-title h2 {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.06em;
}

.faq-item { border-bottom: 1px solid #1f1f1f; }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  color: #fff;
}
.faq-question { font-size: 1rem; font-weight: bold; line-height: 1.5; }
.faq-icon {
  color: var(--yellow);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ─── Contact ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.contact-info p {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.info-label {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}
.info-value { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.social-link {
  color: rgba(255,255,255,0.5);
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); }

.contact-form-wrap {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid var(--border);
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: 'PT Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus { border-color: var(--yellow); }
.form-input::placeholder { color: #444; }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
  appearance: none;
}

.form-note {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
  display: none;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: #000;
}
.form-success h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.form-success p { color: rgba(255,255,255,0.62); font-size: 0.95rem; line-height: 1.6; }

/* ─── Footer ───────────────────────────────────── */
footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-desc { color: #666; font-size: 0.88rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer-social {
  color: #555;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social:hover { color: var(--yellow); }

.footer-col h4 {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { color: #666; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }

.footer-col p { color: #666; font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.25rem; }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #444;
  font-size: 0.78rem;
}

/* ─── More coming placeholder ──────────────────── */
.coming-soon-box {
  border: 1px dashed #2a2a2a;
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.coming-soon-box p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 1.25rem; }

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 4rem 0; }
  .package-card.featured { transform: none; }
  .packages-grid { gap: 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .contact-grid { gap: 2.5rem; }
  .footer-grid { gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS
═══════════════════════════════════════════════════ */

/* ─── Film grain overlay ────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9000;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 1%); }
  30% { transform: translate(-1%, 4%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 3%); }
  60% { transform: translate(1%, -1%); }
  70% { transform: translate(-2%, 2%); }
  80% { transform: translate(3%, -3%); }
  90% { transform: translate(-1%, 1%); }
}

/* ─── Custom cursor (disabled) ──────────────────── */

/* ─── Scroll animations ─────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* ─── Hero stagger animations ───────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-label    { animation: fadeUp 0.75s ease both; animation-delay: 0.15s; }
.hero-title    { animation: fadeUp 0.75s ease both; animation-delay: 0.3s; }
.hero-subtitle { animation: fadeUp 0.75s ease both; animation-delay: 0.5s; }
.hero-ctas     { animation: fadeUp 0.75s ease both; animation-delay: 0.65s; }
.hero-stats    { animation: fadeUp 0.75s ease both; animation-delay: 0.8s; }

/* ─── Marquee ticker (removed) ──────────────────── */

/* ─── Sticky CTA (removed) ──────────────────────── */

/* ─── Page transition overlay ───────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.28s ease;
}
.page-transition.loaded { opacity: 0; }

/* ─── Testimonial cards (redesigned) ────────────── */
.tcard {
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-top: 3px solid var(--yellow);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.tcard:hover { transform: translateY(-5px); border-color: var(--yellow); }
.tcard-quote {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.tcard-text {
  font-size: 0.97rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  flex: 1;
  margin-bottom: 2rem;
}
.tcard-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid #222;
}
.tcard-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  flex-shrink: 0;
}
.tcard-name {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.tcard-role { color: var(--yellow); font-size: 0.75rem; margin-top: 3px; }

/* ─── How It Works / Process ─────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1a1a1a;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .process-grid { grid-template-columns: 1fr; }
}
.process-step {
  background: #0a0a0a;
  padding: 3rem 2.5rem;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--yellow);
  transition: width 0.6s ease;
}
.process-step.in-view::before { width: 100%; }
.step-num {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.15;
  margin-bottom: -0.5rem;
  transition: opacity 0.4s;
}
.process-step.in-view .step-num { opacity: 0.22; }
.step-title {
  font-size: 1.45rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}
.step-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ─── Package icon (services page) ──────────────── */
.pkg-icon-wrap {
  width: 68px; height: 68px;
  background: var(--yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.pkg-icon-wrap svg { width: 34px; height: 34px; color: #000; }
.featured .pkg-icon-wrap { background: #000; }
.featured .pkg-icon-wrap svg { color: var(--yellow); }

/* ─── Chunky arrow on CTA buttons ───────────────── */
.btn-cta .arr {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1.15em;
  line-height: 1;
  vertical-align: middle;
  transform: scaleX(1.25);
  font-style: normal;
}

/* ─── Divider line draw animation ───────────────── */
.divider {
  transition: width 0.6s ease 0.2s;
}
[data-animate]:not(.in-view) .divider { width: 0; }
[data-animate].in-view .divider { width: 50px; }

/* ─── Responsive additions ──────────────────────── */
@media (max-width: 768px) {
  .process-grid { gap: 0; background: none; }
  .process-step { border-bottom: 1px solid #1a1a1a; }
  .marquee-track span { font-size: 0.75rem; padding: 0 1.75rem; }
  .sticky-cta { font-size: 0.8rem; padding: 0.75rem 1.75rem; bottom: 1rem; }
}
