/* ==========================================================================
   SkillsBridge SAP Career Launch Program - Clean Enterprise Stylesheet
   ========================================================================== */

:root {
  --primary-navy: #07254e;
  --navy-dark: #051a37;
  --navy-light: #0d3875;
  --sap-blue: #0072bc;
  --sap-blue-hover: #005a96;
  --accent-orange: #f7941d;
  --accent-orange-hover: #e5820e;
  --accent-orange-glow: rgba(247, 148, 29, 0.28);
  
  --bg-white: #ffffff;
  --bg-light: #f8fafd;
  --bg-alt: #f1f5f9;
  --card-border: #e2e8f0;
  --card-border-hover: #cbd5e1;
  
  --text-primary: #0a2540;
  --text-secondary: #4a5568;
  --text-muted: #64748b;
  --text-white: #ffffff;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive;

  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(7, 37, 78, 0.07);
  --shadow-lg: 0 16px 36px rgba(7, 37, 78, 0.1);
  --shadow-xl: 0 24px 50px rgba(7, 37, 78, 0.14);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Headings & Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.18;
}

.text-orange { color: var(--accent-orange) !important; }
.text-blue { color: var(--sap-blue) !important; }
.text-white { color: var(--text-white) !important; }

/* Subtle Reveal Animation System */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow Header Styles */
.eyebrow-accent {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--sap-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow-accent .accent-line {
  width: 36px;
  height: 2.5px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.center-eyebrow {
  justify-content: center;
}

.section-heading {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 620px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 44px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #fa8500 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px var(--accent-orange-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-orange-hover) 0%, #e07200 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(247, 148, 29, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border: 1.5px solid var(--primary-navy);
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 37, 78, 0.16);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-announcement {
  background: #07254e;
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  animation: pulseLight 1.8s infinite;
}

@keyframes pulseLight {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 6px var(--accent-orange); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.announcement-link {
  color: var(--accent-orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
}

.announcement-link:hover {
  color: #ffaa42;
}

/* ==========================================================================
   Header & Official Brand Logo
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--card-border);
  padding: 12px 0;
  transition: var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Official Logo Image */
.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

/* Navigation Links */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-orange);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--sap-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-navy);
  border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  border-bottom: 2px solid var(--card-border);
  z-index: 99;
}

.mobile-drawer.active {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 56px 0 68px 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 75% 20%, rgba(0, 114, 188, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--sap-blue);
  margin-bottom: 14px;
}

.hero-eyebrow .dot {
  color: var(--accent-orange);
}

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--primary-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-title-blue {
  color: var(--primary-navy);
}

.hero-title-orange {
  color: var(--accent-orange);
}

.hero-subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--sap-blue);
  margin-bottom: 16px;
}

.hero-description {
  font-size: 1.06rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 24px;
}

/* Feature Highlight Pills (Clean Vector SVG Icons) */
.hero-pills {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #f4f8fd;
  border: 1px solid #dbeafe;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-navy);
}

.pill-svg-icon {
  width: 18px;
  height: 18px;
  color: var(--sap-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill-svg-icon svg {
  width: 100%;
  height: 100%;
}

.pill-divider {
  color: #cbd5e1;
  font-weight: 300;
}

/* Value Badge */
.hero-value-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff8ef;
  border-left: 3.5px solid var(--accent-orange);
  border-top: 1px solid #ffe8cc;
  border-right: 1px solid #ffe8cc;
  border-bottom: 1px solid #ffe8cc;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: #8c4c00;
  max-width: 540px;
}

.badge-value-tag {
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Metrics Strip */
.hero-metrics-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
  max-width: 520px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-item strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-navy);
  line-height: 1.1;
}

.metric-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.metric-separator {
  width: 1px;
  height: 28px;
  background-color: var(--card-border);
}

/* Hero Photography & Graphic Badges */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.hero-image-wrapper:hover {
  transform: translateY(-3px);
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

/* Script Overlay Badge ("Same People Bigger Futures") */
.script-badge {
  position: absolute;
  font-family: var(--font-script);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.05;
  color: #0072bc;
  z-index: 10;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.95);
  transform: rotate(-9deg);
  pointer-events: none;
}

.script-badge.badge-top {
  top: -24px;
  left: 20%;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 16px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Vertical Slate Ribbon ("GOOD SKILLS BRIGHTER TOMORROWS") */
.vertical-ribbon {
  position: absolute;
  top: 24px;
  right: -12px;
  background: rgba(7, 37, 78, 0.94);
  color: #ffffff;
  padding: 12px 10px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.vertical-ribbon .ribbon-highlight {
  color: var(--accent-orange);
}

/* Floating Glass Card */
.floating-glass-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.glass-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff4e5;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card-icon svg {
  width: 22px;
  height: 22px;
}

.glass-card-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary-navy);
}

.glass-card-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section: A Stronger Tomorrow (Centered Header + 4-Column Spread Grid)
   ========================================================================== */
.section {
  padding: 84px 0;
}

.benefits-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

/* Symmetrically Spread 8-Card Grid */
.benefits-grid-spread {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(7, 37, 78, 0.09);
  border-color: #bad8f5;
}

.benefit-card.card-highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border-color: #bfdbfe;
}

.card-corner-tag {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--sap-blue);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0, 114, 188, 0.25);
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eef6fc;
  color: var(--sap-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.benefit-icon-box svg {
  width: 26px;
  height: 26px;
}

.benefit-card:hover .benefit-icon-box {
  background: var(--sap-blue);
  color: var(--text-white);
  transform: scale(1.05);
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.32;
}

.benefit-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: auto;
}

/* ==========================================================================
   Section: Program Journey (6 Steps)
   ========================================================================== */
