/* ============================================================
   TALENT VERSITY — COMPLETE DESIGN SYSTEM
   Fonts : DM Serif Display (headings) + Inter (body)
   Palette: Navy #0B1B3D · Gold #C8900A · Page #F7F5F1
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy:      #0B1B3D;
  --navy-deep: #060F24;
  --navy-mid:  #162650;
  --gold:      #C8900A;
  --gold-lt:   #FBF3E0;
  --gold-br:   rgba(200,144,10,0.28);
  --page:      #F7F5F1;
  --white:     #FFFFFF;
  --ink:       #0F172A;
  --muted:     #52606D;
  --border:    #E0DCD4;
  --fd: 'DM Serif Display', Georgia, serif;
  --fb: 'Inter', system-ui, sans-serif;
  --rad:  14px;
  --rad-s: 7px;
  --sh:   0 4px 24px rgba(11,27,61,0.09);
  --shl:  0 20px 56px rgba(11,27,61,0.16);
  --tr:   0.22s ease;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--page); color: var(--ink); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: color var(--tr); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Type scale ── */
h1,h2,h3,h4 { font-family: var(--fd); color: var(--navy); font-weight: 400; line-height: 1.16; }
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--fb); font-weight: 600; }
p  { line-height: 1.78; }

/* ── Layout ── */
.container       { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 2.5rem; }
.section-padding { padding: 6rem 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--page); }
.bg-navy  { background: var(--navy); color: var(--white); }
.bg-navy h1,.bg-navy h2,.bg-navy h3,.bg-navy h4 { color: var(--white); }
hr.section-rule { border: none; border-top: 1px solid var(--border); margin: 0; }

