/* ═══════════════════════════════════════════════════
   COURSE DETAIL PAGE — SHARED THEME (BLACK + GREEN)
   Used by all 10 course pages: Python, AWS DevOps, Data Analyst,
   Data Engineering, Data Science, ETL Testing, Generative AI,
   Java Development, Java + Selenium, Playwright
   --black:    #080c0e
   --dgreen:   #22c55e  (main green)
   --dglow:    #16a34a  (dark green)
   --card-bg:  #0f1419
   --border:   #1e2a22  (dark green-tinted border)
   --text:     #e2e8f0
   --muted:    #94a3b8
═══════════════════════════════════════════════════ */

/* ── HERO ── */
.aw-hero {
  background: #080c0e;
  position: relative; overflow: hidden;
}
.aw-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(34,197,94,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.aw-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.aw-hero-glow {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.aw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px; align-items: start;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 5% 72px;
  position: relative; z-index: 2;
}

.aw-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
  padding: 6px 16px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.aw-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900; color: #fff;
  line-height: 1.08; margin-bottom: 18px;
}
.aw-h1 span { color: #22c55e; }
.aw-sub {
  font-size: 15.5px; color: rgba(255,255,255,0.65);
  line-height: 1.8; max-width: 520px; margin-bottom: 28px;
}

/* Trust signal chips row (used on data-engineering hero) */
.aw-trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

/* Stats row */
.aw-stats-row {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 14px; overflow: hidden;
  margin-bottom: 28px;
}
.aw-stat-item {
  flex: 1; padding: 16px 12px; text-align: center;
  border-right: 1px solid rgba(34,197,94,0.1);
}
.aw-stat-item:last-child { border-right: none; }
.aw-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 900; color: #22c55e; line-height: 1;
}
.aw-stat-lbl {
  font-size: 10px; color: rgba(255,255,255,0.45);
  margin-top: 4px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
}

