/* ============================================================
   HIMANSHU DEKA ACADEMY — Professional Fitness Coach Website
   Theme: Dark Classic Minimalist
   ============================================================ */

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

.prog-card-img.img-fallback {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

:root {
  --bg:        #0a0a0a;
  --bg-alt:    #111111;
  --bg-card:   #141414;
  --bg-elevated: #1a1a1a;
  --border:    #222222;
  --border-light: #1e1e1e;
  --text:      #ffffff;
  --text2:     #a0a0a0;
  --muted:     #666666;
  --white:     #ffffff;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --shadow:    0 1px 2px rgba(0,0,0,0.4);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

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

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

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; }
p  { color: var(--text2); font-size: 1rem; }

.muted   { color: var(--muted); font-size: 0.9rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section    { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.nav-logo-sep {
  width: 1px;
  height: 22px;
  background: var(--border);
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text2);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--white);
  color: var(--bg) !important;
  font-weight: 600 !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; flex-direction: column; gap: 24px;
  position: fixed; top: 73px; left: 0; right: 0;
  background: var(--bg-alt); border-bottom: 1px solid var(--border);
  padding: 32px 24px; z-index: 99;
}
.mobile-menu a { font-size: 1.05rem; font-weight: 500; color: var(--text2); }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu.open { display: flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600; padding: 14px 28px;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--white);
  color: var(--bg);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--text2); color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text2); color: var(--white); background: var(--bg-elevated); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn svg { flex-shrink: 0; display: block; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,255,255,0.02) 0%, transparent 60%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow span { font-size: 0.8rem; font-weight: 500; color: var(--text2); letter-spacing: 0.05em; }
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--muted); font-weight: 400; }
.hero p  { font-size: 1.15rem; margin-bottom: 36px; max-width: 520px; color: var(--text2); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 48px;
}
.hero-stat {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all var(--transition);
}
.hero-stat:hover {
  border-color: var(--muted);
  transform: translateY(-4px);
}
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .label { font-size: 0.8rem; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* Hero Image */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--white);
  color: var(--bg);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
}
.hero-badge .num { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.hero-badge .label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Social Proof ---------- */
.proof-strip {
  background: var(--bg-alt);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-item .icon {
  width: 48px; height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.proof-item .text .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.proof-item .text .label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- Pain Section ---------- */
.pain-section { background: var(--bg); }
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.pain-content h2 { margin-bottom: 20px; }
.pain-content > p { margin-bottom: 32px; }
.pain-list {
  display: flex; flex-direction: column; gap: 16px;
}
.pain-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pain-item:hover {
  border-color: var(--muted);
}
.pain-icon {
  width: 44px; height: 44px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  flex-shrink: 0;
}
.pain-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text); }
.pain-item p { font-size: 0.9rem; margin: 0; }

.pain-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--text);
  position: sticky;
  top: 100px;
}
.pain-cta .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}
.pain-cta h3 { color: var(--text); font-size: 1.5rem; margin-bottom: 16px; line-height: 1.3; }
.pain-cta p { color: var(--text2); margin-bottom: 24px; font-size: 1rem; line-height: 1.7; }
.pain-cta .quote {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 20px 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  margin-bottom: 28px;
  font-style: italic;
}
.pain-cta .btn { width: 100%; justify-content: center; }

/* ---------- Solution ---------- */
.solution-section { background: var(--bg-alt); }
.solution-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: center;
}
.solution-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.solution-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.solution-img--hero img {
  transform: scale(1.18);
  transform-origin: center top;
  mix-blend-mode: lighten;
}
.solution-content h2 { margin-bottom: 20px; }
.solution-content > p { margin-bottom: 32px; }
.solution-points {
  display: flex; flex-direction: column; gap: 16px;
}
.solution-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.solution-point:hover {
  border-color: var(--muted);
  transform: translateX(8px);
}
.solution-point-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  flex-shrink: 0;
}
.solution-point h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text); }
.solution-point p { font-size: 0.9rem; margin: 0; }

