/* =============================================
   IMM – Imersiunea Mindset și Management
   Apple-style Minimalist Design — Light Version
   Brand: Dark green/black + Gold/Yellow accents
   ============================================= */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Lighter backgrounds */
  --color-bg:       #0a1410;
  --color-bg-2:     #f7f6f2;
  --color-bg-3:     #eeecea;
  --color-bg-dark:  #0d1a0f;
  --color-bg-card:  #ffffff;
  --color-bg-card-dark: rgba(255,255,255,0.06);
  --color-border:   rgba(0,0,0,0.08);
  --color-border-dark: rgba(255,255,255,0.10);
  --color-border-accent: rgba(200,180,60,0.35);

  --color-gold:       #C8991A;
  --color-gold-light: #E8B830;
  --color-gold-dark:  #A07810;
  --color-lime:       #8DB840;
  --color-green-dark: #0d1a0f;
  --color-green-mid:  #1a3a1a;
  --color-green-accent: #2a5a2a;

  --color-white: #FFFFFF;
  --color-white-80: rgba(255,255,255,0.80);
  --color-white-60: rgba(255,255,255,0.60);
  --color-white-40: rgba(255,255,255,0.40);

  --color-text-dark:  #111111;
  --color-text-mid:   #444444;
  --color-text-muted: #777777;
  --color-text-light: #F0EDE8;
  --color-text-light-muted: rgba(240,237,232,0.70);

  --font-display: 'League Gothic', 'Impact', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 100px;

  --shadow-card:  0 2px 24px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.13);
  --shadow-glow:  0 0 40px rgba(200,153,26,0.18);

  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:      1200px;
  --section-padding: 100px 0;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--color-bg);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 640px;
}

.section-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.accent-yellow { color: var(--color-gold-light); }
.accent-green  { color: var(--color-lime); }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: #0a1410;
  box-shadow: 0 4px 20px rgba(200,153,26,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,153,26,0.5);
}

.btn-nav {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: #0a1410;
  font-size: 0.875rem;
  padding: 10px 24px;
}
.btn-nav:hover { transform: translateY(-1px); opacity: 0.92; }

.btn-hero { font-size: 1.0625rem; padding: 18px 44px; margin-top: 2rem; }

.btn-large { font-size: 1.125rem; padding: 20px 52px; }

/* ---- STICKY NAV ---- */
.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,20,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-nav.visible { transform: translateY(0); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 32px; width: auto; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0a1a10 0%, #0d2015 40%, #071208 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(141,184,64,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(200,153,26,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,20,16,0.8) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.imm-logo-hero { margin: 0 auto 2rem; }
.imm-logo-hero img { height: 56px; width: auto; margin: 0 auto; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--color-text-light-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- HERO STATS BOX ---- */
.hero-stats-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  margin: 0 auto 2rem;
  backdrop-filter: blur(12px);
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.nps-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 32px;
}

.nps-score-big {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-gold-light);
  letter-spacing: -0.02em;
}

.nps-label-block {
  display: flex;
  flex-direction: column;
}