/* CTA buttons */
.aw-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.aw-btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: #22c55e; color: #080c0e;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 800;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}
.aw-btn-green:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34,197,94,0.4); }
.aw-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 14px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
}
.aw-btn-ghost:hover { border-color: #22c55e; color: #22c55e; }

/* ── FORM CARD ── */
.aw-form-card {
  background: #0f1419;
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px; padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  position: relative;
}
.aw-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 20px 20px 0 0;
}
.afc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px; font-weight: 800; color: #fff;
  margin-bottom: 4px;
}
.afc-sub { font-size: 12.5px; color: #64748b; margin-bottom: 20px; }
.afc-group { margin-bottom: 13px; }
.afc-group label {
  display: block; font-size: 10.5px; font-weight: 700;
  color: rgba(255,255,255,0.6); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: .4px;
}
.afc-group input, .afc-group select {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid #1e2a22; border-radius: 8px;
  font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif;
  color: #e2e8f0; outline: none; background: #080c0e;
  transition: border 0.2s, box-shadow 0.2s;
}
.afc-group input:focus, .afc-group select:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.afc-group input.field-error, .afc-group select.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}
.afc-group input::placeholder { color: #334155; }
.afc-group select option { background: #0f1419; }
.field-err-msg {
  display: none; font-size: 11px; color: #ef4444;
  margin-top: 3px; font-weight: 600;
}
.afc-submit {
  width: 100%; background: #22c55e; color: #080c0e;
  border: none; padding: 13px; border-radius: 10px;
  font-size: 15px; font-weight: 800; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s; margin-top: 4px;
  box-shadow: 0 4px 16px rgba(34,197,94,0.25);
}
.afc-submit:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,0.35); }
.afc-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.afc-trust { text-align: center; font-size: 12px; color: #475569; margin-top: 10px; }
.afc-success {
  display: none;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e; border-radius: 8px;
  padding: 10px 14px; font-size: 14px; font-weight: 600;
  text-align: center; margin-top: 10px;
}

/* ── SECTION HELPER CLASSES ── */
.aw-sec-dark { background: #f3f3f3; padding: 72px 5%; }
.aw-sec-card { background: #0a0f12; padding: 72px 5%; }
.aw-sec-white { background: #f9fafb; padding: 72px 5%; }

.aw-sec-header { text-align: center; margin-bottom: 48px; }
.aw-sec-tag {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px;
}
.aw-sec-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800; margin-bottom: 12px; line-height: 1.15;
}
.aw-sec-h2.dark { color: #080c0e; }
.aw-sec-h2.light { color:#080c0e; }
.aw-sec-h2 span { color: #22c55e; }
.aw-sec-sub { font-size: 15px; max-width: 640px; margin: 0 auto; line-height: 1.75; }
.aw-sec-sub.dark { color: #64748b; }
.aw-sec-sub.light { color:#080c0e; }

/* ── BATCH SECTION ── */
.batch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.batch-card {
  background: #0f1419;
  border: 1px solid #1e2a22;
  border-radius: 18px; padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: all 0.25s;
}
.batch-card:hover { transform: translateY(-5px); border-color: rgba(34,197,94,0.4); box-shadow: 0 12px 40px rgba(34,197,94,0.1); }
.batch-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}
.bc-mode {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.bc-mode.online  { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }
.bc-mode.offline { background: rgba(59,130,246,0.1);  color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
.bc-mode.hybrid  { background: rgba(251,191,36,0.1);  color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.bc-type {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 16px;
}
.bc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #1e2a22;
  font-size: 13px;
}
.bc-row:last-of-type { border-bottom: none; }
.bc-label { color: #64748b; font-weight: 600; }
.bc-val   { color: #e2e8f0; font-weight: 700; }

/* Clock */
.batch-clock {
  display: flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px; padding: 10px 14px; margin-top: 14px;
}
.clock-dot {
  width: 8px; height: 8px; background: #22c55e;
  border-radius: 50%; flex-shrink: 0;
  animation: pulse 1s infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.5);opacity:0.6;} }
.clock-label { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.5); }
.clock-val {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 800; color: #22c55e; margin-left: auto;
}
.bc-cta {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; margin-top: 14px;
  background: #22c55e; color: #080c0e;
  padding: 11px 16px; border-radius: 9px;
  font-size: 13.5px; font-weight: 800;
  border: none; cursor: pointer; transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.bc-cta:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(34,197,94,0.3); }

/* ── ABOUT ── */
.aw-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.aw-feat-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.aw-feat-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.6;
}
.aw-feat-item a { color: #22c55e; text-decoration: underline; }
.aw-feat-ck {
  width: 22px; height: 22px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 6px; color: #22c55e;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.aw-img-card {
  background: #0f1419;
  border: 1px solid #1e2a22;
  border-radius: 20px;
  text-align: center; position: relative; overflow: hidden;
}
.aw-img-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
}
.aw-img-badge {
  display: inline-block;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e; font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 50px; margin: 4px;
}

/* ── WHY CARDS ── */
.aw-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.aw-wc {
  background: #fff; border: 1.5px solid #e8edf5;
  border-radius: 16px; padding: 28px 22px;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.aw-wc::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transform: scaleX(0); transition: transform 0.3s;
}
.aw-wc:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); border-color: #22c55e; }
.aw-wc:hover::after { transform: scaleX(1); }
.aw-wc-icon {
  width: 52px; height: 52px;
  background: rgba(34,197,94,0.08);
  border: 1.5px solid rgba(34,197,94,0.2);
  border-radius: 14px; display: flex;
  align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.aw-wc h3 { font-size: 16px; font-weight: 700; color: #080c0e; margin-bottom: 8px; }
.aw-wc p  { font-size: 13.5px; line-height: 1.68; color: #475569; }

/* ── ROADMAP ── */
.aw-steps {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 860px; margin: 0 auto;
}
.aw-step {
  display: flex; gap: 20px; align-items: flex-start;
  background: #0f1419; border: 1px solid #1e2a22;
  border-radius: 14px; padding: 22px 24px;
  transition: all 0.2s;
}
.aw-step:hover { border-color: rgba(34,197,94,0.35); transform: translateX(5px); box-shadow: 0 4px 20px rgba(34,197,94,0.08); }
.aw-step-num {
  width: 40px; height: 40px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e; border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aw-step-con h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.aw-step-con p  { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── STATS ── */
.aw-stat-g4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.aw-sc {
  background: #0f1419; border: 1px solid #1e2a22;
  border-radius: 16px; padding: 28px 20px;
  text-align: center; transition: all 0.25s; position: relative; overflow: hidden;
}
.aw-sc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}
.aw-sc:hover { transform: translateY(-4px); border-color: rgba(34,197,94,0.3); box-shadow: 0 8px 28px rgba(34,197,94,0.08); }
.aw-sc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 800; color: #22c55e; line-height: 1; margin-bottom: 6px;
}
.aw-sc-lbl {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px;
}
.aw-sc-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── WHO ── */
.aw-who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; max-width: 1100px; margin: 0 auto;
}
.aw-who-c {
  background: #fff; border: 1.5px solid #e8edf5;
  border-radius: 16px; padding: 24px 20px; transition: all 0.25s;
}
.aw-who-c:hover { border-color: #22c55e; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(34,197,94,0.1); }
.aw-who-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.aw-who-c h4 { font-size: 15px; font-weight: 700; color: #080c0e; margin-bottom: 6px; }
.aw-who-c p  { font-size: 13px; color: #475569; line-height: 1.65; }
.aw-who-c h4 a { color: #080c0e; text-decoration: none; }
.aw-who-c h4 a:hover { color: #16a34a; text-decoration: underline; }
.aw-who-c p a { color: #16a34a; font-weight: 600; }

/* ── REVIEWS ── */
.aw-rev-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; max-width: 1100px; margin: 0 auto;
}
.aw-rc {
  background: #0f1419; border: 1px solid #1e2a22;
  border-radius: 16px; padding: 26px; transition: all 0.2s; position: relative;
}
.aw-rc:hover { border-color: rgba(34,197,94,0.3); box-shadow: 0 8px 28px rgba(34,197,94,0.08); }
.aw-rc-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.aw-rc-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.aw-rc-per  { display: flex; align-items: center; gap: 10px; }
.aw-rc-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aw-rc-name { font-weight: 700; font-size: 13px; color: #fff; }
.aw-rc-role { font-size: 11.5px; color: #64748b; }
.aw-placed {
  display: inline-block; background: rgba(34,197,94,0.12);
  color: #22c55e; font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 50px; margin-top: 3px;
}

/* ── CURRICULUM ── */
.aw-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.aw-tab {
  border: 1px solid #1e2a22; background: #0f1419;
  color: rgba(255,255,255,0.6);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 50px; cursor: pointer; transition: all 0.2s;
}
.aw-tab:hover { border-color: rgba(34,197,94,0.35); color: #22c55e; }
.aw-tab.active { background: #22c55e; color: #080c0e; border-color: #22c55e; }
.aw-mod-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px;
}
.aw-mod-c {
  background: #0f1419; border: 1px solid #1e2a22;
  border-left: 3px solid #22c55e;
  border-radius: 12px; padding: 20px; transition: all 0.2s;
}
.aw-mod-c:hover { border-color: rgba(34,197,94,0.4); box-shadow: 0 4px 16px rgba(34,197,94,0.08); }
.aw-mod-icon { font-size: 26px; margin-bottom: 8px; display: block; }
.aw-mod-c h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.aw-mod-c p  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* Tools strip — BLACK + GREEN pills */
.aw-tools-strip {
  background: #080c0e; border: 1px solid #1e2a22;
  border-radius: 14px; padding: 20px 24px; margin-top: 20px;
}
.aw-tools-label {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px;
}
.aw-tools-list { display: flex; flex-wrap: wrap; gap: 8px; }
.aw-tool-pill {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
  transition: all 0.2s;
}
.aw-tool-pill:hover { background: #22c55e; color: #080c0e; }

/* ── FAQ ── */
.aw-faq-wrap { max-width: 820px; margin: 0 auto; }
.aw-faq-item {
  background: #0f1419; border-radius: 12px;
  border: 1px solid #1e2a22; margin-bottom: 10px;
  overflow: hidden; transition: border-color 0.2s;
}
.aw-faq-item:hover { border-color: rgba(34,197,94,0.3); }
.aw-faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  font-weight: 700; font-size: 15px; color: #fff;
  cursor: pointer; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.aw-faq-q::after { content: '+'; font-size: 22px; font-weight: 400; color: #22c55e; flex-shrink: 0; transition: transform .3s; }
.aw-faq-q.open::after { transform: rotate(45deg); }
.aw-faq-a {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s; padding: 0 22px;
}
.aw-faq-a.open { max-height: 300px; padding: 0 22px 18px; }

/* ── CTA BAND ── */
.aw-cta-band {
  background: #080c0e; padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.aw-cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,0.08), transparent 60%);
  pointer-events: none;
}
.aw-cta-band h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: #fff;
  margin-bottom: 12px; position: relative;
}
.aw-cta-band h2 span { color: #22c55e; }
.aw-cta-band p {
  color: rgba(255,255,255,0.55); font-size: 16px;
  max-width: 560px; margin: 0 auto 32px; line-height: 1.7; position: relative;
}
.aw-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .aw-hero-grid { grid-template-columns:1fr; padding:60px 5% 52px; gap:40px; }
  .aw-about-grid { grid-template-columns:1fr; gap:36px; }
  .aw-why-grid { grid-template-columns:1fr 1fr; }
  .aw-stat-g4 { grid-template-columns:1fr 1fr; }
  .aw-who-grid { grid-template-columns:1fr 1fr; }
  .aw-rev-grid { grid-template-columns:1fr 1fr; }
  .batch-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .aw-why-grid,.aw-who-grid,.aw-rev-grid { grid-template-columns:1fr; }
  .batch-grid { grid-template-columns:1fr; }
  .aw-cta-row { flex-direction:column; }
  .aw-stat-g4 { grid-template-columns:1fr 1fr; }
  .aw-stats-row { flex-wrap:wrap; }
  .aw-stat-item { flex:1 1 50%; }
}

/* ── TRUST SIGNALS BLOCK (was unstyled/orphaned CSS — fixed) ── */
.aw-trust-block {
  background: #0f1419; border: 1px solid #1e2a22;
  border-radius: 14px; padding: 18px 20px; margin-bottom: 24px;
}
.aw-trust-title {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px;
}
.aw-trust-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.aw-trust-list li { font-size: 13.5px; color: rgba(255,255,255,0.75); display: flex; align-items: flex-start; gap: 8px; }
.aw-trust-list .tick { color: #22c55e; font-weight: 700; flex-shrink: 0; }

/* ── UTILITY CLASSES (replaces repeated inline style="" attributes) ── */
.u-white   { color: #fff !important; }
.u-black   { color: #080c0e !important; }
.u-green   { color: #22c55e !important; }
.u-dgreen  { color: #16a34a !important; }
.u-red     { color: #ef4444 !important; }
.u-amber   { color: #fbbf24 !important; }
.u-blue    { color: #1e53e5 !important; }
.u-muted   { color: rgba(255,255,255,0.55) !important; }
.u-muted-50 { color: rgba(255,255,255,0.5) !important; }
.u-grey    { color: #475569 !important; }

.u-ml-0    { margin-left: 0; }
.u-mb-12   { margin-bottom: 12px; }
.u-mt-32   { margin-top: 32px; }
.u-text-left   { text-align: left; }
.u-text-center { text-align: center; }
.u-fs-14   { font-size: 14px; }
.u-fs-15   { font-size: 15px; }
.u-lh-178  { line-height: 1.78; }

.btn-lg { font-size: 16px; padding: 16px 34px; }
.btn-md { font-size: 15px; padding: 16px 28px; }

.u-grid-2col { grid-template-columns: repeat(2,1fr); max-width: 900px; margin: 0 auto; }

/* Staggered fade-in animation delays (replaces inline style="animation-delay:...") */
.delay-06{animation-delay:.06s}.delay-08{animation-delay:.08s}.delay-1{animation-delay:.1s}
.delay-12{animation-delay:.12s}.delay-15{animation-delay:.15s}.delay-16{animation-delay:.16s}
.delay-18{animation-delay:.18s}.delay-2{animation-delay:.2s}.delay-24{animation-delay:.24s}
.delay-30{animation-delay:.3s}.delay-32{animation-delay:.32s}.delay-36{animation-delay:.36s}

/* ── PAGE-SPECIFIC OVERRIDES (small genuine differences kept intentional) ── */
body.page-data-science .aw-sub { font-size: 14.5px; margin-bottom: 0; }
body.page-data-science .aw-form-card { position: sticky; top: 100px; }
body.page-data-engineering .aw-sub { max-width: 540px; margin-bottom: 22px; }
