/* ==========================================================================
   EmblazsAI — Custom Stylesheet
   Stack: Bootstrap 5 base + this file
   Font:  Inter (Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours — Obsidian + Amber */
  --color-primary:        #0C1018;
  --color-secondary:      #D97706;
  --color-accent:         #B45309;
  --color-surface:        #FAFAFA;
  --color-surface-alt:    #FFFBF2;
  --color-border:         #E5DFD3;
  --color-text:           #0C1018;
  --color-text-muted:     #6B6560;
  --color-text-inverse:   #FFFFFF;
  --color-text-subdued:   #9B9088;

  /* Spacing — 8px grid */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   48px;
  --space-xl:   80px;
  --space-2xl:  120px;

  /* Radius */
  --radius-card: 12px;
  --radius-btn:  6px;
  --radius-badge: 20px;

  /* Shadows */
  --shadow-card:       0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,.08);
  --shadow-nav:        0 1px 0 var(--color-border);
}


/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override Bootstrap container max-width */
.container {
  max-width: 1200px;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover {
  color: #B45309;
}


/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-top: 0;
}

.embz-h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.embz-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.embz-h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.embz-lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
}

.embz-caption {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Section label — teal uppercase eyebrow above H2 */
.embz-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* Inverse variants for dark sections */
.embz-text-inverse   { color: var(--color-text-inverse); }
.embz-text-subdued   { color: var(--color-text-subdued); }
.embz-text-muted     { color: var(--color-text-muted); }
.embz-text-accent    { color: var(--color-accent); }


/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.embz-btn {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  border-radius: var(--radius-btn);
  padding: 0.625rem 1.5rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary — amber, dark text for contrast */
.embz-btn-primary {
  background-color: var(--color-secondary);
  color: #0C1018;
  border-color: var(--color-secondary);
}
.embz-btn-primary:hover,
.embz-btn-primary:focus-visible {
  background-color: #B45309;
  border-color: #B45309;
  color: #0C1018;
}

/* Outline — transparent + amber border */
.embz-btn-outline {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.embz-btn-outline:hover,
.embz-btn-outline:focus-visible {
  background-color: #FEF3C7;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* Dark outline — for dark (#0F172A) sections */
.embz-btn-dark-outline {
  background-color: transparent;
  color: var(--color-text-inverse);
  border-color: rgba(255, 255, 255, 0.65);
  border-width: 2px;
}
.embz-btn-dark-outline:hover,
.embz-btn-dark-outline:focus-visible {
  border-color: #FFFFFF;
  color: var(--color-text-inverse);
}

.embz-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}


/* --------------------------------------------------------------------------
   5. Cards
   -------------------------------------------------------------------------- */
.embz-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease;
  height: 100%;
}

.embz-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.embz-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.375rem;
  margin-bottom: var(--space-md);
}

.embz-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.embz-card-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Use-case card variant — slightly denser */
.embz-usecase-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease;
  height: 100%;
}

.embz-usecase-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.embz-usecase-icon {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.embz-usecase-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.embz-usecase-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}


/* --------------------------------------------------------------------------
   6. Badges
   -------------------------------------------------------------------------- */
.embz-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  letter-spacing: 0.01em;
}

.embz-badge-upcoming     { background: #EFF6FF; color: #2563EB; }
.embz-badge-registration { background: #F0FDF4; color: #16A34A; }
.embz-badge-in-progress  { background: #FFF7ED; color: #EA580C; }
.embz-badge-completed    { background: #F8FAFC; color: var(--color-text-muted); }
.embz-badge-webinar      { background: rgba(20,184,166,.12); color: var(--color-accent); }


/* --------------------------------------------------------------------------
   7. Announcement bar
   -------------------------------------------------------------------------- */
.embz-announcement-bar {
  background-color: var(--color-secondary);
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 10px var(--space-md);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1030;
}

.embz-announcement-bar a {
  color: var(--color-text-inverse);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.embz-lang-notice {
  background: color-mix(in srgb, var(--color-accent) 8%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 20%, transparent);
  padding: 10px 0;
  font-size: 0.875rem;
  text-align: center;
  color: var(--color-text-muted);
}
.embz-lang-notice .bi {
  color: var(--color-accent);
  margin-right: 6px;
  vertical-align: -1px;
}
.embz-lang-notice-sep {
  margin: 0 8px;
  opacity: 0.4;
}


/* --------------------------------------------------------------------------
   8. Navigation
   -------------------------------------------------------------------------- */
.embz-navbar {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-nav);
  padding-top: 0;
  padding-bottom: 0;
  min-height: 64px;
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Announcement bar present — navbar sticks below it */
.has-announcement .embz-navbar {
  top: 0; /* JS can adjust if needed; announcement scrolls away */
}

.embz-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary) !important;
  letter-spacing: -0.025em;
  padding: 0;
  line-height: 64px;
  text-decoration: none;
}

.embz-brand:hover {
  color: var(--color-primary) !important;
  opacity: .85;
}

.embz-brand-ai {
  color: var(--color-secondary);
}

.embz-navbar .nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  transition: color 0.15s ease;
}

.embz-navbar .nav-link:hover,
.embz-navbar .nav-link.active {
  color: var(--color-secondary);
}

.embz-toggler {
  border: none;
  padding: 6px;
  color: var(--color-text);
  background: transparent;
}

.embz-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--color-border);
  outline-offset: 2px;
}