/* Section intro */
.section-intro { padding-left: 1.25rem; border-left: 3px solid var(--gold); margin-bottom: 3.5rem; }
.section-intro h2 { margin: 0 0 0.6rem; }
.section-intro p  { font-size: 1.1rem; color: var(--muted); max-width: 620px; margin: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; font-family: var(--fb); font-size: 0.9rem; font-weight: 600;
  border-radius: var(--rad-s); border: 2px solid transparent;
  cursor: pointer; transition: all var(--tr); white-space: nowrap; line-height: 1;
}
.btn-gold        { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover  { background: #a87508; border-color: #a87508; }
.btn-navy        { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover  { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-white       { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: #ece9e2; border-color: #ece9e2; }
.btn-outline-gold        { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover  { background: var(--gold); color: var(--white); }
.btn-outline-navy        { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover  { background: var(--navy); color: var(--white); }
.btn-sm { padding: 0.58rem 1.2rem; font-size: 0.83rem; }

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; padding: 0.3rem 0.8rem; border-radius: 4px; font-family: var(--fb); font-size: 0.76rem; font-weight: 600; }
.badge-gold { background: var(--gold-lt); color: var(--gold); border: 1px solid var(--gold-br); }
.badge-navy { background: rgba(11,27,61,0.08); color: var(--navy); }

/* tool chips */
.tool-chip { background: var(--page); border: 1px solid var(--border); padding: 4px 10px; border-radius: 4px; font-size: 0.74rem; font-weight: 600; color: var(--ink); white-space: nowrap; }

.disclaimer-note { font-size: 0.7rem; color: #B0B9C8; margin-top: 0.6rem; font-style: italic; }

/* ============================================================  HEADER  */
.main-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 1px 16px rgba(11,27,61,0.07); }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo-wrapper { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 1.75rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--muted); position: relative; padding: 0.4rem 0; }
.nav-link:hover,.nav-link.active { color: var(--navy); }
.nav-link::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.2s; }
.nav-link:hover::after,.nav-link.active::after { width: 100%; }
.mobile-nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--navy); cursor: pointer; }

/* ============================================================  HOMEPAGE HERO  */
.hero-section { background: var(--navy); color: var(--white); padding: 7rem 0 6rem; position: relative; overflow: hidden; }
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(20,38,80,0.9) 0%, transparent 70%),
              linear-gradient(135deg, rgba(200,144,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px;
  border-radius: 50%; border: 1px solid rgba(200,144,10,0.08); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 430px; gap: 5rem; align-items: center; position: relative; }
.hero-content { padding-top: 0; }

.hero-eyeline { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-eyeline::before { content: ''; display: block; width: 32px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hero-eyeline span { font-size: 0.8rem; font-weight: 600; color: rgba(200,162,88,0.9); letter-spacing: 0.06em; }

.hero-title { font-family: var(--fd); font-size: clamp(2.5rem, 4.8vw, 3.75rem); color: var(--white) !important; line-height: 1.1; margin-bottom: 1.6rem; font-weight: 400; }
.hero-title em { font-style: italic; color: var(--gold) !important; }
.hero-description { font-size: 1.08rem; color: #B8C6D6; line-height: 1.82; margin-bottom: 2.75rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats { display: flex; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2.25rem; }
.stat-item { padding-right: 2.5rem; margin-right: 2.5rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-item strong { display: block; font-family: var(--fd); font-size: 2.4rem; color: var(--gold) !important; font-weight: 400; line-height: 1; }
.stat-item span { font-size: 0.82rem; color: #8FA0B8; margin-top: 0.35rem; display: block; }

/* Hero form */
.hero-card-box { background: var(--white); border-radius: var(--rad); padding: 2.25rem; box-shadow: var(--shl); position: relative; }
.hero-card-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold) 0%, #e8a812 100%); border-radius: var(--rad) var(--rad) 0 0; }
.lead-form h3 { font-family: var(--fd); font-size: 1.5rem; color: var(--navy) !important; margin-bottom: 0.4rem; font-weight: 400; }
.lead-form > p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--ink); }
.form-control { width: 100%; padding: 0.75rem 1rem; border-radius: var(--rad-s); border: 1.5px solid var(--border); background: #FDFCFB; color: var(--ink); font-family: var(--fb); font-size: 0.9rem; transition: border-color var(--tr); }
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,144,10,0.12); }
.form-control option { background: var(--white); color: var(--ink); }
textarea.form-control { resize: vertical; min-height: 100px; }
.light-form .form-label { color: var(--ink); }
.light-form .form-control { background: var(--white); border-color: var(--border); }
.light-form .form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,27,61,0.08); }

/* ============================================================  TRUST BAR  */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.trust-bar-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-label { font-size: 0.7rem; font-weight: 700; color: #9BA5B5; white-space: nowrap; flex-shrink: 0; letter-spacing: 0.07em; text-transform: uppercase; }
.logos-flex { display: flex; align-items: center; flex-wrap: wrap; gap: 2.25rem; }
.company-tag { font-weight: 700; font-size: 1.05rem; color: #BCC5CE; transition: color var(--tr); cursor: default; letter-spacing: -0.01em; }
.company-tag:hover { color: var(--navy); }

/* ============================================================  COURSE CARDS (homepage)  */
.course-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.course-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.course-card-v2:hover { box-shadow: var(--sh); transform: translateY(-4px); border-color: rgba(200,144,10,0.4); }

.ccv2-image { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.ccv2-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.course-card-v2:hover .ccv2-image img { transform: scale(1.05); }
.ccv2-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,15,36,0.6) 0%, rgba(6,15,36,0.1) 50%, transparent 100%); }
.ccv2-badge { position: absolute; bottom: 14px; left: 14px; background: rgba(6,15,36,0.85); color: #EFC45A; font-size: 0.71rem; font-weight: 700; padding: 4px 11px; border-radius: 4px; border: 1px solid rgba(200,144,10,0.45); letter-spacing: 0.03em; }

.ccv2-body { padding: 1.75rem 1.75rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.ccv2-meta { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.ccv2-title { font-size: 1.3rem; color: var(--navy); margin: 0; line-height: 1.2; }
.ccv2-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.72; margin: 0; }

.ccv2-points { display: flex; flex-direction: column; gap: 0.45rem; }
.ccv2-points li { font-size: 0.855rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.55rem; line-height: 1.55; }
.ccv2-points li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; margin-top: 1px; }

.ccv2-tools { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.25rem; }

.ccv2-footer { padding: 1.1rem 1.75rem 1.5rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: #FDFCF9; }
.ccv2-salary { display: flex; flex-direction: column; }
.ccv2-salary-val { font-family: var(--fd); font-size: 1.15rem; color: var(--navy); font-weight: 400; line-height: 1.2; }
.ccv2-salary-note { font-size: 0.68rem; color: var(--muted); margin-top: 3px; }
.ccv2-cta { display: flex; flex-direction: column; gap: 0.45rem; flex-shrink: 0; }
.ccv2-cta .btn { width: 128px; justify-content: center; }

/* ============================================================  WHY GRID  */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--rad); overflow: hidden; background: var(--white); }
.why-item { padding: 2.5rem 2.75rem; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); transition: background var(--tr); }
.why-item:nth-child(even) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-item:hover { background: var(--page); }
.why-num { font-family: var(--fd); font-size: 2.8rem; font-weight: 400; color: rgba(200,144,10,0.15); line-height: 1; margin-bottom: 1rem; }
.why-item h4 { font-size: 1.02rem; color: var(--navy); margin-bottom: 0.55rem; }
.why-item p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ============================================================  FAQ  */
.faq-list { max-width: 800px; margin: 2.75rem auto 0; }
.faq-box  { border-bottom: 1px solid var(--border); }
.faq-box:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; padding: 1.35rem 0; background: transparent; border: none; text-align: left; font-family: var(--fb); font-size: 1rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 1rem; }
.faq-question i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-answer-inner { padding: 0 0 1.35rem; font-size: 0.94rem; color: var(--muted); line-height: 1.78; }