/* ---------- Included Section ---------- */
.included-section { background: var(--bg); }
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.included-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991px) { .included-grid--3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .included-grid--3col { grid-template-columns: 1fr; } }
.included-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s ease;
}
.included-card:hover {
  border-color: var(--muted);
  transform: translateY(-6px);
}
.included-icon {
  width: 56px; height: 56px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  margin-bottom: 20px;
}
.included-card h3 { margin-bottom: 10px; font-size: 1.1rem; color: var(--text); }
.included-card p { font-size: 0.9rem; margin: 0; }

/* ---------- Results ---------- */
.results-section { background: var(--bg-alt); }

/* ── Transformation Scroll Carousel ── */
.tf-scroll-outer {
  overflow: hidden;
  padding: 8px 0 4px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.tf-scroll-outer:active { cursor: grabbing; }

.tf-scroll-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px max(20px, calc((100vw - 1200px)/2)) 16px;
}
.tf-scroll-track::-webkit-scrollbar { display: none; }

.tf-sc-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tf-sc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.tf-sc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.tf-sc-card:hover img { transform: scale(1.04); }

/* CTA card */
.tf-sc-cta {
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tf-sc-cta:hover { border-color: var(--accent); }
.tf-sc-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  text-align: center;
}
.tf-sc-plus {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.tf-sc-cta-inner p {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.4;
}

.tf-scroll-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* Legacy */
.transform-grid { display: none; }

/* Transform Preview Card */
.transform-preview-grid {
  display: flex;
  justify-content: center;
}
.transform-preview-card {
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 64px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
  max-width: 400px;
}
.transform-preview-card:hover {
  border-color: var(--text2);
  border-style: solid;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.transform-preview-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  transition: all 0.35s ease;
}
.transform-preview-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transform-preview-card:hover .transform-preview-logo {
  border-color: var(--white);
  transform: scale(1.1);
}
.transform-preview-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.transform-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.transform-preview-card:hover .transform-preview-cta {
  gap: 12px;
  color: var(--white);
}

/* Transform Modal */
.transform-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  overflow-y: auto;
}
.transform-modal.active {
  display: flex;
}
.transform-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.transform-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  padding: 48px 40px;
  position: relative;
  animation: modalSlideUp 0.4s ease;
  margin: auto;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.transform-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.transform-modal-close:hover {
  border-color: var(--text2);
  color: var(--text);
}
.transform-modal-header {
  text-align: center;
  margin-bottom: 40px;
}
.transform-modal-header h2 {
  margin-bottom: 12px;
}
.transform-modal-header p {
  max-width: 500px;
  margin: 0 auto 16px;
}
.transform-modal-team {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-elevated);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.transform-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.transform-modal-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.transform-modal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.transform-modal-item:hover img {
  transform: scale(1.05);
}
.transform-modal-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 2px dashed rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.35s ease;
  gap: 8px;
}
.transform-modal-cta-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
}
.cta-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: transform 0.3s ease;
}
.transform-modal-cta-card:hover .cta-icon {
  transform: scale(1.1);
}
.cta-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
}
.cta-sub {
  font-size: 0.8rem;
  color: var(--muted);
}
.cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.transform-modal-cta-card:hover .cta-btn {
  background: var(--white);
  transform: scale(1.05);
}
.transform-modal-cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.transform-modal-cta p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .transform-preview-grid {
    grid-template-columns: 1fr;
  }
  .transform-modal-content {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .transform-modal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .transform-modal-item {
    aspect-ratio: 1/1;
  }
}
.transform-meta strong { display: block; }
.transform-meta span { display: inline-block; }