/* Mobile nav open state */
@media (max-width: 991.98px) {
  .embz-navbar .navbar-collapse {
    border-top: 1px solid var(--color-border);
    padding: var(--space-sm) 0;
    margin-top: 4px;
  }

  .embz-navbar .nav-link {
    padding: 0.5rem 0;
  }
}


/* --------------------------------------------------------------------------
   9. Section scaffolding
   -------------------------------------------------------------------------- */
.embz-section {
  padding: var(--space-xl) 0;
}

.embz-section-sm {
  padding: var(--space-lg) 0;
}

/* Dark sections */
.embz-section-dark {
  background-color: var(--color-primary);
}

/* Alt sections */
.embz-section-alt {
  background-color: var(--color-surface-alt);
}

/* Blue section (Statistics) */
.embz-section-blue {
  background-color: var(--color-secondary);
}

/* Section header block — label + H2 + optional sub */
.embz-section-header {
  margin-bottom: var(--space-lg);
}

.embz-section-header.centered {
  text-align: center;
}

.embz-section-header p {
  margin-top: var(--space-sm);
  color: var(--color-text-muted);
  max-width: 560px;
}

.embz-section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   10. Hero section
   -------------------------------------------------------------------------- */
.embz-hero {
  background-color: var(--color-surface);
  padding: var(--space-2xl) 0 var(--space-xl);
}

/* ── Hero animation ──────────────────────────────────────────────────────── */

.embz-hero-left { position: relative; }

#embz-hero-anim {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  text-align: center;
}

.embz-hero-anim-line {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
  padding: 0;
  text-align: center;
}

.embz-hero-anim-line.embz-anim-question {
  font-size: clamp(1.25rem, 2.75vw, 1.625rem);
  color: var(--color-text);
}

.embz-hero-anim-line.embz-anim-answer {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 500;
  color: var(--color-accent);
  margin-top: 14px;
}

.embz-hero-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background-color: var(--color-secondary);
  margin-left: 1px;
  vertical-align: middle;
  flex-shrink: 0;
  animation: embz-cursor-blink 0.75s step-end infinite;
}

@keyframes embz-cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

#embz-hero-anim.embz-anim-exit {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#embz-hero-static {
  opacity: 0;
}

#embz-hero-static.embz-static-reveal {
  opacity: 1;
  transition: opacity 0.55s ease 0.05s;
}

/* Skip animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  #embz-hero-anim    { display: none !important; }
  #embz-hero-static  { opacity: 1 !important; transition: none !important; }
  .embz-hero-cursor  { animation: none !important; }
}


.embz-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.embz-hero-sub {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

/* Framework card — hero right column */
.embz-framework-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.embz-framework-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.embz-framework-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
}

.embz-framework-icon {
  font-size: 1.125rem;
  color: var(--color-secondary);
  min-width: 22px;
  padding-top: 1px;
  flex-shrink: 0;
}

.embz-framework-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 3px;
  letter-spacing: -.01em;
}

.embz-framework-item p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Subtle horizontal rule beneath hero on light sections */
.embz-section-rule {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}


/* --------------------------------------------------------------------------
   11. Programs overview — featured card
   -------------------------------------------------------------------------- */
.embz-program-featured {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.embz-program-featured-body {
  padding: 40px;
}

.embz-program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.embz-program-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.embz-program-meta-item i {
  color: var(--color-accent);
  font-size: 1rem;
}

.embz-program-overview {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.embz-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin-top: var(--space-lg);
  transition: gap 0.15s ease;
}

.embz-view-all-link:hover {
  gap: 10px;
  color: var(--color-secondary);
}


/* --------------------------------------------------------------------------
   12. Blueprint section
   -------------------------------------------------------------------------- */
.embz-blueprint-graphic {
  background-color: var(--color-primary);
  border-radius: var(--radius-card);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.embz-blueprint-grid {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}


/* --------------------------------------------------------------------------
   13. Upcoming batch — dark section
   -------------------------------------------------------------------------- */
.embz-batch-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-card);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
}

.embz-batch-program {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-sm);
}

.embz-batch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.embz-batch-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-text-subdued);
}

.embz-batch-meta-item i {
  color: var(--color-accent);
}