.journey-section {
  background-color: var(--bg-white);
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-badge-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 auto 16px auto;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: transform 0.25s ease;
}

.journey-step:hover .step-badge-num {
  transform: scale(1.1);
}

.step-blue { background: var(--sap-blue); }
.step-orange { background: var(--accent-orange); }

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #bad8f5;
  box-shadow: var(--shadow-md);
}

.step-card.highlight-step {
  background: #fffcf7;
  border-color: #fed7aa;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  transition: var(--transition-fast);
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-card:hover .step-icon {
  background: var(--primary-navy);
  color: var(--text-white);
}

.step-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-arrow {
  position: absolute;
  top: 8px;
  right: -12px;
  font-size: 1.2rem;
  color: #cbd5e1;
  font-weight: 700;
  z-index: 1;
}

.journey-step:last-child .step-arrow {
  display: none;
}

/* ==========================================================================
   Section: Why Choose SkillsBridge (Deep Navy)
   ========================================================================== */
.why-section {
  background: linear-gradient(145deg, #051a37 0%, #07254e 60%, #0d3875 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.why-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 52px;
  align-items: center;
}

.why-heading-col .line-orange {
  background-color: var(--accent-orange);
}

.why-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.why-subtext {
  font-size: 1.08rem;
  color: #c2d6ed;
  line-height: 1.6;
  margin-bottom: 28px;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition-smooth);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(247, 148, 29, 0.18);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
}

.why-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 0.9rem;
  color: #c5d8f0;
  line-height: 1.55;
}

/* ==========================================================================
   Section: Who Can Apply (Personas Grid)
   ========================================================================== */
.personas-section {
  background-color: var(--bg-white);
}

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

.persona-card {
  background: var(--bg-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.persona-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #bad8f5;
}

.persona-img-box {
  position: relative;
  aspect-ratio: 3 / 3.8;
  overflow: hidden;
  background-color: #f1f5f9;
}

.persona-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

.persona-card:hover .persona-img {
  transform: scale(1.04);
}

.persona-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(7, 37, 78, 0.88);
  color: var(--text-white);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.persona-info {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.persona-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.persona-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: auto;
}

/* ==========================================================================
   Section: Curriculum Tracks
   ========================================================================== */
.curriculum-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

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

.module-card {
  background: var(--bg-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #bad8f5;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.module-code {
  background: var(--sap-blue);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.module-header h4 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.module-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}

.module-ideal {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sap-blue);
  background: #eef6fc;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   Section: FAQs Accordion
   ========================================================================== */
.faqs-section {
  background-color: var(--bg-white);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: #bfdbfe;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.faq-toggle-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--sap-blue);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Section: Bottom CTA Banner
   ========================================================================== */
.cta-banner-section {
  position: relative;
  padding: 96px 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 255, 255, 0.94) 100%);
  backdrop-filter: blur(2px);
}

.cta-banner-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.script-badge-banner {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  color: #0072bc;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
  padding: 10px;
}

.banner-left { transform: rotate(-8deg); text-align: left; }
.banner-right { transform: rotate(8deg); text-align: right; }

.cta-banner-content {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-banner-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 26px;
}

.quick-contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.quick-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 6px 8px 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(7, 37, 78, 0.12);
  border: 1.5px solid #d0e3fc;
  width: 100%;
  max-width: 520px;
  transition: border-color 0.25s ease;
}

.quick-input-group:focus-within {
  border-color: var(--sap-blue);
  box-shadow: 0 8px 28px rgba(0, 114, 188, 0.18);
}

.country-code {
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 8px;
}

.quick-input-group input {
  flex: 1;
  font-size: 1rem;
  padding: 8px;
  background: transparent;
}

.form-feedback {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 20px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--navy-dark);
  color: #cbd5e1;
  padding: 64px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Footer Logo Card */
.footer-logo-wrapper {
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 16px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-company-name {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #94a3b8;
}

.footer-contact-list li {
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.footer-contact-list a:hover {
  color: var(--accent-orange);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #94a3b8;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #94a3b8;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Modal Dialog
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 26, 55, 0.72);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #f1f5f9;
  color: #475569;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-tag {
  display: inline-block;
  background: #e0f2fe;
  color: var(--sap-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.modal-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 22px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.req { color: #dc2626; }

.form-group input,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  background-color: #fafbfc;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--sap-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.1);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  background-color: #fafbfc;
  overflow: hidden;
}

.country-prefix {
  padding: 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  background: #f1f5f9;
  height: 100%;
  display: flex;
  align-items: center;
}

.phone-input-wrap input {
  border: none;
  background: transparent;
  flex: 1;
}

.phone-input-wrap:focus-within {
  border-color: var(--sap-blue);
  background-color: #ffffff;
}

.form-terms label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.form-terms input {
  margin-top: 2px;
}

.modal-feedback {
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.modal-feedback.success {
  color: #065f46;
  background-color: #d1fae5;
  padding: 12px;
  border: 1px solid #a7f3d0;
}

.modal-feedback.error {
  color: #991b1b;
  background-color: #fee2e2;
  padding: 12px;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }

  .benefits-grid-spread {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }

  .step-arrow {
    display: none;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero-title { font-size: 2.2rem; }

  .hero-pills {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
  }

  .pill-divider { display: none; }

  .benefits-grid-spread {
    grid-template-columns: 1fr;
  }

  .journey-timeline {
    grid-template-columns: 1fr;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .personas-grid {
    grid-template-columns: 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-container {
    flex-direction: column;
    gap: 20px;
  }

  .banner-left, .banner-right {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .script-badge.badge-top {
    font-size: 1.5rem;
    left: 8%;
  }

  .floating-glass-card {
    display: none;
  }
}