/* ============================================================  FOOTER  */
.main-footer { background: var(--navy-deep); color: #7A8899; padding: 5.5rem 0 2.5rem; border-top: 3px solid var(--gold); }
.footer-logo { height: 52px; width: auto; object-fit: contain; display: block; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 3.5rem; margin-bottom: 4.5rem; }
.footer-brand p { margin-top: 1.1rem; font-size: 0.88rem; color: #7A8899; max-width: 280px; line-height: 1.78; }
.footer-col h4 { font-family: var(--fb); font-size: 0.76rem; font-weight: 700; color: var(--white) !important; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: #7A8899; font-size: 0.87rem; transition: color var(--tr); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; color: #566070; }

/* ============================================================  MODAL  */
.modal { display: none; position: fixed; inset: 0; background: rgba(6,15,36,0.75); backdrop-filter: blur(5px); z-index: 2000; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.active { display: flex; }
.modal-dialog { background: var(--white); width: 100%; max-width: 520px; border-radius: var(--rad); overflow: hidden; box-shadow: var(--shl); }
.modal-header { padding: 1.5rem 1.75rem; background: var(--navy); color: var(--white); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-size: 1.15rem; color: var(--white) !important; font-weight: 400; }
.modal-close { background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; opacity: 0.65; line-height: 1; }
.modal-close:hover { opacity: 1; }
.modal-body { padding: 1.75rem; }

/* ============================================================  ACCORDION  */
.accordion { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 1.75rem; }
.accordion-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); overflow: hidden; }
.accordion-header { width: 100%; padding: 1.1rem 1.4rem; background: var(--white); border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--fb); font-size: 0.94rem; font-weight: 600; color: var(--navy); text-align: left; transition: background var(--tr); }
.accordion-header:hover  { background: var(--page); }
.accordion-header.active { background: var(--gold-lt); }
.accordion-header i { color: var(--gold); transition: transform 0.28s; flex-shrink: 0; }
.accordion-header.active i { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.32s ease-out; }
.accordion-content-inner { padding: 1rem 1.4rem 1.4rem; color: var(--muted); font-size: 0.91rem; border-top: 1px solid var(--border); line-height: 1.78; }

/* ============================================================  PAGE HEROES (inner pages)  */
.page-hero { background: var(--navy); padding: 5.5rem 0 5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,144,10,0.07) 0%, transparent 55%); pointer-events: none; }
.page-hero-content { position: relative; max-width: 720px; }
.page-hero-kicker { font-size: 0.78rem; font-weight: 600; color: rgba(200,162,88,0.85); letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.1rem; }
.page-hero-kicker::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); flex-shrink: 0; }
.page-hero h1  { color: var(--white) !important; margin-bottom: 1.1rem; }
.page-hero-sub { font-size: 1.08rem; color: #B8C6D6; line-height: 1.8; max-width: 640px; }

/* ============================================================  COURSE DETAIL HERO  */
.course-hero { background: var(--navy); color: var(--white); padding: 5.5rem 0 5rem; position: relative; }
.course-hero h1 { color: var(--white) !important; margin-bottom: 1.1rem; }
.course-hero-inner { display: grid; grid-template-columns: 1fr 230px; gap: 3.5rem; align-items: center; }
.course-hero-content { max-width: 700px; }
.course-meta-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.meta-pill { background: rgba(200,144,10,0.15); border: 1px solid rgba(200,144,10,0.3); color: rgba(200,162,88,0.95); padding: 0.3rem 0.85rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.course-hero-stats { display: flex; flex-direction: column; gap: 1.75rem; padding-left: 3rem; border-left: 1px solid rgba(255,255,255,0.12); }
.ch-stat strong { display: block; font-family: var(--fd); font-size: 2rem; color: var(--gold); font-weight: 400; line-height: 1; }
.ch-stat span   { font-size: 0.74rem; color: #8FA0B8; margin-top: 0.25rem; display: block; }

/* ============================================================  CURRICULUM  */
.curriculum-grid { display: grid; grid-template-columns: 1fr 310px; gap: 4rem; align-items: start; }
.course-sidebar { display: flex; flex-direction: column; gap: 1.1rem; }
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 1.5rem; }
.sidebar-box h4 { font-size: 0.88rem; color: var(--navy); margin: 0 0 0.9rem; }
.sidebar-box .strip-tools { margin-top: 0; }
.sidebar-box-gold { background: var(--gold-lt); border-color: var(--gold-br); }

/* ============================================================  OUTCOMES  */
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.role-list { display: flex; flex-direction: column; margin-bottom: 2rem; }
.role-list li { padding: 0.78rem 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--ink); font-weight: 500; display: flex; align-items: center; gap: 0.7rem; }
.role-list li:first-child { border-top: 1px solid var(--border); }
.role-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.salary-display { background: var(--navy); border-radius: var(--rad); padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.35rem; }
.salary-range { font-family: var(--fd); font-size: 1.85rem; color: var(--gold); font-weight: 400; line-height: 1; }
.salary-note  { font-size: 0.77rem; color: #8FA0B8; }

/* ============================================================  ABOUT  */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.pull-quote { background: var(--page); border-left: 3px solid var(--gold); padding: 1.1rem 1.4rem; border-radius: 0 var(--rad-s) var(--rad-s) 0; margin-top: 1.75rem; }
.pull-quote strong { display: block; font-size: 0.93rem; color: var(--navy); margin-bottom: 0.35rem; }
.pull-quote p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.attr-list-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 2rem; }
.attr-list-box h3 { font-family: var(--fb); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.35rem; }
.attr-list { display: flex; flex-direction: column; gap: 1.25rem; }
.attr-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.attr-num { font-family: var(--fd); font-size: 1.5rem; color: rgba(200,144,10,0.28); font-weight: 400; line-height: 1; flex-shrink: 0; width: 30px; }
.attr-list strong { font-size: 0.9rem; color: var(--navy); display: block; margin-bottom: 0.25rem; }
.attr-list p { font-size: 0.84rem; color: var(--muted); margin: 0; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; }
.vm-box  { padding: 3rem; background: var(--white); border: 1px solid var(--border); }
.vm-box:first-child { border-radius: var(--rad) 0 0 var(--rad); border-right: none; border-top: 4px solid var(--gold); }
.vm-box:last-child  { border-radius: 0 var(--rad) var(--rad) 0; border-top: 4px solid var(--navy); }
.vm-label { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.85rem; }
.vm-box h3 { font-size: 1.35rem; margin-bottom: 1.1rem; }
.vm-box p  { font-size: 0.91rem; color: var(--muted); line-height: 1.78; }
.vm-box blockquote { margin-top: 1.35rem; padding: 1rem 1.25rem; border-left: 2px solid var(--gold); font-size: 0.89rem; color: var(--muted); font-style: italic; line-height: 1.72; background: var(--page); }

.pillar-table { display: flex; flex-direction: column; margin-top: 2.25rem; }
.pillar-row { display: grid; grid-template-columns: 80px 1fr; border-top: 1px solid var(--border); padding: 1.75rem 0; }
.pillar-row:last-child { border-bottom: 1px solid var(--border); }
.pillar-n { font-family: var(--fd); font-size: 2.1rem; color: rgba(200,144,10,0.2); font-weight: 400; line-height: 1; padding-top: 0.25rem; }
.pillar-body h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.45rem; }
.pillar-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