.transform-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.transform-links span { font-size: 0.9rem; color: var(--muted); }
.transform-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.transform-links a:hover {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--bg); }
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonials-wrapper::before,
.testimonials-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.testimonials-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.testimonials-scroll {
  display: flex;
  gap: 24px;
  padding: 16px 8px;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
}
.testimonials-scroll:hover { animation-play-state: paused; }
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  flex: 0 0 400px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  border-color: var(--muted);
  transform: translateY(-4px);
}
.testimonial-content { margin-bottom: 24px; }
.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text2);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.testimonial-name { font-weight: 700; font-size: 1rem; color: var(--text); }
.testimonial-role { font-size: 0.8rem; color: var(--muted); }

/* ---------- More from HDA grid ---------- */
.hda-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- Programs ---------- */
.programs-section { background: var(--bg-alt); }
.prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
}
.prog-card:hover {
  border-color: var(--muted);
  transform: translateY(-8px);
}
.prog-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.prog-card:hover .prog-card-img img { transform: scale(1.05); }
.prog-card-body { padding: 28px; }
.prog-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.prog-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; color: var(--text); }
.prog-card-body p { font-size: 0.9rem; margin-bottom: 16px; }
.prog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}
.prog-card:hover .prog-card-link { gap: 12px; }

/* ---------- Why ---------- */
.why-section { background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.35s ease;
  text-align: center;
}
.why-card:hover {
  border-color: var(--muted);
  transform: translateY(-6px);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--bg-elevated);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--text);
}
.why-card h3 { margin-bottom: 10px; font-size: 1.1rem; color: var(--text); }
.why-card p { font-size: 0.9rem; }