.nps-title-text {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.stats-divider-v {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  margin-right: 32px;
  flex-shrink: 0;
}

.stats-grid-hero {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.stat-plus {
  font-size: 1.2rem;
  color: var(--color-gold-light);
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white-60);
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--color-white-40);
  margin-top: 0.75rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ---- NOT MOTIVATIONAL (light bg) ---- */
.not-motivational {
  padding: var(--section-padding);
  background: var(--color-bg-2);
  position: relative;
}

.nm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.nm-text .section-tag { color: var(--color-gold); }
.nm-text .section-title { color: var(--color-text-dark); }

.nm-body {
  font-size: 1.0625rem;
  color: var(--color-text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.nm-body-bold {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

/* Mini testimonials in nm section */
.nm-testimonials-mini {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-tcard {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.mini-tcard:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.mini-tcard .stars {
  color: var(--color-gold);
  font-size: 0.875rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.mini-tcard blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.65;
  margin-bottom: 12px;
  font-style: italic;
}

.mini-tcard cite {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 500;
}

/* ---- FEATURED TESTIMONIALS (dark) ---- */
.testimonials-featured {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
  position: relative;
}

.testimonials-featured .section-tag { color: var(--color-gold-light); }
.testimonials-featured .section-title { color: var(--color-white); }
.testimonials-featured .section-sub  { color: var(--color-text-light-muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,153,26,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.tcard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.stars {
  color: var(--color-gold-light);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.tcard-industry {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light-muted);
  letter-spacing: 0.04em;
}

.tcard-quote {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--color-white-80);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-metrics {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.metric {
  font-size: 0.75rem;
  color: var(--color-text-light-muted);
}

.metric-label {
  font-weight: 700;
  color: var(--color-gold-light);
  margin-right: 4px;
}

.tcard-author strong {
  font-size: 0.9375rem;
  color: var(--color-white);
  display: block;
}

.tcard-result { margin-top: auto; }

.result-badge {
  display: inline-block;
  background: rgba(141,184,64,0.15);
  border: 1px solid rgba(141,184,64,0.3);
  color: #a8d060;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.testimonials-cta {
  text-align: center;
  padding-top: 1rem;
}

.cta-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-note {
  font-size: 0.8125rem;
  color: var(--color-text-light-muted);
  margin-top: 0.75rem;
  text-align: left;
}

/* ---- INDUSTRY TABS (light) ---- */
.industry-section {
  padding: var(--section-padding);
  background: var(--color-bg-2);
}

.industry-section .section-tag  { color: var(--color-gold); }
.industry-section .section-title { color: var(--color-text-dark); }

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.ind-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-mid);
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  transition: var(--transition);
}

.ind-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.ind-tab.active {
  background: var(--color-gold);
  color: #0a1410;
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(200,153,26,0.3);
}

.ind-panel { display: none; }
.ind-panel.active { display: block; }

.ind-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ind-tcard {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.ind-tcard:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.ind-tcard .stars {
  color: var(--color-gold);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ind-tcard p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--color-text-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}

.ind-tcard cite {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 500;
}

/* ---- COUNTRIES (dark) ---- */
.countries-section {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
}

.countries-section .section-tag  { color: var(--color-gold-light); }
.countries-section .section-title { color: var(--color-white); }

.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 2rem;
}

.country-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white-80);
  transition: var(--transition);
}

.country-item:hover {
  background: rgba(200,153,26,0.12);
  border-color: rgba(200,153,26,0.3);
  color: var(--color-white);
}

/* ---- LORAND BIO (light) ---- */
.lorand-section {
  padding: var(--section-padding);
  background: var(--color-bg-2);
}

.lorand-section .section-tag  { color: var(--color-gold); }
.lorand-section .section-title { color: var(--color-text-dark); }

.lorand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lorand-tagline {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.lorand-text p {
  font-size: 1.0625rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

.social-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}

.social-icon { font-size: 1.375rem; }

.social-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-dark);
  line-height: 1;
}

.social-platform {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.lorand-photo-placeholder {
  background: linear-gradient(135deg, #1a3a1a 0%, #0d2015 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.lorand-photo-inner {
  text-align: center;
  color: var(--color-white-60);
}

.lorand-initials {
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 12px;
}

.lorand-photo-inner p { font-size: 1rem; }
.lorand-title { font-size: 0.875rem; color: var(--color-white-40); margin-top: 6px; }

.lorand-visual { display: flex; flex-direction: column; gap: 24px; }

.lorand-quote {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
}

.lorand-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-text-dark);
  line-height: 1.65;
  font-style: italic;
}

/* ---- PRESS — AS SEEN ON (light) ---- */
.press-section {
  padding: 64px 0;
  background: var(--color-bg-3);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.press-as-seen {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}

.press-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: var(--transition);
  filter: grayscale(100%);
}

.press-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.press-logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* ---- PAIN POINTS (dark) ---- */
.pain-section {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
}

.pain-section .section-tag  { color: var(--color-gold-light); }
.pain-section .section-title { color: var(--color-white); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 2rem 0;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(229,57,53,0.07);
  border: 1px solid rgba(229,57,53,0.15);
  border-radius: var(--radius-md);
}

.pain-x {
  color: #e57373;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain-item p {
  font-size: 1rem;
  color: var(--color-white-80);
  line-height: 1.55;
}

.pain-conclusion {
  font-size: 1.0625rem;
  color: var(--color-white-80);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pain-question-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.pain-question-card h3 {
  font-size: 1.375rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.pain-question-card p {
  font-size: 1rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pain-check {
  margin-top: 1.5rem;
  padding: 20px;
  background: rgba(200,153,26,0.08);
  border: 1px solid rgba(200,153,26,0.2);
  border-radius: var(--radius-md);
}

.pain-check p {
  font-size: 1rem;
  color: var(--color-white-80);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pain-check-answer {
  font-weight: 400 !important;
  color: var(--color-text-light-muted) !important;
}

/* ---- FOR WHO (light) ---- */
.forwho-section {
  padding: var(--section-padding);
  background: var(--color-bg-2);
}

.forwho-section .section-tag  { color: var(--color-gold); }
.forwho-section .section-title { color: var(--color-text-dark); }
.forwho-section .section-sub  { color: var(--color-text-mid); }

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.forwho-item:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(200,153,26,0.3);
}

.forwho-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(141,184,64,0.15);
  border: 1.5px solid rgba(141,184,64,0.4);
  color: #8db840;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.forwho-item p {
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 1.55;
}

.forwho-item strong { color: var(--color-text-dark); }

/* ---- APPLY / CTA (dark) ---- */
.apply-section {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
}

.apply-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
}

.apply-card .section-tag { color: var(--color-gold-light); }

.imm-logo-apply { margin: 0 auto 1.5rem; }
.imm-logo-apply img { height: 44px; width: auto; margin: 0 auto; }

.apply-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2.5rem;
  text-align: left;
}

.event-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-pin { font-size: 1.25rem; flex-shrink: 0; }

.event-details {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.event-details strong {
  font-size: 1.0625rem;
  color: var(--color-white);
}

.event-status {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(141,184,64,0.15);
  border: 1px solid rgba(141,184,64,0.3);
  color: #a8d060;
}

.event-status.urgent {
  background: rgba(229,57,53,0.12);
  border-color: rgba(229,57,53,0.3);
  color: #e57373;
}

.event-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.10);
  border-radius: 3px;
  overflow: hidden;
}

.event-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-radius: 3px;
  transition: width 1s ease;
}

.event-progress-label {
  font-size: 0.8125rem;
  color: var(--color-text-light-muted);
  font-weight: 500;
}

.apply-restriction {
  font-size: 0.8125rem;
  color: var(--color-text-light-muted);
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

.apply-guarantee-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.25rem;
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.apply-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.apply-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.apply-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-gold-light);
  line-height: 1;
}

.apply-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- FOOTER ---- */
.footer {
  background: #060e08;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { height: 32px; width: auto; }
.footer-brand p { font-size: 0.875rem; color: var(--color-text-light-muted); line-height: 1.5; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--color-text-light-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8125rem; color: var(--color-text-light-muted); }
.footer-tagline { font-style: italic; }

/* ---- FADE IN ANIMATION ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
  .nm-grid, .lorand-grid, .pain-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 72px 0; }

  .hero-headline { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-stats-box { padding: 20px 24px; gap: 16px; }
  .stats-divider-v { display: none; }
  .nps-block { padding-right: 0; }
  .stats-grid-hero { gap: 20px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .ind-testimonials { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .social-stats { grid-template-columns: repeat(2, 1fr); }
  .forwho-grid { grid-template-columns: 1fr; }
  .apply-card { padding: 40px 28px; }
  .apply-stats { gap: 24px; }

  .press-logos { gap: 28px 36px; }
  .press-logo-img { height: 28px; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats-box { flex-direction: column; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-tabs { gap: 8px; }
  .ind-tab { font-size: 0.8125rem; padding: 8px 16px; }
}

/* ---- NPS ICON IN STATS ---- */
.stat-nps-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nps-svg-icon {
  width: 36px;
  height: 30px;
  flex-shrink: 0;
}

/* ---- HERO CTA WRAP ---- */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.stat-divider-v {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  align-self: center;
}

/* ---- HERO STATS BOX UPDATED ---- */
.hero-stats-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 24px 36px;
  margin: 0 auto 2rem;
  backdrop-filter: blur(12px);
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* ---- SOCIAL LOGOS ---- */
.social-icon-img-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ---- SOCIAL STATS 5-column grid ---- */
.social-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .social-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---- INDUSTRY SUBTITLE ---- */
.section-sub-industry {
  font-size: 1rem;
  color: var(--color-text-mid);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ---- COUNTRIES SUBTITLE ---- */
.countries-sub {
  font-size: 1.0625rem;
  color: var(--color-text-light-muted);
  max-width: 680px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ---- LORAND PHOTO ---- */
.lorand-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  aspect-ratio: 3/4;
  max-height: 520px;
}

.lorand-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- EVENT CAROUSEL ---- */
.carousel-section {
  padding: 80px 0 64px;
  background: var(--color-bg-dark);
  overflow: hidden;
}

.carousel-section .container {
  margin-bottom: 2.5rem;
}

.carousel-section .section-tag { color: var(--color-gold-light); }
.carousel-section .section-title { color: var(--color-white); }

.carousel-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.carousel-track-wrap:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 0 24px;
}

.carousel-slide {
  flex: 0 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 0;
  /* No fixed height — let image define it */
}

.carousel-slide:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.carousel-slide img {
  display: block;
  height: 300px;
  width: auto;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10,20,16,0.85);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #0a1410;
}

.carousel-btn-prev { left: 20px; }
.carousel-btn-next { right: 20px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 24px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-gold-light);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .carousel-slide img { height: 220px; }
  .carousel-btn { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .carousel-slide img { height: 180px; }
}

/* ===================================================
   GUARANTEE SECTION (dark bg — Apple style)
   =================================================== */
.guarantee-section {
  background: var(--color-bg-dark);
  padding: 100px 0;
}

.guarantee-section .section-tag { color: var(--color-gold-light); }
.guarantee-section .section-title { color: var(--color-white); }
.guarantee-section .section-sub { color: var(--color-text-light-muted); }

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 4rem;
}