/* Batch card — context block (audience / outcomes / delivery) */
.embz-batch-context {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.embz-batch-context-item {
  display: flex;
  gap: 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.embz-batch-context-label {
  color: var(--color-accent);
  font-weight: 600;
  min-width: 110px;
  flex-shrink: 0;
}

.embz-batch-context-value {
  color: var(--color-text-subdued);
}

/* Countdown — de-emphasized, urgency signal only */
.embz-countdown {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.embz-countdown-unit {
  text-align: center;
  min-width: 52px;
}

.embz-countdown-value {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}

.embz-countdown-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subdued);
  display: block;
  margin-top: 4px;
}

.embz-countdown-sep {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,.3);
  align-self: flex-start;
  padding-top: 2px;
}


/* --------------------------------------------------------------------------
   14. Webinar section
   -------------------------------------------------------------------------- */
.embz-webinar-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.embz-webinar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.embz-webinar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.embz-webinar-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.embz-webinar-meta-item i {
  color: var(--color-accent);
}


/* --------------------------------------------------------------------------
   15. Statistics section
   -------------------------------------------------------------------------- */
.embz-stat-item {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
}

.embz-stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-inverse);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}

.embz-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

.embz-stat-divider {
  border-left: 1px solid rgba(255,255,255,.2);
}

@media (max-width: 575.98px) {
  .embz-stat-item {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .embz-stat-divider {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: var(--space-md);
    margin-top: 0;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .embz-stat-divider {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: var(--space-md);
    margin-top: var(--space-md);
  }
}


/* --------------------------------------------------------------------------
   16. Industries Served
   -------------------------------------------------------------------------- */
.embz-industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.embz-industry-badge {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-badge);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   17. Testimonials
   -------------------------------------------------------------------------- */
.embz-testimonial-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.embz-testimonial-quote {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.embz-testimonial-quote::before {
  content: '\201C';
  font-size: 1.5rem;
  color: var(--color-accent);
  font-style: normal;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.embz-testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.embz-testimonial-role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   17. Contact CTA section
   -------------------------------------------------------------------------- */
.embz-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-sm);
}

.embz-cta-sub {
  font-size: 1.0625rem;
  color: var(--color-text-subdued);
  margin-bottom: var(--space-lg);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.embz-footer {
  background-color: var(--color-primary);
  padding: var(--space-xl) 0 var(--space-lg);
}

/* Footer grid: single column on mobile, 3-column on desktop */
.embz-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .embz-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.embz-footer-col {
  display: flex;
  flex-direction: column;
}

.embz-footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}

.embz-footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-sm);
  padding: 0;
}

.embz-footer-links {
  padding: 0;
  margin: 0;
}

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

.embz-footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-subdued);
  text-decoration: none;
  transition: color 0.15s ease;
}

.embz-footer-links a:hover {
  color: var(--color-text-inverse);
}


/* --------------------------------------------------------------------------
   19. Admin layout (loaded only in /admin/)
   -------------------------------------------------------------------------- */
.embz-admin-body {
  background-color: var(--color-surface-alt);
  min-height: 100vh;
}

.embz-admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.embz-admin-sidebar {
  width: 240px;
  min-width: 240px;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.embz-sidebar-brand {
  padding: 20px var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.embz-sidebar-brand-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.embz-sidebar-brand-link:hover {
  color: var(--color-accent);
}

.embz-sidebar-brand-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.embz-sidebar-nav {
  padding: var(--space-sm) 0 var(--space-lg);
  flex: 1;
}

.embz-sidebar-section-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: var(--space-md) var(--space-md) 6px;
}

.embz-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
  border-radius: 0;
}

.embz-sidebar-link:hover {
  color: var(--color-text-inverse);
  background-color: rgba(255,255,255,.06);
}

.embz-sidebar-link.active {
  color: var(--color-text-inverse);
  background-color: rgba(37,99,235,.35);
}

.embz-sidebar-link i {
  font-size: 1rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* Admin main area — offset for fixed sidebar */
.embz-admin-main {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Topbar */
.embz-admin-topbar {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 90;
}

.embz-topbar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--space-lg);
  height: 60px;
}

.embz-topbar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  flex: 1;
}

.embz-topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.embz-topbar-link,
.embz-topbar-admin-name,
.embz-topbar-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.embz-topbar-link:hover,
.embz-topbar-logout:hover {
  color: var(--color-text);
}

.embz-topbar-logout:hover {
  color: #DC2626;
}

.embz-topbar-toggle {
  background: none;
  border: none;
  font-size: 1.375rem;
  color: var(--color-text);
  cursor: pointer;
  padding: 4px;
}

/* Admin content area */
.embz-admin-content {
  padding: var(--space-lg);
  flex: 1;
}

/* Admin responsive */
@media (max-width: 991.98px) {
  .embz-admin-sidebar {
    transform: translateX(-240px);
    transition: transform 0.25s ease;
  }

  .embz-admin-sidebar.open {
    transform: translateX(0);
  }

  .embz-admin-main {
    margin-left: 0;
  }
}


/* --------------------------------------------------------------------------
   20. Blueprint SVG graphic placeholder
   -------------------------------------------------------------------------- */