/* ---------- CTA ---------- */
.cta-section {
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--bg); margin-bottom: 16px; }
.cta-section p  { max-width: 540px; margin: 0 auto 40px; font-size: 1.1rem; color: #444444; }
.cta-section .btn-primary {
  background: var(--bg);
  color: var(--white);
}
.cta-section .btn-primary:hover {
  opacity: 0.8;
  transform: translateY(-4px);
}

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(255,255,255,0.02) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.page-eyebrow--highlight {
  color: #0a0a0a;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero-sub { max-width: 580px; margin: 0 auto; font-size: 1.1rem; color: var(--text2); }

/* ---------- Footer ---------- */
footer {
  background: var(--bg-alt);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .footer-logo-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .footer-logo-row span { color: var(--muted); }
.footer-brand p { font-size: 0.9rem; max-width: 300px; margin-bottom: 20px; color: var(--muted); line-height: 1.7; }
.footer-social {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social:hover { opacity: 0.7; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text); margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-text {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.5;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text2);
  transition: color var(--transition);
}
.footer-contact-item:hover {
  color: var(--white);
}
.footer-contact-item svg {
  color: var(--muted);
  flex-shrink: 0;
}
.footer-contact-note {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.footer-contact-note a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-contact-note a:hover {
  color: var(--text);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted);
}

/* ---------- Animations ---------- */
/* Initial state set by JS; CSS controls the transition */
.fade-in {
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- iPad / Tablet (768px - 1024px) ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; display: flex; justify-content: center; }
  .hero-photo { max-width: 380px; }
  .pain-grid { grid-template-columns: 1fr; gap: 48px; }
  .pain-cta { position: static; }
  .solution-grid { grid-template-columns: 1fr; gap: 48px; }
  .solution-img { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-options-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Mobile (320px - 767px) ---------- */
@media (max-width: 767px) {
  html { font-size: 15px; -webkit-text-size-adjust: 100%; }

  /* Global overflow protection */
  h1, h2, h3, h4, p { overflow-wrap: break-word; }

  /* More-from-HDA grid → single column */
  .hda-more-grid { grid-template-columns: 1fr; }

  /* Base spacing */
  section { padding: 56px 0; }
  .container { width: 100%; padding: 0 16px; box-sizing: border-box; }
  
  /* Navbar */
  nav {
    padding: 0;
    height: 60px;
  }
  .nav-inner { height: 60px; }
  .nav-logo span { display: none; }
  .nav-logo-sep { display: none; }
  .nav-logo { gap: 0; }
  .nav-logo-img { width: 26px; height: 26px; }
  .nav-links { display: none !important; }
  
  /* Hamburger */
  .hamburger { 
    display: flex !important; 
    padding: 8px;
    margin-right: -8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
  .hamburger span { 
    width: 22px; 
    height: 2px; 
    background: var(--text);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    padding: 0;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    z-index: 99;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text2);
    border-bottom: 1px solid var(--border);
    min-height: 52px;
  }
  .mobile-menu a:hover { color: var(--text); background: var(--bg-card); }
  .mobile-menu .mm-cta {
    display: block;
    margin: 16px 20px;
    padding: 14px 20px;
    text-align: center;
    border-radius: var(--radius);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
  }
  
  /* Hero Section */
  .hero { 
    padding: 70px 0 40px; 
    min-height: auto;
  }
  .hero-bg { display: none; }
  .hero-grid { gap: 32px; }
  .hero-content { text-align: center; }
  .hero-eyebrow { 
    justify-content: center; 
    padding: 6px 12px; 
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  .hero h1 { 
    font-size: clamp(1.8rem, 9vw, 2.4rem); 
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero p { 
    font-size: 0.95rem; 
    max-width: 100%;
    padding: 0 8px;
    margin-bottom: 24px;
  }
  .hero-actions { 
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
  }
  .hero-actions .btn { 
    width: 100%; 
    max-width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
  }
  .hero-stats { 
    grid-template-columns: 1fr; 
    gap: 10px; 
    margin-top: 32px;
    padding: 0 16px;
  }
  .hero-stat { 
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: var(--radius);
  }
  .hero-stat .num { font-size: 1.5rem; }
  .hero-stat .label { margin-top: 0; font-size: 0.85rem; }
  .hero-visual { margin-top: 32px; }
  .hero-photo { 
    max-width: 100%; 
    aspect-ratio: 3/4;
    border-radius: var(--radius);
  }
  .hero-badge { 
    right: 12px; 
    top: -8px; 
    padding: 10px 14px;
    border-radius: var(--radius);
  }
  .hero-badge .num { font-size: 1.2rem; }
  .hero-badge .label { font-size: 0.65rem; }
  
  /* Proof Strip */
  .proof-strip { padding: 0; }
  .proof-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .proof-item:nth-child(2n) { border-right: none; }
  .proof-item:nth-child(3),
  .proof-item:nth-child(4) { border-bottom: none; }
  .proof-item:last-child { border-right: none; }
  .proof-item .icon { 
    width: 40px; 
    height: 40px;
    border-radius: 10px;
  }
  .proof-item .num { font-size: 1.2rem; }
  .proof-item .label { font-size: 0.7rem; }
  
  /* Pain Section */
  .pain-section { padding: 56px 0; }
  .pain-content { text-align: center; }
  .pain-content h2 { font-size: 1.5rem; line-height: 1.2; }
  .pain-content > p { font-size: 0.9rem; margin-bottom: 24px; }
  .pain-list { gap: 10px; }
  .pain-item { 
    padding: 14px 16px;
    text-align: left;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .pain-icon { 
    width: 36px; 
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
  }
  .pain-icon svg { width: 18px; height: 18px; }
  .pain-item h4 { font-size: 0.9rem; }
  .pain-item p { font-size: 0.8rem; }
  .pain-cta { 
    padding: 20px; 
    margin-top: 32px;
    border-radius: var(--radius);
  }
  .pain-cta .eyebrow { font-size: 0.7rem; margin-bottom: 8px; }
  .pain-cta h3 { font-size: 1.1rem; margin-bottom: 12px; }
  .pain-cta p { font-size: 0.85rem; margin-bottom: 16px; }
  .pain-cta .quote { 
    font-size: 0.85rem; 
    padding: 14px 16px; 
    margin-bottom: 20px;
    border-radius: var(--radius);
  }
  .pain-cta .btn { 
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }
  
  /* Solution Section */
  .solution-section { padding: 56px 0; }
  .solution-grid { gap: 32px; }
  .solution-img { 
    max-width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
  }
  .solution-content { text-align: center; }
  .solution-content > p { font-size: 0.9rem; }
  .solution-points { gap: 10px; }
  .solution-point { 
    padding: 14px 16px;
    text-align: left;
    border-radius: var(--radius);
  }
  .solution-point-icon { 
    width: 36px; 
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
  }
  .solution-point-icon svg { width: 16px; height: 16px; }
  .solution-point h4 { font-size: 0.9rem; }
  .solution-point p { font-size: 0.8rem; }
  
  /* Included Section */
  .included-section { padding: 56px 0; }
  .included-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .included-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    padding: 20px;
    border-radius: var(--radius);
    text-align: left;
    align-items: start;
  }
  .included-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    margin-bottom: 0;
    align-self: start;
  }
  .included-icon svg { width: 22px; height: 22px; }
  .included-card h3 { font-size: 0.95rem; grid-column: 2; grid-row: 1; }
  .included-card p { font-size: 0.8rem; grid-column: 2; grid-row: 2; }
  
  /* Results Section */
  .results-section { padding: 56px 0; }
  .tf-sc-card { flex: 0 0 180px; }
  .transform-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .transform-item { 
    border-radius: var(--radius);
    overflow: hidden;
  }
  .transform-item img { 
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
  }
  .transform-meta { 
    padding: 10px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .transform-meta strong { font-size: 0.8rem; }
  .transform-meta span { font-size: 0.7rem; }
  .transform-links { 
    margin-top: 24px; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px;
  }
  .transform-links span { display: none; }
  .transform-links a { 
    width: 100%; 
    max-width: 280px; 
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Testimonials Section */
  .testimonials-section { padding: 56px 0; }
  .testimonials-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .testimonials-scroll { 
    animation: scrollTestimonialsMobile 30s linear infinite;
    gap: 16px;
    padding: 12px 16px;
  }
  @keyframes scrollTestimonialsMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .testimonial-card { 
    flex: 0 0 280px; 
    padding: 20px;
    border-radius: var(--radius);
  }
  .testimonial-content p { font-size: 0.9rem; }
  .testimonials-wrapper::before,
  .testimonials-wrapper::after { display: none; }

  /* Programs Section */
  .programs-section { padding: 56px 0; }
  .prog-grid { 
    grid-template-columns: 1fr; 
    gap: 16px; 
  }
  .prog-card { 
    border-radius: var(--radius);
    overflow: hidden;
  }
  .prog-card-img { height: 180px; }
  .prog-card-img img { width: 100%; height: 100%; object-fit: contain; }
  .prog-card-body { padding: 16px; }
  .prog-card-tag { font-size: 0.65rem; margin-bottom: 8px; }
  .prog-card-body h3 { font-size: 1rem; margin-bottom: 6px; }
  .prog-card-body p { font-size: 0.8rem; margin-bottom: 12px; }
  .prog-card-link { 
    font-size: 0.85rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  /* Why Section */
  .why-section { padding: 56px 0; }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    padding: 20px;
    border-radius: var(--radius);
    text-align: left;
    align-items: start;
  }
  .why-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    margin-bottom: 0;
    align-self: start;
  }
  .why-icon svg { width: 22px; height: 22px; }
  .why-card h3 { font-size: 0.95rem; grid-column: 2; grid-row: 1; }
  .why-card p { font-size: 0.8rem; grid-column: 2; grid-row: 2; }
  
  /* CTA Section */
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.9rem; padding: 0 8px; }
  .cta-section .btn { 
    width: 100%; 
    max-width: 300px;
    min-height: 56px;
    justify-content: center;
  }
  .cta-section .btn svg { width: 18px; height: 18px; }
  
  /* Footer */
  footer { 
    padding: 40px 0 24px;
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 32px; 
    text-align: center; 
  }
  .footer-brand p { 
    max-width: 100%;
    font-size: 0.85rem;
  }
  .footer-social { 
    justify-content: center;
    font-size: 0.85rem;
  }
  .footer-col h4 { margin-bottom: 16px; }
  .footer-col ul { gap: 12px; }
  .footer-col ul li a { 
    font-size: 0.9rem;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .footer-bottom { 
    flex-direction: column; 
    gap: 8px; 
    text-align: center; 
    font-size: 0.75rem;
  }
  
  /* Page Hero */
  .page-hero { 
    padding: 70px 0 40px;
    min-height: auto;
  }
  .page-hero h1 {
    font-size: clamp(1.4rem, 6.5vw, 1.8rem);
    line-height: 1.15;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .page-hero-sub {
    font-size: 0.9rem;
    padding: 0 12px;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
  }
  .page-hero .hero-actions { 
    gap: 12px;
    padding: 0 16px;
  }
  .page-hero .hero-actions .btn { 
    width: 100%;
    max-width: 100%;
    min-height: 52px;
  }
  
  /* Buttons */
  .btn { 
    padding: 12px 18px; 
    font-size: 0.9rem; 
    min-height: 48px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    -webkit-tap-highlight-color: transparent;
  }
  .btn:active { opacity: 0.8; transform: scale(0.98); }
  .btn svg { width: 16px; height: 16px; }
  .btn-lg { 
    padding: 14px 20px;
    min-height: 52px;
  }
  .btn-lg svg { width: 18px; height: 18px; }
  
  /* Typography */
  h1 { font-size: clamp(1.6rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 2rem); line-height: 1.2; }
  h3 { font-size: clamp(1rem, 4vw, 1.3rem); }
  p { font-size: 0.9rem; }
  .section-header { margin-bottom: 32px; }
  .section-header p { font-size: 0.9rem; width: 100%; max-width: 100%; padding: 0; }
  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }
  
  /* Course Modules (Education Page) */
  .included-grid[style*="repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- Small Phones (up to 374px) ---------- */
@media (max-width: 374px) {
  html { font-size: 14px; }
  
  section { padding: 48px 0; }
  .container { padding: 0 12px; }
  
  .hero { padding: 60px 0 32px; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.85rem; }
  .hero-actions { padding: 0 12px; gap: 10px; }
  .hero-stat { padding: 12px 14px; }
  .hero-stat .num { font-size: 1.3rem; }
  .hero-stat .label { font-size: 0.75rem; }
  
  .proof-inner { grid-template-columns: 1fr; }
  .proof-item { flex-direction: row; gap: 12px; text-align: left; border-right: none; }
  
  .pain-item { padding: 12px 14px; }
  .pain-cta { padding: 16px; }
  .pain-cta h3 { font-size: 1rem; }
  
  .included-card { padding: 16px; }
  
  .tf-sc-card { flex: 0 0 150px; border-radius: 10px; }
  .transform-grid { gap: 8px; }
  .transform-meta { padding: 8px 10px; }
  
  .testimonial-card { flex: 0 0 260px; padding: 16px; }
  
  .why-card { padding: 16px 12px; }
  
  .cta-section h2 { font-size: 1.3rem; }
  .cta-section .btn { min-height: 52px; }
  
  .btn { min-height: 44px; padding: 10px 16px; }
  .btn-lg { min-height: 48px; }
}

/* ---------- Touch Device Optimizations ---------- */
@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none; }
  .hero-stat:hover { transform: none; border-color: var(--border); }
  .included-card:hover { transform: none; }
  .transform-item:hover { transform: none; }
  .testimonials-scroll:hover { animation-play-state: running; }
  
  .btn:active { 
    opacity: 0.85; 
    transform: scale(0.97);
    transition: transform 0.1s, opacity 0.1s;
  }
  
  a:active, button:active {
    opacity: 0.7;
  }
}

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }

@media (max-width: 767px) {
  .mm-cta {
    background: var(--white) !important;
    color: var(--bg) !important;
    font-weight: 600 !important;
  }
}

/* ---------- Mentorship Story Slider (Priyanshu) ---------- */
.mentorship-story-section { background: var(--bg-alt); }

.story-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  user-select: none;
}

.slider-track-wrap {
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  cursor: grab;
}
.slider-track-wrap:active { cursor: grabbing; }

.slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slider-slide {
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-card);
}
.slider-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Prev / Next buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
  /* nudge outside the track */
  margin-top: -16px; /* offset the dots gap */
}
.slider-btn--prev { left: 0; }
.slider-btn--next { right: 0; }
.slider-btn:hover { border-color: var(--text2); background: var(--bg-card); }
.slider-btn:disabled { opacity: 0.25; cursor: default; }

/* Dots */
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.slider-dot.active {
  background: var(--white);
  width: 20px;
  border-radius: 3px;
}

/* Counter label */
.slider-counter {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .slider-track-wrap { max-width: 100%; border-radius: var(--radius); }
  .slider-btn { width: 36px; height: 36px; }
  .slider-btn--prev { left: -4px; }
  .slider-btn--next { right: -4px; }
}

/* ---------- 4-Layer Coaching System ---------- */
.four-layer-section {
  background: var(--bg);
  padding: 80px 0;
}

.four-layer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.layer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.layer-card:hover {
  border-color: var(--text2);
  transform: translateY(-2px);
}

.layer-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--border);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  padding-top: 2px;
  transition: color var(--transition);
}
.layer-card:hover .layer-num { color: var(--white); }