.partner-why-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--rad); overflow: hidden; margin-top: 2.25rem; }
.partner-why-item { padding: 2rem 2.25rem; background: rgba(255,255,255,0.03); border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); transition: background var(--tr); }
.partner-why-item:hover { background: rgba(255,255,255,0.06); }
.partner-why-item:nth-child(even) { border-right: none; }
.partner-why-item:nth-last-child(-n+2) { border-bottom: none; }
.partner-why-item h4 { font-size: 0.96rem; color: var(--white); margin-bottom: 0.55rem; }
.partner-why-item p  { font-size: 0.88rem; color: #8FA0B8; line-height: 1.75; }

/* ============================================================  CONTACT  */
.success-banner { background: var(--gold-lt); border: 1.5px solid var(--gold-br); border-left: 3px solid var(--gold); padding: 1.35rem 1.6rem; border-radius: var(--rad-s); margin-bottom: 2.75rem; }
.success-banner strong { font-size: 0.95rem; color: var(--navy); display: block; margin-bottom: 0.35rem; }
.success-banner p { font-size: 0.88rem; color: var(--muted); }
.contact-grid     { display: grid; grid-template-columns: 1fr 340px; gap: 4.5rem; align-items: start; }
.contact-form-col { display: flex; flex-direction: column; }
.contact-info-col { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); padding: 1.5rem; }
.contact-card h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 0.55rem; }
.contact-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }
.contact-link { display: inline-block; margin-top: 0.9rem; font-size: 0.85rem; font-weight: 600; color: var(--gold); border-bottom: 1px solid var(--gold-br); padding-bottom: 1px; }
.contact-link:hover { border-color: var(--gold); }
.contact-card-dark { background: var(--navy); border-color: var(--navy); }
.contact-card-dark h4 { color: var(--white); }
.contact-details { margin-top: 0.6rem; display: flex; flex-direction: column; gap: 0.72rem; }
.contact-details li { display: flex; gap: 0.8rem; align-items: baseline; }
.cd-label { font-size: 0.69rem; font-weight: 700; color: rgba(200,144,10,0.8); text-transform: uppercase; letter-spacing: 0.05em; min-width: 62px; flex-shrink: 0; }
.contact-details a, .contact-details span { font-size: 0.86rem; color: #B2BFCF; }
.contact-details a:hover { color: var(--gold); }
.contact-card-gold { background: var(--gold-lt); border-color: var(--gold-br); }
.contact-card-gold h4 { color: var(--navy); }
.response-time { font-family: var(--fd); font-size: 1.8rem; color: var(--navy); font-weight: 400; margin: 0.35rem 0 0.55rem; }

/* ============================================================  COURSE STRIPS (courses.php listing page)  */
.course-strips { display: flex; flex-direction: column; gap: 1.1rem; }
.course-strip { display: grid; grid-template-columns: 230px 1fr 230px; background: var(--white); border: 1px solid var(--border); border-radius: var(--rad); overflow: hidden; transition: box-shadow var(--tr), border-color var(--tr); }
.course-strip:hover { box-shadow: var(--sh); border-color: rgba(200,144,10,0.38); }
.strip-image { overflow: hidden; position: relative; }
.strip-image img { width: 100%; height: 100%; min-height: 175px; object-fit: cover; display: block; }
.strip-image-badge { position: absolute; bottom: 10px; left: 10px; background: rgba(6,15,36,0.86); color: #EFC45A; font-size: 0.71rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; border: 1px solid rgba(200,144,10,0.4); }
.strip-body { padding: 1.75rem 2.1rem; border-left: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; gap: 0.85rem; }
.strip-body h3 { font-size: 1.25rem; }
.strip-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.strip-highlights { display: flex; flex-direction: column; gap: 0.45rem; }
.strip-highlights li { font-size: 0.875rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.55rem; line-height: 1.55; }
.strip-highlights li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.strip-sidebar { padding: 1.75rem; border-left: 1px solid var(--border); display: flex; flex-direction: column; gap: 1.1rem; justify-content: center; }
.strip-tools { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.strip-outcome { background: var(--gold-lt); border: 1px solid var(--gold-br); padding: 0.75rem 1rem; border-radius: var(--rad-s); }
.outcome-label { font-size: 0.69rem; font-weight: 700; color: var(--gold); margin-bottom: 0.22rem; }
.outcome-val   { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.strip-cta { display: flex; flex-direction: column; gap: 0.5rem; }
.strip-cta .btn { width: 100%; justify-content: center; }

/* ============================================================  ANIMATIONS  */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.hero-eyeline     { animation: fadeUp 0.5s ease both; }
.hero-title       { animation: fadeUp 0.55s 0.1s ease both; }
.hero-description { animation: fadeUp 0.55s 0.2s ease both; }
.hero-actions     { animation: fadeUp 0.55s 0.3s ease both; }
.hero-stats       { animation: fadeUp 0.55s 0.42s ease both; }
.hero-card-box    { animation: fadeUp 0.65s 0.15s ease both; }

.animate-on-scroll { opacity:0; transform:translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.animate-on-scroll.animated { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:0.07s; } .delay-2 { transition-delay:0.14s; }
.delay-3 { transition-delay:0.21s; } .delay-4 { transition-delay:0.28s; }
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation:none !important; transition:none !important; }
  .animate-on-scroll { opacity:1; transform:none; }
}

/* ============================================================  RESPONSIVE  */
@media (max-width:1120px) {
  .hero-grid { grid-template-columns:1fr; gap:3.5rem; }
  .hero-card-box { max-width:520px; }
  .hero-description { max-width:100%; }
  .course-cards-grid { grid-template-columns:1fr 1fr; }
  .curriculum-grid   { grid-template-columns:1fr; }
  .course-sidebar    { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
  .course-hero-inner { grid-template-columns:1fr; }
  .course-hero-stats { flex-direction:row; border-left:none; padding-left:0; border-top:1px solid rgba(255,255,255,0.12); padding-top:1.75rem; gap:2.5rem; }
  .two-col-grid      { grid-template-columns:1fr; }
  .vm-grid           { grid-template-columns:1fr; }
  .vm-box:first-child { border-radius:var(--rad) var(--rad) 0 0; border-right:1px solid var(--border); border-bottom:none; }
  .vm-box:last-child  { border-radius:0 0 var(--rad) var(--rad); }
  .outcomes-grid     { grid-template-columns:1fr; gap:3rem; }
  .contact-grid      { grid-template-columns:1fr; }
  .partner-why-grid  { grid-template-columns:1fr; }
  .partner-why-item  { border-right:none !important; }
  .footer-grid       { grid-template-columns:1fr 1fr; gap:2.5rem; }
  .course-strip      { grid-template-columns:190px 1fr; }
  .strip-sidebar     { display:none; }
}

@media (max-width:768px) {
  .container       { padding:0 1.25rem; }
  .section-padding { padding:4rem 0; }
  .header-container { height:68px; }
  .logo-img { height:46px; }
  .nav-menu {
    position:fixed; top:68px; left:-100%; width:100%;
    height:calc(100vh - 68px); background:var(--white);
    flex-direction:column; padding:2rem; gap:1.75rem;
    transition:left 0.26s ease; box-shadow:var(--shl); z-index:999;
  }
  .nav-menu.active { left:0; }
  .mobile-nav-toggle { display:block; }
  .course-cards-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .why-item { border-right:none !important; }
  .why-item:nth-last-child(-n+2) { border-bottom:1px solid var(--border); }
  .why-item:last-child { border-bottom:none; }
  .hero-stats { flex-direction:column; gap:1.25rem; }
  .stat-item { border-right:none; margin-right:0; padding-right:0; padding-bottom:1.1rem; border-bottom:1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom:none; padding-bottom:0; }
  .course-sidebar { grid-template-columns:1fr; }
  .contact-form .form-row { grid-template-columns:1fr; }
  .pillar-row { grid-template-columns:52px 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .course-strip { grid-template-columns:1fr; }
  .strip-image { width:100%; height:200px; }
  .strip-body { border-left:none; border-top:1px solid var(--border); }
  .ccv2-footer { flex-direction:column; align-items:flex-start; gap:0.85rem; }
  .ccv2-cta { width:100%; }
  .ccv2-cta .btn { width:100%; }
}

@media (max-width:480px) {
  h1 { font-size:clamp(2rem,7.5vw,2.5rem); }
  h2 { font-size:clamp(1.6rem,6vw,2rem); }
  .hero-section { padding:5rem 0 4.5rem; }
}

/* ============================================================
   HOMEPAGE ADDITIONAL SECTIONS
   ============================================================ */

/* Numbers band */
.numbers-band { background: var(--navy); padding: 3.5rem 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; }
.number-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.1);
}
.number-item:last-child { border-right: none; }
.number-item strong { font-family: var(--fd); font-size: 2.2rem; color: var(--gold); font-weight: 400; line-height: 1; margin-bottom: 0.5rem; display: block; }
.number-item span { font-size: 0.82rem; color: #8FA0B8; line-height: 1.45; }

/* Journey steps */
.journey-steps { display: flex; flex-direction: column; gap: 0; }
.journey-step {
  display: grid; grid-template-columns: 80px 1fr;
  padding: 1.75rem 0; border-top: 1px solid var(--border);
  transition: background var(--tr);
}
.journey-step:last-child { border-bottom: 1px solid var(--border); }
.journey-step:hover { background: var(--page); }
.js-num { font-family: var(--fd); font-size: 2.4rem; color: rgba(200,144,10,0.2); font-weight: 400; line-height: 1; padding-top: 0.2rem; }
.js-body h4 { font-size: 1.02rem; color: var(--navy); margin-bottom: 0.45rem; }
.js-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-width: 700px; }

/* Includes grid */
.includes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--rad); overflow: hidden; }
.include-item { background: var(--white); padding: 2rem 2.25rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: background var(--tr); }
.include-item:hover { background: var(--page); }
.ii-icon { width: 42px; height: 42px; border-radius: var(--rad-s); background: var(--gold-lt); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ii-body h4 { font-size: 0.96rem; color: var(--navy); margin-bottom: 0.4rem; }
.ii-body p  { font-size: 0.86rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* CTA band */
.cta-band { background: var(--navy); padding: 4.5rem 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,144,10,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; position: relative; }
.cta-band-text h2 { color: var(--white) !important; margin-bottom: 0.75rem; font-size: clamp(1.6rem,3vw,2.2rem); }
.cta-band-text p  { color: #B8C6D6; font-size: 1rem; line-height: 1.75; max-width: 560px; margin: 0; }
.cta-band-actions { display: flex; flex-direction: column; gap: 0.65rem; flex-shrink: 0; }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.cta-band-actions .btn { min-width: 220px; justify-content: center; }

/* Responsive for new sections */
@media (max-width:1120px) {
  .numbers-grid { grid-template-columns: repeat(3,1fr); }
  .number-item:nth-child(3) { border-right: none; }
  .number-item:nth-child(4) { border-right: 1px solid rgba(255,255,255,0.1); }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-text p { max-width: 100%; }
  .cta-band-actions { flex-direction: row; }
  .cta-band-actions .btn { min-width: 180px; }
}
@media (max-width:768px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); }
  .number-item { border-right: none; background: var(--navy); }
  .includes-grid { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 52px 1fr; }
  .js-num { font-size: 1.75rem; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { min-width: unset; width: 100%; }
}