.embz-blueprint-svg {
  width: 100%;
  max-width: 400px;
  opacity: 0.7;
}


/* --------------------------------------------------------------------------
   21. Service cards
   -------------------------------------------------------------------------- */
.embz-service-card {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  height: 100%;
  background: var(--color-surface);
  transition: box-shadow .18s ease, border-color .18s ease;
}

.embz-service-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: #CBD5E1;
}

.embz-service-icon {
  font-size: 1.375rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
  display: block;
}

.embz-service-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.embz-service-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* --------------------------------------------------------------------------
   22. Academy cards
   -------------------------------------------------------------------------- */
.embz-academy-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.embz-academy-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: #CBD5E1;
}

.embz-academy-icon {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.embz-academy-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.embz-academy-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.embz-link-arrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s ease, color .15s ease;
}

.embz-link-arrow:hover {
  color: #B45309;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   23. Why EmblazsAI — pillar cards
   -------------------------------------------------------------------------- */
.embz-pillar {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  height: 100%;
  background: var(--color-surface);
}

.embz-pillar-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.embz-pillar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.embz-pillar-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

.embz-pillar--dark {
  background: var(--color-primary);
  border-color: #1E293B;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.embz-pillar-quote {
  font-size: 0.9375rem;
  color: #CBD5E1;
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 16px;
  border: none;
  padding: 0;
}

.embz-pillar-attr {
  font-size: 0.8125rem;
  color: #475569;
  margin: 0;
}

/* --------------------------------------------------------------------------
   24. Hero diagram (kept for reuse)
   -------------------------------------------------------------------------- */
.embz-hero-diagram {
  padding: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-card);
}

/* --------------------------------------------------------------------------
   22. Learning Paths — track cards
   -------------------------------------------------------------------------- */
.embz-track-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.embz-track-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: #CBD5E1;
}

.embz-track-card--featured {
  background-color: #0C1018;
  border-color: #1A2332;
}

.embz-track-card--featured .embz-track-label,
.embz-track-card--featured .embz-track-title,
.embz-track-card--featured .embz-track-desc,
.embz-track-card--featured .embz-track-list li {
  color: #E2E8F0;
}

.embz-track-card--featured .embz-track-label {
  color: var(--color-accent);
}

.embz-track-card--featured .embz-track-list li::before {
  color: var(--color-accent);
}

.embz-track-card--featured:hover {
  border-color: #2563EB;
}

.embz-track-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.embz-track-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.embz-track-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.embz-track-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.embz-track-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.embz-track-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 5px 0 5px 20px;
  position: relative;
}

.embz-track-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   23. Utility helpers
   -------------------------------------------------------------------------- */
.embz-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.embz-divider-dark {
  border-top-color: rgba(255,255,255,.08);
}

/* Responsive button group — stack on mobile */
@media (max-width: 575.98px) {
  .embz-btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .embz-btn-group .embz-btn {
    text-align: center;
  }
}


/* --------------------------------------------------------------------------
   25. Programs page — stacked enterprise list
   -------------------------------------------------------------------------- */

/* Stacked program list */
.embz-program-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.embz-program-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  margin-bottom: var(--space-sm);
}

.embz-program-item-header {
  margin-bottom: var(--space-md);
}

.embz-program-badge {
  display: table;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: normal;
  word-break: break-word;
  margin-bottom: 10px;
}

.embz-program-price {
  font-weight: 600;
  color: var(--color-text);
}

.embz-program-item-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}

/* Key outcomes — reuses .embz-program-overview for paragraph spacing */
.embz-program-item-outcomes {
  margin-bottom: var(--space-md);
}

.embz-program-outcomes-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

/* Checkmark bullet list */
.embz-program-outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.embz-program-outcomes-list li {
  font-size: 0.9375rem;
  color: var(--color-text);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.embz-program-outcomes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.8125rem;
  top: 2px;
  font-weight: 700;
}

/* "View / Hide Curriculum" toggle — styled as an outline button */
.embz-curriculum-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s ease, color .15s ease;
}

.embz-curriculum-toggle:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.embz-curriculum-toggle .bi-chevron-down {
  font-size: 0.75rem;
  transition: transform .2s ease;
}

.embz-curriculum-toggle[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

/* Label swap: show/hide spans driven by aria-expanded */
.embz-toggle-hide { display: none; }

.embz-curriculum-toggle[aria-expanded="true"] .embz-toggle-show { display: none; }
.embz-curriculum-toggle[aria-expanded="true"] .embz-toggle-hide { display: inline; }

/* Curriculum collapse body */
.embz-program-curriculum {
  padding-top: var(--space-md);
  margin-top: var(--space-xs);
}

/* Numbered curriculum list — single-column table-like layout */
.embz-curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  display: flex;
  flex-direction: column;
}

.embz-curriculum-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
}

