*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #E87722;
  --orange-dark: #C5611A;
  --orange-light: #FF9145;
  --navy: #0D1B2A;
  --navy-2: #172433;
  --navy-3: #1E2D3D;
  --slate: #2D4057;
  --steel: #3D5A73;
  --muted: #8EA8BE;
  --light: #F4F7FA;
  --white: #FFFFFF;
  --text: #1A2733;
  --text-2: #3D5268;
  --text-3: #607D93;
  --gold: #F5B942;
  --green: #1FA46B;
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: var(--muted);
  text-decoration: none;
}

.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-pill {
  background: var(--orange);
  color: #fff;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ===== NAVIGATION ===== */
nav {
  background: var(--white);
  border-bottom: 1px solid #e4ecf2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.04em;
  font-family: 'Barlow', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.15s;
}

.nav-links a:hover {
  background: var(--light);
  color: var(--text);
}

.nav-links a.active {
  color: var(--orange);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.02em;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid #d0dce6;
  color: var(--text-2);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 16px;
}

.btn-xl {
  padding: 18px 44px;
  font-size: 17px;
  letter-spacing: 0.04em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 620px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80') center/cover no-repeat;
  opacity: 0.22;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 60px);
}

.hero-accent {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.18) 0%, transparent 70%);
}

.hero-accent-2 {
  position: absolute;
  left: 40%;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.1) 0%, transparent 70%);
}

.hero-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--orange), var(--orange-light), transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 119, 34, 0.18);
  border: 1px solid rgba(232, 119, 34, 0.4);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  /*display: block;*/
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 300;
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-num span {
  color: var(--orange);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.03em;
}

.hero-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  height: 40px;
  align-self: center;
}

.hero-card-wrap {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
}

.hero-card-header {
  background: var(--orange);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-header-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.04em;
}

.hero-course-item {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
  cursor: pointer;
}

.hero-course-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero-course-item:last-child {
  border-bottom: none;
}

.hci-name {
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.hci-meta {
  font-size: 11.5px;
  color: var(--muted);
}

.hci-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.hero-card-footer {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.hero-card-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}

.hero-card-footer a:hover {
  color: var(--orange-light);
}

.hero-float-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 20px rgba(31, 164, 107, 0.4);
  z-index: 100;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--orange);
  padding: 0;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.15s;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(0, 0, 0, 0.1);
}

.trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.trust-text {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.trust-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 1px;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

.section-sub {
  font-size: 16.5px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 560px;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ===== COURSES SECTION ===== */
.courses-section {
  background: var(--light);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13, 27, 42, 0.07);
  border: 1px solid #e8eef4;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.12);
  border-color: #d0dce6;
}

.course-thumb {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.course-thumb-1 { background: linear-gradient(135deg, #1a2f44, #2d5073); }
.course-thumb-2 { background: linear-gradient(135deg, #7a1a00, #c44b00); }
.course-thumb-3 { background: linear-gradient(135deg, #0d2e1a, #0f6e56); }
.course-thumb-4 { background: linear-gradient(135deg, #1a1040, #4a2090); }
.course-thumb-5 { background: linear-gradient(135deg, #1a2a10, #3a6020); }
.course-thumb-6 { background: linear-gradient(135deg, #101a2e, #1a3a5e); }

.course-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.course-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
}

.course-badge.popular {
  background: var(--orange);
}

.course-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.course-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.15;
}

.course-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef2f6;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

.course-price sup {
  font-size: 14px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.enroll-btn {
  background: var(--orange);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.enroll-btn:hover {
  background: var(--orange-dark);
}

.courses-bottom {
  text-align: center;
  margin-top: 40px;
}

.btn-outline-orange {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 13px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-block;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

/* ===== WHY US ===== */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-left .section-sub {
  max-width: 100%;
}

.why-checklist {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--orange);
}

.why-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-check-icon svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.why-check-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.why-check-text p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat-card {
  background: var(--light);
  border-radius: 10px;
  padding: 24px 20px;
  border: 1px solid #e4ecf2;
  text-align: center;
  transition: all 0.2s;
}



.why-stat-card.featured {
  background: var(--orange);
  border-color: var(--orange);
}

.why-stat-card.featured .why-stat-num,
.why-stat-card.featured .why-stat-label {
  color: #fff !important;
}

.why-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.why-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-top: 6px;
  line-height: 1.35;
}

.cert-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cert-logo {
  background: var(--light);
  border: 1px solid #dce7ef;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.06em;
}

/* ===== INDUSTRIES ===== */
.industries-section {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

.industries-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1400&q=80') center/cover no-repeat;
  opacity: 0.06;
}

.industries-eyebrow { color: var(--orange-light) !important; }
.industries-title { color: #fff !important; }
.industries-sub { color: rgba(255, 255, 255, 0.6) !important; margin: 0 auto; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}

.industry-card:hover {
  background: rgba(232, 119, 34, 0.15);
  border-color: rgba(232, 119, 34, 0.5);
  transform: translateY(-4px);
}

.industry-icon { font-size: 32px; margin-bottom: 14px; display: block; color: var(--orange); }
.industry-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 6px; }
.industry-count { font-size: 12px; color: var(--muted); }

/* ===== CORPORATE ===== */
.corporate-section { background: var(--white); }
.corporate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.corp-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.corp-feature { display: flex; align-items: flex-start; gap: 10px; }
.corp-feature-dot { width: 20px; height: 20px; border-radius: 50%; background: rgba(232, 119, 34, 0.15); border: 2px solid var(--orange); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.corp-feature-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.corp-feature-text { font-size: 14px; color: var(--text-2); line-height: 1.5; font-weight: 500; }
.corp-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.corp-stat-card { background: #f4f7fa; border-radius: 8px; padding: 16px 20px; text-align: center; min-width: 100px; }
.corp-stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); }
.corp-stat-card.highlight .corp-stat-number { color: var(--orange); }
.corp-stat-label { font-size: 12px; color: var(--text-3); }
.corp-form { background: var(--light); border-radius: 12px; padding: 36px; border: 1px solid #e0eaf2; }
.corp-form h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.corp-form p { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-group input, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid #d0dce6; border-radius: var(--radius); font-size: 14px; font-family: 'Barlow', sans-serif; color: var(--text); background: #fff; transition: border-color 0.15s; outline: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--orange); }
.form-submit { width: 100%; background: var(--navy); color: #fff; padding: 14px; border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; border: none; cursor: pointer; transition: background 0.15s; }
.form-submit:hover { background: var(--orange); }
.form-note { text-align: center; font-size: 12px; color: var(--text-3); margin-top: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--navy); }
.testimonials-eyebrow { color: var(--orange-light) !important; }
.testimonials-title { color: #fff !important; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; padding: 28px; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--gold); font-size: 15px; }
.testimonial-text { font-size: 15px; color: rgba(255, 255, 255, 0.8); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; color: #fff; }
.author-role { font-size: 12px; color: var(--muted); }

/* ===== INSTRUCTOR ===== */
.instructor-section { background: var(--white); }
.instructor-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.instructor-photo { border-radius: 12px; overflow: hidden; height: 400px; background: #e4ecf2; position: relative; }
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-badge { position: absolute; bottom: 20px; left: 20px; background: var(--orange); color: #fff; padding: 10px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.instructor-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.instructor-title { font-size: 15px; color: var(--orange); font-weight: 600; margin-bottom: 20px; }
.instructor-bio { font-size: 15.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; text-align: justify; }
.instructor-creds { display: flex; flex-wrap: wrap; gap: 10px; }
.cred-chip { background: var(--light); border: 1px solid #d8e5ef; border-radius: 4px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--navy); }

/* ===== LEAD CAPTURE ===== */
.lead-section { background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.lead-bg { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 40px); }
.lead-inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.lead-eyebrow { display: inline-block; background: rgba(255, 255, 255, 0.2); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 16px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; }
.lead-inner h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(36px, 5vw, 54px); color: #fff; line-height: 1; margin-bottom: 12px; }
.lead-inner p { font-size: 16.5px; color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; font-weight: 300; }
.lead-offer { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; padding: 8px 18px; border-radius: 30px; font-size: 13.5px; font-weight: 500; margin-bottom: 28px; }
.lead-offer strong { font-weight: 700; }
.lead-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.lead-form input { flex: 1; padding: 14px 18px; border: none; border-radius: var(--radius); font-size: 15px; font-family: 'Barlow', sans-serif; outline: none; }
.lead-form button { padding: 14px 28px; background: var(--navy); color: #fff; border: none; border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; white-space: nowrap; transition: background 0.15s; }
.lead-form button:hover { background: rgba(13, 27, 42, 0.8); }
.lead-note { font-size: 12px; color: rgba(255, 255, 255, 0.7); margin-top: 12px; }

/* ===== FOOTER ===== */
footer { background: var(--navy-2); border-top: 1px solid rgba(255, 255, 255, 0.07); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark { width: 36px; height: 36px; background: var(--orange); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 16px; color: #fff; }
.footer-logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.5); line-height: 1.65; margin: 16px 0 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; background: rgba(255, 255, 255, 0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.15s; font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.social-btn:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { text-decoration: none; font-size: 13.5px; color: rgba(255, 255, 255, 0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 24px; border-top: 1px solid rgba(255, 255, 255, 0.07); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12.5px; color: rgba(255, 255, 255, 0.3); }

/* ===== MOCKUP LABEL ===== */
.mockup-label { background: #1a1a2e; color: #fff; text-align: center; padding: 12px; font-size: 13px; letter-spacing: 0.05em; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 12px; }
.mockup-label span { background: var(--orange); padding: 3px 10px; border-radius: 3px; font-size: 11px; }

/* =============================================
   MOBILE RESPONSIVENESS — ONLY FOR SMALL SCREENS
   ============================================= */
@media screen and (max-width: 768px) {
  /* ----- topbar adjustments ----- */
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
  }
  .topbar-left, .topbar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .topbar-pill { white-space: nowrap; }

  /* ----- navigation: stack & scrollable links ----- */
  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
  }
  .nav-logo {
    flex: 1;
    min-width: 200px;
  }
  .nav-ctas {
    margin-left: 0;
    margin-top: 10px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin-top: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    gap: 0;
  }
  .nav-links a {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 13px;
  }

  /* ----- hero: stack grid, adjust spacing ----- */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 16px;
  }
  .hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-divider {
    display: none;
  }
  .hero-card-wrap {
    max-width: 100%;
  }
  .hero-float-badge {
    right: 0;
    top: -8px;
  }
  
  /*who this for */
  
  #who-thisFor{
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
  }
  
  #choose-path-grid{
      display: grid !important; 
      grid-template-columns: 1fr !important;
  }
  
  #hero-video {
    padding: 0px 25px;   /* desktop padding */
  }
  
  #nccer-grid-mobile{
      display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .hero-bar{
      display: none;
  }
  /* ===== GLOBAL BUTTON FIX FOR MOBILE ===== */
.btn,
.enroll-btn,
.form-submit,
.btn-outline-orange,
.btn-outline-white {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    box-sizing: border-box;
}

/* Stack buttons inside flex containers */
.hero-ctas,
[id="choose-path-grid"] div a,
[id="who-thisFor"] div a,
[id="how-it-works"] div[style*="text-align: center"],
#first-time div[style*="display: grid"],
.lead-form {
    flex-direction: column;
    gap: 12px;
}

/* Fix choose-path grid stacking */
#choose-path-grid {
    grid-template-columns: 1fr !important;
}

/* Fix who-this-for grid stacking */
#who-thisFor {
    grid-template-columns: 1fr !important;
}

/* Fix first-time student grid */
#first-time div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
}

/* Fix final CTA buttons */
[id="lead"] + section .container > div:last-child,
section[style*="background: var(--navy)"] .container > div:last-child {
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-browse{
    margin-top: 12px !important;
}

  /* ----- trust bar: 2 columns ----- */
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.2);
  }

  /* ----- sections padding ----- */
  section {
    padding: 60px 0;
  }
  .container {
    padding: 0 20px;
  }

  /* ----- courses: 1 column ----- */
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ----- why us: stack ----- */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-right {
    grid-template-columns: 1fr 1fr;
  }

  /* ----- industries: 2 columns ----- */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* ----- corporate: stack, form full width ----- */
  .corporate-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .corp-form {
    padding: 24px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* ----- testimonials: 1 column ----- */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ----- instructor: stack, photo height auto ----- */
  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .instructor-photo {
    height: auto;
    max-height: 360px;
  }

  /* ----- lead form: stack ----- */
  .lead-form {
    flex-direction: column;
    max-width: 100%;
  }
  .lead-form button {
    white-space: normal;
  }

  /* ----- footer: 1 column ----- */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* minor spacing fixes */
  .course-footer {
    flex-wrap: wrap;
    gap: 12px;
  }
  .enroll-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .btn-outline-orange {
    width: 100%;
    text-align: center;
  }
  .corp-stats {
    justify-content: center;
  }
  .instructor-creds {
    justify-content: center;
  }
  .hero-card-wrap {
    margin-top: 0;
  }

  /* ===== NEW SECTIONS FIXES ===== */
  /* NCCER Process (3 steps) -> stack to 1 column */
  #nccer [style*="display: grid; grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  /* NCCER buttons on mobile */
  #nccer .btn-orange,
  #nccer .btn-outline-orange {
    display: block;
    width: 100%;
    margin: 8px 0;
  }
  #nccer div[style*="text-align: center"] {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  #nccer .btn-outline-orange {
    margin-left: 0 !important;
  }

  /* How It Works (8 steps) -> stack to 1 column */
  #how-it-works [style*="display: grid; grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* First-Time Student checklist -> stack to 1 column */
  #first-time [style*="display: grid; grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  /* FAQ section: keep details readable */
  #faq details {
    padding: 12px 16px;
  }

  /* Contact form container */
  #contact .container {
    padding: 0 16px;
  }
}

/* extra small devices (max-width: 480px) */
@media screen and (max-width: 480px) {
  .topbar-inner {
    flex-direction: column;
  }
  .nav-logo-text span {
    display: none;
  }
  .nav-logo-text {
    font-size: 15px;
  }
  .nav-ctas .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none !important;
  }
  .why-right {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    justify-content: space-between;
  }
  .stat {
    flex: 1;
    text-align: center;
  }
  .hero-ctas .btn-xl {
    padding: 16px 20px;
  }
  .mockup-label {
    flex-direction: column;
    gap: 6px;
  }
  .footer-socials {
    justify-content: center;
  }
}