.layer-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.layer-body > p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.55;
  margin-bottom: 14px;
}

.layer-point {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 6px;
}
.layer-point:first-of-type { margin-top: 0; }

/* Callout banner */
.layer-callout {
  margin-top: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.layer-callout-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.layer-callout-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.layer-callout-points span {
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .four-layer-grid { grid-template-columns: 1fr; }
  .layer-callout {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .layer-callout .btn { width: 100%; text-align: center; }
}

/* ===== Dynamic Enhancements ===== */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px; width: 0%; background: var(--white); pointer-events: none;
}

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 100;
  width: 44px; height: 44px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(16px);
  transition: all var(--transition); color: var(--text);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { border-color: var(--text2); }

/* Toast */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text); padding: 14px 20px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; z-index: 500;
  transition: transform 0.35s ease, opacity 0.35s ease; opacity: 0;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); max-width: calc(100vw - 48px);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { border-color: #2d6a2d; }
.toast.error { border-color: #6a2d2d; }

/* Apply Form Section */
.apply-form-section { background: var(--bg); }
.apply-form-wrap {
  max-width: 640px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text2); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  color: var(--text); font-size: 0.95rem; font-family: var(--font);
  width: 100%; outline: none; transition: border-color var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.3); }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group select option { background: #1a1a1a; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-divider { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 0.8rem; margin: 24px 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-submit { width: 100%; justify-content: center; }
button.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* FAQ Accordion */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; font-size: 1rem; font-weight: 600;
  color: var(--text); background: none; border: none; width: 100%;
  text-align: left; gap: 16px; font-family: var(--font);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--text2); }