.embz-curriculum-item:first-child {
  border-top: 1px solid var(--color-border);
}

.embz-curriculum-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .05em;
  flex-shrink: 0;
  min-width: 20px;
}

.embz-curriculum-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

/* CTAs — always visible below key outcomes */
.embz-program-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.embz-program-item-actions .embz-btn,
.embz-program-item-actions .embz-curriculum-toggle {
  font-size: 0.8125rem;
  padding: 0.5rem 0.875rem;
  white-space: nowrap;
}

.embz-program-item-actions .embz-curriculum-toggle {
  min-width: 11rem;
  justify-content: center;
}

/* Mobile */
@media (max-width: 767.98px) {
  .embz-program-item {
    padding: 24px 20px;
  }
}


/* --------------------------------------------------------------------------
   26. Registration page (register.php + thank-you.php)
   -------------------------------------------------------------------------- */

/* Breadcrumb */
.embz-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.embz-breadcrumb a {
  color: var(--color-secondary);
  text-decoration: none;
}

.embz-breadcrumb a:hover {
  text-decoration: underline;
}

/* Program + batch summary panel (left column) */
.embz-reg-summary {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
  position: sticky;
  top: 88px;
}

.embz-reg-batch-details {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

/* Definition list for batch info */
.embz-reg-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.embz-reg-dl-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}

.embz-reg-dl-row:last-child {
  border-bottom: none;
}

.embz-reg-dl-row dt {
  font-weight: 500;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.embz-reg-dl-row dd {
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  text-align: right;
}

/* Fee display */
.embz-reg-fee {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.embz-reg-fee-amount {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -.01em;
}

/* Form fields */
.embz-reg-field {
  margin-bottom: 20px;
}

.embz-reg-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.embz-reg-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-btn);
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
  line-height: 1.5;
}

.embz-reg-input::placeholder {
  color: var(--color-text-subdued);
}

.embz-reg-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

/* Mobile ext + number split field */
.embz-mobile-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.embz-mobile-ext-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
  position: relative;
}

.embz-mobile-plus {
  position: absolute;
  left: 12px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  pointer-events: none;
  line-height: 1;
}

.embz-mobile-ext {
  padding-left: 24px;
  text-align: left;
  width: 100%;
}

.embz-mobile-row > .embz-reg-input {
  flex: 1;
}

/* Alert */
.embz-alert {
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.embz-alert-danger {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Thank-you page */
.embz-thankyou-icon {
  font-size: 3rem;
  color: #16A34A;
  line-height: 1;
}

.embz-thankyou-summary {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  padding: 4px 24px;
  text-align: left;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .embz-reg-summary {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .embz-reg-summary {
    padding: 24px 20px;
  }
}

/* ── Corporate inquiry section — extra bottom clearance prevents card
      shadow from bleeding into the adjacent dark section / footer        ── */
.embz-section-inquiry {
  padding-bottom: 64px;
}

.embz-price-original {
  text-decoration: line-through;
  opacity: .5;
  margin-inline-end: .25rem;
}

.embz-inquiry-card {
  width: 80%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   Open Batches — grouped by region (homepage, before "What We Do")
   -------------------------------------------------------------------------- */

/* Two-column grid: Middle East | India */
.embz-region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .embz-region-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.embz-region-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Region header bar */
.embz-region-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.25rem;
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.embz-region-title {
  font-size: .9375rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: inherit;
}

.embz-region-days {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #94A3B8;
}

/* Cohort rows inside a region card */
.embz-region-cohorts {
  padding: 0 1.25rem;
}

.embz-region-cohort {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  padding: 1.125rem 0;
}

.embz-region-cohort-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.embz-region-cohort-info {
  flex: 1;
  min-width: 0;
}

.embz-region-cohort-program {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 .2rem;
  line-height: 1.35;
}

.embz-region-cohort-meta {
  font-size: .75rem;
  color: var(--color-text-muted);
  margin: 0 0 .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .2rem .4rem;
}

.embz-region-times-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}

.embz-region-times-table tr + tr td {
  padding-top: .25rem;
}

.embz-region-loc {
  font-size: .8rem;
  color: var(--color-text-muted);
  padding-right: .875rem;
  vertical-align: baseline;
  width: 100%;
}

.embz-region-time {
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  vertical-align: baseline;
}

.embz-region-cta,
.embz-region-cta-group {
  align-self: flex-start;
}

.embz-region-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}


/* --------------------------------------------------------------------------
   Cohort Schedule — programs page section
   -------------------------------------------------------------------------- */

.embz-cohort-schedule-wrap {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  border-radius: var(--radius-card);
}

.embz-cohort-schedule-label {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #0369A1;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.embz-cohort-schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .embz-cohort-schedule-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.embz-cohort-card {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 1rem 1.125rem;
  border: 1px solid #BAE6FD;
}

.embz-cohort-card-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 .625rem;
}

.embz-cohort-card-times {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.embz-cohort-card-times li {
  font-size: .8rem;
  display: flex;
  gap: .375rem;
  flex-wrap: wrap;
}

.embz-cohort-loc {
  color: var(--color-text-muted);
}

.embz-cohort-time {
  font-weight: 600;
  color: var(--color-text);
}


/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY — Faculty cards + Cohort seamless marquee scroller
════════════════════════════════════════════════════════════════════════════ */

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.embz-gallery-section {
  overflow: hidden;
}

/* ── Faculty grid ────────────────────────────────────────────────────────── */
.embz-faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.embz-faculty-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}

.embz-faculty-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  transform: translateY(-3px);
}

