/* =========================================================
   ITSA — Innovation Training and Staffing Agency
   Clean, Institutional Design — Light Theme
   ========================================================= */

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

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #1B3A6B;
  --navy-dark:    #0F2A52;
  --navy-light:   #2B4F8C;
  --blue:         #2563EB;
  --blue-dark:    #1D4ED8;
  --blue-light:   #EFF6FF;
  --teal:         #0D9488;
  --teal-light:   #F0FDFA;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --gray-400:     #94A3B8;
  --gray-500:     #64748B;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --text-dark:    #0F172A;
  --text-body:    #475569;
  --text-muted:   #64748B;
  --border:       #E2E8F0;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.08);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 400;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; color: var(--navy); }

p { color: var(--text-body); line-height: 1.7; }

a { color: var(--blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--navy); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.btn-primary.btn-large {
  font-size: 1rem;
  padding: 15px 36px;
}

.btn-ghost {
  display: inline-block;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
}
.btn-ghost:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 54px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); font-weight: 400; letter-spacing: -0.01em; }
.nav-brand-sub { font-size: 0.62rem; color: var(--gray-400); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--navy-dark); color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-500);
  border-radius: 2px;
  transition: 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 16px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--text-muted); font-weight: 500; font-size: 1rem; }
.nav-mobile .nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px 60px;
  background: var(--white);
}

/* Clean geometric decorative element — no images, no glow */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(37,99,235,0.2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-headline {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* ---- SECTION HEADERS ---- */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ---- COURSES STRIP ---- */
.courses-strip {
  background: var(--off-white);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.course-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.course-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.course-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1), var(--shadow-md);
}

.course-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.course-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.course-icon svg { width: 24px; height: 24px; }

.course-card h3 { margin-bottom: 12px; color: var(--navy); }
.course-card p { font-size: 0.9rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 20px; }

.course-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.course-meta span {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--text-muted);
  border: 1px solid var(--gray-200);
}

.course-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.courses-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- VALUE SECTION ---- */
.value-section {
  padding: 96px 0;
  background: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}
.value-item:hover { background: var(--off-white); }

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 22px; height: 22px; color: var(--blue); }

.value-item h4 { margin-bottom: 8px; color: var(--navy); }
.value-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--off-white);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-label { margin-bottom: 12px; display: block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-size: 0.97rem; }
.about-text .btn-ghost { margin-top: 8px; }

.callout-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.callout-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.callout-icon svg { width: 28px; height: 28px; color: var(--blue); }

.callout-headline {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.callout-box p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ---- ENROLL CTA ---- */
.enroll-cta {
  background: var(--navy);
  padding: 80px 0;
}
.cta-content { text-align: center; }
.cta-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 32px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-50);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--gray-500);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-400); }

/* ---- FORM STYLES ---- */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group select option { background: var(--white); color: var(--text-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--off-white);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .hero-badge { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ---- ALERT ---- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 20px;
  display: none;
  border: 1px solid;
}
.alert.success {
  background: var(--teal-light);
  border-color: rgba(13,148,136,0.3);
  color: var(--teal);
}
.alert.error {
  background: #FEF2F2;
  border-color: rgba(239,68,68,0.3);
  color: #B91C1C;
}
.alert.show { display: block; }

/* ---- PAGE SECTIONS (inner pages body) ---- */
.page-section {
  padding: 72px 0 96px;
  background: var(--white);
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 { color: var(--navy); margin-bottom: 20px; font-size: 1rem; }

.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2px;
}
.step-num.teal { background: var(--teal); }
.step-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 2px; }
.step-desc { font-size: 0.84rem; color: var(--text-muted); }

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--blue); }

.info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
}

.course-detail-card { }
.course-detail-card h2 { color: var(--navy); margin-bottom: 16px; }
.course-detail-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 24px; }
.course-detail-card .check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.course-detail-card .check-list li { color: var(--text-muted); font-size: 0.93rem; display: flex; gap: 10px; }
.course-detail-card .check-list li::before { content: '—'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.course-detail-card .course-meta-tag {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--text-muted);
  border: 1px solid var(--gray-200);
  display: inline-block;
}

.course-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.price-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.price-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-note {
  font-size: 0.83rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { margin: 0; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .course-cards { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; padding: 60px 24px 40px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { display: none; }
  .hero::before, .hero::after { display: none; }
}

@media (max-width: 480px) {
  .value-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

/* ---- HERO SPLIT LAYOUT ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-split .hero-content { max-width: 100%; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 520px;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero-image-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-image-badge .badge-icon svg { width: 20px; height: 20px; color: var(--white); }
.hero-image-badge .badge-text { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.35; }

/* ---- BRAND LOCKUP (hero & footer) ---- */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.brand-lockup img { height: 56px; width: auto; }
.brand-lockup-text { display: flex; flex-direction: column; }
.brand-lockup-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.brand-lockup-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 2px;
}

/* ---- VALUE SECTION WITH IMAGE ---- */
.value-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.value-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  max-height: 480px;
}
.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- ABOUT IMAGE ---- */
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- IMAGE STRIP ---- */
.image-strip {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}
.image-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* ---- FOOTER BRAND UPGRADE ---- */
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-brand-lockup img { height: 48px; width: auto; }
.footer-brand-lockup .fb-text { display: flex; flex-direction: column; }
.footer-brand-lockup .fb-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.15;
}
.footer-brand-lockup .fb-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 2px;
}

/* ---- PAGE HERO WITH BG IMAGE ---- */
.page-hero-image {
  position: relative;
  background: var(--off-white);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.page-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,250,252,0.92) 0%, rgba(248,250,252,0.96) 100%);
  z-index: 1;
}
.page-hero-image .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.page-hero-image .container { position: relative; z-index: 2; }

/* ---- RESPONSIVE OVERRIDES FOR NEW LAYOUTS ---- */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .hero-content { margin: 0; }
  .hero-split .hero-actions { justify-content: center; }
  .hero-split .hero-stats { justify-content: center; }
  .hero-split .brand-lockup { justify-content: center; }
  .hero-image-wrap { max-height: 400px; aspect-ratio: 16/9; margin: 0 auto; max-width: 560px; }
  .value-split { grid-template-columns: 1fr; }
  .value-image { max-height: 320px; aspect-ratio: 16/9; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero-image-wrap { display: none; }
  .brand-lockup img { height: 44px; }
  .brand-lockup-name { font-size: 1.2rem; }
  .image-strip { grid-template-columns: 1fr; }
  .image-strip img { height: 180px; }
  .nav-brand-text { display: none; }
  .value-image { display: none; }
}

@media (max-width: 480px) {
  .brand-lockup { flex-direction: column; text-align: center; gap: 10px; }
}