/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 560px;
  max-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0; overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 65% 30%;
}
.hero-bg::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(90deg, rgba(15,31,61,0.94) 0%, rgba(15,31,61,0.88) 35%, rgba(15,31,61,0.55) 60%, rgba(15,31,61,0.25) 80%, rgba(15,31,61,0.15) 100%),
    linear-gradient(180deg, rgba(15,31,61,0.3) 0%, rgba(15,31,61,0.1) 50%, rgba(15,31,61,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 100px 32px 110px;
}
.hero-content-inner {
  max-width: 640px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero p.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7; margin-bottom: 36px;
}
.hero-ctas {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-trust {
  margin-top: 36px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.hero-trust span { margin: 0 8px; opacity: 0.4; }

/* ─── HOW IT WORKS ─── */
.how-it-works { padding: 100px 0; background: var(--off-white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.step p {
  font-size: 0.95rem; color: var(--gray-600);
  line-height: 1.65; max-width: 360px; margin: 0 auto;
}

/* ─── PACKAGES ─── */
.packages { padding: 100px 0; background: var(--white); }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.package-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease; cursor: pointer;
  position: relative; background: var(--white);
}
.package-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.package-card .pkg-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-light);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 16px;
}
.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.package-card .pkg-sub {
  font-size: 0.88rem; color: var(--gray-600);
  margin-bottom: 20px; line-height: 1.5;
}
.package-card .pkg-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 20px; border-top: 1px solid var(--gray-100);
}
.package-card .pkg-courses {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; color: var(--gray-400);
}
.package-card .pkg-price {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: var(--orange);
}
.packages-custom {
  text-align: center; margin-top: 48px;
  font-size: 1rem; color: var(--gray-600);
}
.packages-custom a {
  color: var(--orange); font-weight: 600;
  border-bottom: 2px solid transparent; transition: border-color 0.2s;
}
.packages-custom a:hover { border-color: var(--orange); }

/* ─── CATEGORIES ─── */
.categories { padding: 100px 0; background: var(--off-white); }
.categories-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cat-tile {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  transition: all 0.3s; cursor: pointer;
}
.cat-tile:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.cat-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.cat-tile h3 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.cat-tile .cat-count {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; color: var(--gray-400);
}
.categories-link { text-align: center; margin-top: 48px; }
.categories-link a {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.categories-link a:hover { gap: 12px; }

/* ─── WHY US ─── */
.why-us { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 80px; align-items: center;
}
.value-prop {
  margin-bottom: 36px; padding-left: 24px;
  border-left: 3px solid var(--gray-100); transition: border-color 0.3s;
}
.value-prop:hover { border-left-color: var(--orange); }
.value-prop h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.value-prop p {
  font-size: 0.93rem; color: var(--gray-600); line-height: 1.65;
}
.why-stat-block {
  background: linear-gradient(145deg, var(--navy), var(--charcoal));
  border-radius: 20px; padding: 48px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.why-stat-block::before {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(232,100,44,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.why-stat-number {
  font-family: var(--font-display);
  font-size: 4.5rem; font-weight: 800;
  color: var(--orange); line-height: 1;
  letter-spacing: -0.04em; position: relative;
}
.why-stat-label {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 8px; position: relative;
}
.why-stat-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
  margin-top: 28px; position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─── INDUSTRIES ─── */
.industries { padding: 100px 0; background: var(--off-white); }
.ind-grid { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.ind-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 60px;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  color: var(--slate); transition: all 0.25s; cursor: pointer;
}
.ind-pill:hover {
  border-color: var(--orange); color: var(--orange);
  box-shadow: var(--shadow-sm); transform: translateY(-2px);
}
.ind-pill .ind-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); opacity: 0.5;
}
.ind-pill:hover .ind-dot { opacity: 1; }

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,100,44,0.06) 0%, transparent 70%);
}
.cta-banner .section-header h2 { color: var(--white); }
.cta-banner .section-header p { color: rgba(255,255,255,0.55); }
.cta-paths {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 940px;
  margin: 0 auto; position: relative; z-index: 1;
}
.cta-path {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px; text-align: center;
  transition: all 0.3s;
}
.cta-path:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}
.cta-path h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.cta-path p {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  line-height: 1.6; margin-bottom: 28px;
}
.cta-path .btn-primary { width: 100%; justify-content: center; }
.cta-path .btn-outline-light {
  width: 100%; display: flex; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  padding: 15px 30px;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white); border-radius: var(--radius);
  cursor: pointer; transition: all 0.25s; background: none;
}
.cta-path .btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ─── H2S CALLOUT ─── */
.h2s-callout { padding: 60px 0; background: var(--white); }
.h2s-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 32px 40px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal);
}
.h2s-badge {
  flex-shrink: 0; width: 52px; height: 52px;
  border-radius: 13px; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.02em;
}
.h2s-text h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.h2s-text p {
  font-size: 0.9rem; color: var(--gray-600); line-height: 1.55;
}
.h2s-text a {
  color: var(--teal); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 4px; transition: gap 0.2s;
}
.h2s-text a:hover { gap: 8px; }

/* ─── HOMEPAGE RESPONSIVE ─── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-stat-block { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero { min-height: 480px; }
  .hero-content { padding: 60px 20px 80px; }
  .hero-content-inner { max-width: 100%; }
  .hero h1 { font-size: 2rem; }
  .hero p.hero-sub { font-size: 1.05rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline {
    width: 100%; justify-content: center; text-align: center;
  }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .packages-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-paths { grid-template-columns: 1fr; gap: 20px; }
  .h2s-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .ind-grid { gap: 8px; }
  .ind-pill { font-size: 0.82rem; padding: 10px 18px; }
  .how-it-works, .packages, .categories, .why-us, .industries { padding: 72px 0; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
}