.embz-faculty-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.embz-faculty-info {
  padding: .875rem .75rem;
}

.embz-faculty-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 .2rem;
}

.embz-faculty-title {
  font-size: .8rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ── Cohort marquee ──────────────────────────────────────────────────────── */
.embz-marquee-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges for premium feel */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.embz-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: embz-marquee 40s linear infinite;
}

.embz-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes embz-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.embz-marquee-item {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 280px;
  height: 200px;
  background: var(--color-surface);
}

.embz-marquee-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.embz-marquee-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption overlay on cohort items */
.embz-marquee-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .5rem .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Section divider label between faculty + cohort */
.embz-gallery-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHAT STRIP — Voice of the learner, hero section footer
════════════════════════════════════════════════════════════════════════════ */

/* ── Strip wrapper ─────────────────────────────────────────────────────────── */
.embz-chat-strip {
  position: relative;
  background: transparent;
  height: 178px;
  margin-top: 48px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Ambient colour blobs */
.embz-chat-glow {
  position: absolute;
  width: 340px;
  height: 200px;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  opacity: .45;
}
.embz-chat-glow-l {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #0C1018 0%, transparent 70%);
}
.embz-chat-glow-r {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #D97706 0%, transparent 70%);
}

/* Centre column */
.embz-chat-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 1.25rem;
}

/* Glass frame — 530×160px fixed window */
.embz-chat-frame {
  width: 530px;
  height: 160px;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1.5px solid rgba(65, 105, 225, .35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(65,105,225,.08) inset,
    0 4px 24px rgba(0,0,0,.08),
    0 0 40px rgba(29,78,216,.05);
}

/* Header bar */
.embz-chat-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem .875rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  flex-shrink: 0;
}

.embz-chat-header-dots {
  display: flex;
  gap: 5px;
}
.embz-chat-header-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: block;
}

.embz-chat-header-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  flex: 1;
}

/* Progress dots (header right) */
.embz-chat-progress {
  display: flex;
  gap: 5px;
}
.embz-chat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: block;
  transition: background .3s, transform .3s;
}
.embz-chat-dot.active {
  background: #D97706;
  transform: scale(1.3);
  box-shadow: 0 0 5px rgba(217,119,6,.7);
}

/* Messages area */
.embz-chat-messages {
  flex: 1;
  overflow: hidden;
  padding: .625rem .875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
}

/* Rows — align-items: center keeps avatars stable */
.embz-chat-row {
  display: flex;
  align-items: center;
  gap: .625rem;
}
.embz-chat-row-q { justify-content: flex-start; }
.embz-chat-row-a { justify-content: flex-end; }

/* Avatar + label stacked */
.embz-chat-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.embz-chat-avatar-wrap-ai { order: 2; }

/* User avatar */
.embz-chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
}

.embz-chat-actor-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-text-subdued);
  white-space: nowrap;
}
.embz-chat-actor-label-ai { color: var(--color-accent); }