.faq-q svg { flex-shrink: 0; transition: transform 0.25s ease; color: var(--muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--text); }
.faq-item.open .faq-q { color: var(--white); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-a p { color: var(--text2); padding-bottom: 22px; line-height: 1.75; font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 500px; }

/* Tab System */
.tab-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 40px; overflow-x: auto; }
.tab-btn {
  padding: 14px 28px; font-size: 0.9rem; font-weight: 600;
  color: var(--muted); background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--transition); white-space: nowrap; font-family: var(--font);
}
.tab-btn:hover { color: var(--text2); }
.tab-btn.active { color: var(--white); border-bottom-color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text); border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; line-height: 1; transition: all var(--transition);
}
.lightbox-close:hover { border-color: var(--text2); }
.transform-item { cursor: zoom-in; }
.transform-item img { transition: opacity var(--transition); }
.transform-item:hover img { opacity: 0.85; }

/* Apply Modal */
.apply-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.3s ease;
}
.apply-modal.active { display: flex; opacity: 1; }
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.apply-modal-content {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  padding: 40px 36px; position: relative;
  animation: modalSlideUp 0.35s ease;
}
.apply-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--muted); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-family: var(--font);
}
.apply-modal-close:hover { border-color: var(--text2); color: var(--white); }
.apply-modal h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; color: var(--white); }
.apply-modal .modal-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.apply-modal-options { display: flex; flex-direction: column; gap: 12px; }
.btn-modal-wa {
  width: 100%; background: #128c7e; color: #fff; border: none;
  padding: 15px 24px; border-radius: var(--radius); font-size: 0.95rem;
  font-weight: 700; font-family: var(--font); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s; text-decoration: none;
}
.btn-modal-wa:hover { background: #25d366; color: #fff; }
.btn-modal-form {
  width: 100%; background: transparent; color: var(--text);
  border: 1px solid var(--border); padding: 15px 24px;
  border-radius: var(--radius); font-size: 0.95rem; font-weight: 600;
  font-family: var(--font); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--transition); text-decoration: none;
}
.btn-modal-form:hover { border-color: var(--text2); color: var(--white); }
.btn-modal-call-primary {
  width: 100%; background: var(--white); color: var(--bg);
  border: none; padding: 15px 24px;
  border-radius: var(--radius); font-size: 0.95rem; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: opacity 0.2s; text-decoration: none;
}
.btn-modal-call-primary:hover { opacity: 0.88; color: var(--bg); }
.btn-modal-call {
  width: 100%; background: transparent; color: var(--muted);
  border: none; padding: 12px 24px;
  border-radius: var(--radius); font-size: 0.875rem; font-weight: 500;
  font-family: var(--font); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: color var(--transition); text-decoration: none;
}
.btn-modal-call:hover { color: var(--white); }
.modal-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 0.75rem; margin: 4px 0;
}
.modal-divider::before, .modal-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
@media (max-width: 600px) {
  .apply-modal { padding: 16px; }
  .apply-modal-content { padding: 24px 20px; border-radius: 16px; max-width: calc(100vw - 32px); }
}