.guarantee-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.guarantee-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.22);
}

.guarantee-card-gold {
  background: rgba(200,153,26,0.07);
  border-color: rgba(200,153,26,0.35);
}

.guarantee-card-gold:hover {
  background: rgba(200,153,26,0.12);
  border-color: rgba(200,153,26,0.55);
}

.guarantee-number {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.02em;
  margin-bottom: -8px;
}

.guarantee-card-gold .guarantee-number {
  color: rgba(200,153,26,0.2);
}

.guarantee-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.guarantee-card-gold .guarantee-label {
  color: var(--color-gold-light);
}

.guarantee-heading {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  letter-spacing: -0.025em;
}

.guarantee-plus {
  color: var(--color-gold-light);
}

.guarantee-lead {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: -4px;
}

.guarantee-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-light-muted);
}

.guarantee-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guarantee-checklist li {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  padding-left: 22px;
  position: relative;
}

.guarantee-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold-light);
  font-weight: 700;
}

.guarantee-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: auto;
}

.guarantee-card-gold .guarantee-divider {
  background: rgba(200,153,26,0.2);
}

.guarantee-validity {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.guarantee-card-gold .guarantee-validity {
  color: rgba(200,153,26,0.6);
}

.guarantee-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  margin-top: 3rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .guarantee-card {
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.04) !important;
  }
  .guarantee-card-gold {
    border: 1px solid rgba(200,153,26,0.35) !important;
    background: rgba(200,153,26,0.07) !important;
  }
}