/* Chat bubbles — one-liner, no height growth */
.embz-chat-bubble {
  max-width: 88%;
  padding: .45rem .9rem;
  border-radius: 14px;
  font-size: .875rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(6px) scale(.98);
  transition: opacity .32s ease, transform .32s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.embz-chat-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.embz-chat-bubble.fading {
  opacity: 0 !important;
  transform: translateY(-5px) scale(.97) !important;
  transition: opacity .38s ease, transform .38s ease !important;
}

/* Question bubble — royal blue tint */
.embz-chat-q {
  background: rgba(65, 105, 225, .07);
  border: 1.5px solid rgba(65, 105, 225, .35);
  color: var(--color-text);
  font-weight: 400;
  border-bottom-left-radius: 4px;
  order: 2;
}

/* Answer bubble — teal accent */
.embz-chat-a {
  background: linear-gradient(135deg, rgba(13,148,136,.85) 0%, rgba(15,118,110,.9) 100%);
  border: 1px solid rgba(20,184,166,.3);
  color: #fff;
  font-weight: 500;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 20px rgba(13,148,136,.3);
  order: 1;
}

/* Typing cursor */
.embz-chat-cursor {
  display: inline-block;
  font-weight: 300;
  color: #60A5FA;
  animation: embz-blink .6s step-end infinite;
  visibility: hidden;
  margin-left: 1px;
}
.embz-chat-cursor-a { color: rgba(255,255,255,.7); }

@keyframes embz-blink {
  0%, 100% { visibility: visible; }
  50%       { visibility: hidden; }
}

/* Globe icon — teal circle with spinning SVG */
.embz-chat-globe-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(20, 184, 166, .12);
  border: 1px solid rgba(217, 119, 6, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(217, 119, 6, .25);
}

.embz-chat-globe {
  width: 15px;
  height: 15px;
  color: #D97706;
  display: block;
  animation: embz-globe-spin 5s linear infinite;
  transform-origin: center center;
  transform-box: fill-box;
}

@keyframes embz-globe-spin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* Ticks — hidden */
.embz-chat-ticks { display: none; }

@media (max-width: 600px) {
  .embz-chat-strip  { height: 198px; }
  .embz-chat-frame  { width: 100%; height: 176px; padding: 14px 12px; overflow: hidden; }
  .embz-chat-bubble {
    font-size: .775rem;
    white-space: normal;
    overflow: hidden;
    text-overflow: unset;
    max-width: 92%;
    line-height: 1.4;
  }
  .embz-chat-glow        { display: none; }
  .embz-chat-actor-label { display: none; }
}


/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.embz-faq-item-primary {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border) !important;
  border-left: 3px solid var(--color-secondary);
  padding-left: 12px;
  margin-bottom: 8px;
}

.embz-faq-item-primary .embz-faq-q {
  color: var(--color-secondary);
  font-weight: 600;
}

/* ── Framework diagram expandable ──────────────────────────────────────────── */

.embz-diagram-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: zoom-in;
  border-radius: 16px;
  overflow: hidden;
}

.embz-diagram-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.embz-diagram-wrap:hover .embz-diagram-img {
  transform: scale(1.015);
  box-shadow: 0 16px 56px rgba(0,0,0,.26);
}

.embz-diagram-hint {
  position: absolute;
  top: 8px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15,23,42,0.80);
  color: #E2E8F0;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.10);
  opacity: 1;
  transition: background 0.2s ease, transform 0.15s ease;
  pointer-events: none;
}

.embz-diagram-wrap:hover .embz-diagram-hint {
  background: rgba(217,119,6,0.9);
  color: #0C1018;
  transform: scale(1.04);
}

.embz-diagram-hint i {
  font-size: 0.8rem;
}

/* ── FAQ callout animation ──────────────────────────────────────────────────── */

@keyframes embz-callout-in {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes embz-callout-nudge {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(6px); }
  40%  { transform: translateX(-4px); }
  60%  { transform: translateX(3px); }
  80%  { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

@keyframes embz-border-pulse {
  0%, 100% { border-left-color: var(--color-secondary); }
  50%       { border-left-color: var(--color-accent); }
}

.embz-faq-callout {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation:
    embz-callout-in   0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
    embz-border-pulse 1.4s ease-in-out 1.2s 2,
    embz-callout-nudge 0.55s ease-in-out 4.2s 1;
}

.embz-faq-callout-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.embz-faq-callout p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.embz-faq-callout strong {
  color: var(--color-text);
  font-weight: 600;
}

.embz-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.embz-faq-group {
  margin-bottom: var(--space-md);
}

.embz-faq-group-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 6px;
}

.embz-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.embz-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.45;
  transition: color 0.15s ease;
}

.embz-faq-q:hover { color: var(--color-secondary); }

.embz-faq-icon {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.embz-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.embz-faq-a p {
  margin: 0;
  padding-bottom: 16px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Prose — legal pages, long-form content
   -------------------------------------------------------------------------- */
.embz-prose h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin: var(--space-lg) 0 8px;
}
.embz-prose h2:first-child { margin-top: 0; }
.embz-prose p,
.embz-prose ul,
.embz-prose ol {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.embz-prose ul,
.embz-prose ol {
  padding-left: 20px;
}
.embz-prose li { margin-bottom: 6px; }
.embz-prose a { color: var(--color-secondary); }
.embz-prose strong { color: var(--color-text); font-weight: 600; }

/* --------------------------------------------------------------------------
   Topic trust strip
   -------------------------------------------------------------------------- */
.embz-topic-strip {
  position: relative;
  padding: 1px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Edge fade masks */
.embz-topic-fade-l,
.embz-topic-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.embz-topic-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--color-surface), transparent);
}
.embz-topic-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--color-surface), transparent);
}

.embz-topic-track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}

.embz-topic-track-fwd {
  animation: embz-scroll-fwd 32s linear infinite;
}

.embz-topic-track-rev {
  animation: embz-scroll-rev 26s linear infinite;
}

.embz-topic-strip:hover .embz-topic-track {
  animation-play-state: paused;
}

.embz-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: var(--radius-badge);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: border-color .2s, color .2s;
}