/* Contact Option Cards */
.contact-options-section { background: var(--bg); }
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.contact-option-card:hover {
  transform: translateY(-6px);
  border-color: var(--muted);
}
.co-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.contact-option-wa .co-icon   { background: rgba(37,211,102,0.1);  color: #25d366; }
.contact-option-form .co-icon { background: rgba(66,133,244,0.1);  color: #4285f4; }
.contact-option-call .co-icon { background: rgba(255,255,255,0.06); color: var(--text); }
.co-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-option-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-option-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.co-detail {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.co-btn {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  width: 100%;
}
.contact-option-wa .co-btn:hover   { background: rgba(37,211,102,0.12); border-color: #25d366; color: #25d366; }
.contact-option-form .co-btn:hover { background: rgba(66,133,244,0.12); border-color: #4285f4; color: #4285f4; }
.contact-option-call .co-btn:hover { background: var(--bg-card); border-color: var(--text2); color: var(--white); }

/* Mobile adjustments for new elements */
@media (max-width: 767px) {
  .apply-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .toast { font-size: 0.82rem; padding: 12px 16px; }
  .tab-btn { padding: 12px 18px; font-size: 0.85rem; }
  .faq-q { font-size: 0.95rem; padding: 18px 0; }
  .contact-options-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-option-card { padding: 28px 24px; }
  .co-icon { width: 52px; height: 52px; margin-bottom: 16px; }
}