/* ===================================================
   VIDEO TESTIMONIALS SECTION (mid-dark bg — 3-card grid)
   =================================================== */
.video-section {
  background: #0f1f12;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.video-section .section-tag { color: var(--color-gold-light); }
.video-section .section-title { color: var(--color-white); }
.video-section .section-sub { color: var(--color-text-light-muted); }

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3.5rem;
}

.video-placeholder-card {
  border: 1.5px dashed rgba(200,153,26,0.45);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.video-placeholder-card:hover {
  background: rgba(200,153,26,0.06);
  border-color: rgba(200,153,26,0.8);
}

.vpc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.vpc-icon {
  width: 32px;
  height: 32px;
  opacity: 0.75;
}

.vpc-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(240,237,232,0.75);
  line-height: 1.4;
}

.vpc-hint {
  font-size: 0.8125rem;
  color: var(--color-gold-light);
  font-style: italic;
  opacity: 0.7;
}

/* When real embed is used */
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px) {
  .video-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .video-placeholder-card {
    aspect-ratio: 16/9;
  }
}

/* ===================================================
   FAQ SECTION (light bg)
   =================================================== */
.faq-section {
  background: var(--color-bg-light);
  padding: 100px 0;
}

.faq-section .section-tag { color: var(--color-gold-dark); }
.faq-section .container { max-width: 800px; }

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1.5px solid #e8e8e8;
  background: #fff;
  transition: background 0.2s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item[open] {
  background: #fafafa;
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%23666' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--color-green-primary);
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-answer strong {
  color: var(--color-text-dark);
}

@media (max-width: 768px) {
  .faq-question { padding: 18px 20px; font-size: 0.9375rem; }
  .faq-answer { padding: 0 20px 20px; }
  .faq-section .container { max-width: 100%; }
}