.embz-topic-pill i {
  font-size: 0.875rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.embz-topic-pill:hover {
  border-color: var(--color-secondary);
  color: var(--color-text);
}

@keyframes embz-scroll-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes embz-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

[data-theme="dark"] .embz-topic-pill {
  background: rgba(255,255,255,.04);
  box-shadow: none;
}
[data-theme="dark"] .embz-topic-fade-l {
  background: linear-gradient(to right, var(--color-surface), transparent);
}
[data-theme="dark"] .embz-topic-fade-r {
  background: linear-gradient(to left, var(--color-surface), transparent);
}


/* ==========================================================================
   Dark Mode
   Activated by [data-theme="dark"] on <html>.
   All colours flow through CSS custom properties so only the token layer
   needs to change here; components inherit automatically.
   ========================================================================== */

[data-theme="dark"] {
  --color-primary:        #E8E4DC;
  --color-secondary:      #F59E0B;
  --color-accent:         #D97706;
  --color-surface:        #0C1018;
  --color-surface-alt:    #141C28;
  --color-border:         #2A3545;
  --color-text:           #E8E4DC;
  --color-text-muted:     #9B9088;
  --color-text-inverse:   #0C1018;
  --color-text-subdued:   #7A7068;

  --shadow-card:       0 1px 3px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.4);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,.65);
  --shadow-nav:        0 1px 0 var(--color-border);
}

/* Body background follows surface token */
[data-theme="dark"] body {
  background-color: var(--color-surface);
  color: var(--color-text);
}

/* Section rule dividers */
[data-theme="dark"] .embz-section-rule {
  border-color: var(--color-border);
}

/* Dark-section: deep obsidian lifted against near-black surface */
[data-theme="dark"] .embz-section-dark {
  background-color: #1A2332;
}

/* Stats section — deep obsidian */
[data-theme="dark"] .embz-section-blue {
  background-color: #1A2332;
}

/* Announcement bar */
[data-theme="dark"] .embz-announcement-bar {
  background-color: #141C28;
  border-bottom-color: #2A3545;
}

/* Cards: lift above obsidian page */
[data-theme="dark"] .embz-track-card,
[data-theme="dark"] .embz-service-card,
[data-theme="dark"] .embz-program-card,
[data-theme="dark"] .embz-resource-card {
  background-color: #141C28;
  border-color: var(--color-border);
}

/* Navbar mobile collapse border */
[data-theme="dark"] .embz-navbar .navbar-collapse {
  border-top-color: var(--color-border);
}

/* Footer */
[data-theme="dark"] .embz-footer {
  background-color: #080C14;
}

/* Form controls */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background-color: #141C28;
  border-color: #2A3545;
  color: #E8E4DC;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: #7A7068;
}

/* Tables */
[data-theme="dark"] table,
[data-theme="dark"] .table {
  color: var(--color-text);
}

[data-theme="dark"] .table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(255,255,255,.03);
  color: var(--color-text);
}

[data-theme="dark"] .table > :not(caption) > * > * {
  border-bottom-color: var(--color-border);
}

/* Industry badges */
[data-theme="dark"] .embz-industry-badge {
  background-color: #141C28;
  color: var(--color-text);
}

/* Lang switcher */
[data-theme="dark"] .embz-lang-switcher a,
[data-theme="dark"] .embz-lang-active {
  color: var(--color-text-muted);
}

/* Dark mode toggle button */
.embz-theme-toggle {
  background: none;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1;
  border-radius: var(--radius-btn);
  transition: color 0.15s ease, background-color 0.15s ease;
  display: flex;
  align-items: center;
}

.embz-theme-toggle:hover {
  color: var(--color-secondary);
  background-color: var(--color-surface-alt);
}

.embz-theme-toggle .bi-moon-stars-fill { display: none; }
.embz-theme-toggle .bi-sun-fill        { display: inline; }

[data-theme="dark"] .embz-theme-toggle .bi-moon-stars-fill { display: inline; }
[data-theme="dark"] .embz-theme-toggle .bi-sun-fill        { display: none; }

/* Nav logo swap — dark/light mode */
.embz-logo-dark                        { display: none; }
.embz-logo-light                       { display: block; }
[data-theme="dark"] .embz-logo-light   { display: none; }
[data-theme="dark"] .embz-logo-dark    { display: block; }

/* ── Submit spinner ─────────────────────────────────────────────────────────── */

.embz-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: embz-spin .7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes embz-spin { to { transform: rotate(360deg); } }

button:disabled.embz-btn-primary { opacity: .75; cursor: not-allowed; }

/* ── WhatsApp floating button ───────────────────────────────────────────────── */

.embz-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.40);
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.25s ease;
  white-space: nowrap;
}

.embz-wa-btn i {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.embz-wa-label {
  overflow: hidden;
  max-width: 80px;
  transition: max-width 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.embz-wa-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

/* On mobile, collapse to icon-only pill */
@media (max-width: 575px) {
  .embz-wa-btn {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .embz-wa-label { display: none; }
}
