/* ===========================
   AI Leaders Romania - Style Sheet
   AI Strategy Accelerator
   =========================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #060b14;
  --navy-light: #0a1224;
  --navy-mid: #0f1a30;
  --navy-surface: #142240;
  --blue: #5a9cff;
  --blue-dim: rgba(90, 156, 255, 0.1);
  --teal: #2dd4e4;
  --green: #34d399;
  --red: #ef4444;
  --amber: #f5a623;
  --amber-light: #fcc737;
  --gold: #e8b341;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #d0d9e8;
  --gray-400: #b4c2d8;
  --gray-500: #8899b4;
  --max-w: 1120px;
  --nav-h: 64px;
  --glow-blue: 0 0 60px rgba(90, 156, 255, 0.15);
  --glow-amber: 0 0 80px rgba(245, 166, 35, 0.18);
  --border-subtle: rgba(90, 156, 255, 0.1);
  --border-medium: rgba(90, 156, 255, 0.18);
  --border-card: rgba(90, 156, 255, 0.14);
  --card-bg: linear-gradient(145deg, rgba(18, 32, 58, 0.95), rgba(12, 22, 42, 0.98));
  --card-bg-hover: linear-gradient(145deg, rgba(22, 38, 68, 0.95), rgba(14, 26, 48, 0.98));
  --section-alt: #0c1628;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--gray-300);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(90, 156, 255, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ===========================
   Container
   =========================== */

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

/* ===========================
   Navigation
   =========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(8, 14, 26, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border-bottom-color: var(--border-medium);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links .nav-highlight {
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 5px 14px;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-links .nav-highlight:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  color: var(--white);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.04em;
  user-select: none;
}

.lang-toggle:hover {
  background: rgba(59, 130, 246, 0.2);
}

.lang-option {
  color: var(--gray-500);
  transition: color 0.2s;
}

.lang-option.lang-active {
  color: var(--white);
}

.lang-divider {
  color: rgba(59, 130, 246, 0.3);
  font-weight: 400;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin: -8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(8, 14, 26, 0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 0 24px;
  border-bottom: 1px solid var(--border-medium);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.active {
  max-height: 400px;
  padding: 24px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--white);
}

.mobile-menu .mobile-highlight {
  color: var(--blue);
  font-weight: 600;
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.25s;
  text-align: center;
  min-height: 44px;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(79, 143, 247, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(79, 143, 247, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79, 143, 247, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gray-300);
  border: 1px solid rgba(203, 213, 225, 0.15);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border-color: rgba(203, 213, 225, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 10px;
  border: 1px solid rgba(79, 143, 247, 0.25);
  background: rgba(79, 143, 247, 0.04);
  color: var(--blue);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  min-height: 44px;
  letter-spacing: -0.01em;
}

.btn-outline:hover {
  background: rgba(79, 143, 247, 0.1);
  border-color: rgba(79, 143, 247, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(79, 143, 247, 0.1);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-link:hover {
  color: var(--teal);
}

.btn-link::after {
  content: ' \2192';
}

/* ===========================
   Hero
   =========================== */

.hero {
  min-height: min(92vh, 800px);
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(90, 156, 255, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 15% 60%, rgba(45, 212, 228, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 85% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 55%),
    var(--navy);
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(90, 156, 255, 0.06) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 65% 60% at 50% 35%, black 10%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 35%, black 10%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--navy-light), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: clamp(0.82rem, 1.2vw, 0.88rem);
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  font-style: italic;
  background: rgba(79, 143, 247, 0.06);
  border: 1px solid rgba(79, 143, 247, 0.1);
  border-radius: 100px;
  padding: 8px 20px;
  line-height: 1.5;
  max-width: 720px;
  text-wrap: balance;
}

.hero-eyebrow a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(79, 143, 247, 0.4);
  transition: text-decoration-color 0.2s, color 0.2s;
}

.hero-eyebrow a:hover {
  text-decoration-color: var(--blue);
  color: var(--teal);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--gray-400);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===========================
   Credibility Strip
   =========================== */

.credibility-strip {
  padding: 48px 0;
  background: var(--section-alt);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
  position: relative;
}

.credibility-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.credibility-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.credibility-label {
  font-size: 0.88rem;
  color: var(--gray-300);
  font-weight: 600;
}

.credibility-divider {
  width: 1px;
  height: 36px;
  background: rgba(59, 130, 246, 0.15);
}

.credibility-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.credibility-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  background: rgba(90, 156, 255, 0.1);
  border: 1px solid rgba(90, 156, 255, 0.2);
  border-radius: 100px;
  color: var(--gray-200);
}

/* ===========================
   Sections
   =========================== */

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(90, 156, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 30%, rgba(45, 212, 228, 0.04) 0%, transparent 60%),
    var(--section-alt);
}

.section:not(.section-dark) {
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(90, 156, 255, 0.03) 0%, transparent 50%),
    var(--navy);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 2px solid rgba(90, 156, 255, 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 680px;
  margin-bottom: 40px;
  color: var(--white);
  text-wrap: balance;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.75;
  text-wrap: pretty;
}

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

/* ===========================
   Benefit Cards (Ce primești)
   =========================== */

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

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover {
  background: var(--card-bg-hover);
  border-color: rgba(90, 156, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), var(--glow-blue);
}

.benefit-icon {
  color: var(--blue);
  margin-bottom: 16px;
}

.benefit-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  color: var(--amber);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ===========================
   Loss Cards (Ce pierzi)
   =========================== */

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

.loss-card {
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.06), rgba(14, 24, 44, 0.9));
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.loss-card:hover {
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), var(--glow-amber);
}

.loss-icon {
  color: var(--amber);
  margin-bottom: 14px;
}

.loss-card h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.loss-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ===========================
   Pricing / Membership
   =========================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: linear-gradient(180deg, rgba(16, 29, 51, 0.9), rgba(12, 21, 37, 0.95));
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border-color: rgba(79, 143, 247, 0.2);
}

.pricing-card-featured {
  border-color: var(--amber);
  border-width: 2px;
  box-shadow:
    0 0 0 1px rgba(245, 166, 35, 0.15),
    0 0 100px rgba(245, 166, 35, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.35);
  background:
    linear-gradient(180deg, rgba(245, 166, 35, 0.07) 0%, rgba(16, 29, 51, 0.95) 40%, rgba(12, 21, 37, 0.98) 100%);
  z-index: 2;
}

.pricing-card-featured:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(245, 166, 35, 0.2),
    0 0 120px rgba(245, 166, 35, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pricing-price-display {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-card-featured .pricing-price-display {
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  -webkit-text-fill-color: var(--gray-500);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--gray-300);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
}

.pricing-card-featured .pricing-features li::before {
  color: var(--amber);
}

.pricing-card-featured .pricing-features li {
  color: var(--gray-200);
}

.pricing-features li.excluded {
  color: var(--gray-500);
  opacity: 0.55;
}

.pricing-features li.excluded::before {
  content: '\2717';
  color: var(--red);
  opacity: 0.5;
}

.pricing-card .btn,
.pricing-card .btn-outline {
  width: 100%;
}

.pricing-small {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 12px;
  text-align: center;
}

.pricing-annual-note {
  color: var(--green);
  -webkit-text-fill-color: var(--green);
  font-size: 0.82rem;
  font-weight: 500;
}

.pricing-corporate-strip {
  margin-top: 36px;
  padding: 26px 32px;
  background: linear-gradient(135deg, rgba(79, 143, 247, 0.05), rgba(34, 184, 207, 0.03));
  border: 1px solid var(--border-medium);
  border-radius: 14px;
}

.pricing-corporate-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-corporate-content p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.pricing-corporate-content .btn {
  flex-shrink: 0;
}

.trust-line {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.tally-embed-wrap {
  max-width: 640px;
  margin: 32px auto 0;
}

/* ===========================
   Leaders / Team
   =========================== */

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

.leader-card {
  background: var(--card-bg);
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--blue);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.leader-card:hover {
  background: var(--card-bg-hover);
  border-color: rgba(90, 156, 255, 0.3);
  border-top-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), var(--glow-blue);
}

.leader-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 12px;
  transition: color 0.2s;
}

.leader-linkedin:hover {
  color: var(--blue);
}

.leader-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  color: var(--amber);
  margin-left: 8px;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.leader-company {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
}

.leader-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.leader-role {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 12px;
}

.leader-bio {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 12px;
}

.leader-community {
  font-size: 0.88rem;
  color: var(--teal);
  font-style: italic;
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

/* ===========================
   Events
   =========================== */

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

.event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 28px 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.event-card:hover {
  background: var(--card-bg-hover);
  border-color: rgba(90, 156, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  flex-shrink: 0;
}

.event-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.event-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-top: 4px;
}

.event-details {
  flex: 1;
  min-width: 0;
}

.event-format {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.event-online {
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.event-person {
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.event-details h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.event-details p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.event-card > .btn-outline,
.event-card > .btn-sm {
  flex-shrink: 0;
}

.events-cta {
  text-align: center;
  padding-top: 24px;
}

/* ===========================
   FAQ
   =========================== */

.faq-list {
  max-width: 660px;
}

.faq-item {
  border-bottom: 1px solid rgba(90, 156, 255, 0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(90, 156, 255, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  min-height: 44px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--navy);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--gray-500);
  font-size: 0.83rem;
  gap: 24px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--gray-300);
}

.footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.footer-dot {
  color: var(--gray-500);
  opacity: 0.5;
}

/* ===========================
   Animations
   =========================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger cards within grids */
.benefit-card.fade-in:nth-child(2),
.loss-card.fade-in:nth-child(2),
.leader-card.fade-in:nth-child(2),
.pricing-card.fade-in:nth-child(2) { transition-delay: 0.1s; }

.benefit-card.fade-in:nth-child(3),
.loss-card.fade-in:nth-child(3),
.leader-card.fade-in:nth-child(3),
.pricing-card.fade-in:nth-child(3) { transition-delay: 0.2s; }

.benefit-card.fade-in:nth-child(4),
.loss-card.fade-in:nth-child(4),
.leader-card.fade-in:nth-child(4) { transition-delay: 0.3s; }

.event-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.event-card.fade-in:nth-child(3) { transition-delay: 0.2s; }

/* Step card stagger */
.step-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.step-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.step-card.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Ensure content visible without JS */
@media (scripting: none) {
  .fade-in { opacity: 1; transform: none; }
}

/* ===========================
   Testimonials
   =========================== */

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

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(90, 156, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.55em;
  color: var(--blue);
  margin-right: 6px;
  font-style: normal;
  opacity: 0.6;
}

.testimonial-author {
  padding-top: 16px;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ===========================
   Past Topics / Proof Strip
   =========================== */

.past-topics {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.past-topics-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.past-topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.past-topics-list span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 100px;
  color: var(--gray-300);
}

/* ===========================
   How It Works
   =========================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  counter-increment: step;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.step-card:hover {
  background: var(--card-bg-hover);
  border-color: rgba(90, 156, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.7;
}

.step-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ===========================
   Comparison Table
   =========================== */

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-medium);
}

.comparison-table thead th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-medium);
}

.comparison-table thead th.comparison-highlight {
  color: var(--amber);
  position: relative;
}

.comparison-table tbody td {
  color: var(--gray-400);
  font-size: 0.88rem;
}

.comparison-table tbody td.comparison-highlight {
  color: var(--white);
  font-weight: 600;
  background: rgba(245, 166, 35, 0.04);
  border-left: 1px solid rgba(245, 166, 35, 0.08);
  border-right: 1px solid rgba(245, 166, 35, 0.08);
}

.comparison-table thead th.comparison-highlight {
  background: rgba(245, 166, 35, 0.06);
  border-left: 1px solid rgba(245, 166, 35, 0.08);
  border-right: 1px solid rgba(245, 166, 35, 0.08);
  border-top: 2px solid var(--amber);
  border-radius: 0;
}

.comparison-row-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-300) !important;
  font-size: 0.88rem;
}

/* 4-column steps grid */
.steps-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* 5-item steps grid: 3 on top, 2 centered below via 6-col sub-grid */
.steps-grid-5 {
  grid-template-columns: repeat(6, 1fr);
}

.steps-grid-5 .step-card:nth-child(1) { grid-column: 1 / 3; }
.steps-grid-5 .step-card:nth-child(2) { grid-column: 3 / 5; }
.steps-grid-5 .step-card:nth-child(3) { grid-column: 5 / 7; }
.steps-grid-5 .step-card:nth-child(4) { grid-column: 2 / 4; }
.steps-grid-5 .step-card:nth-child(5) { grid-column: 4 / 6; }

/* 3-column benefit grid - last item centered if odd */
.benefit-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid-3 .benefit-card:last-child:nth-child(3n + 1) {
  grid-column: 2 / 3;
}

/* Stagger for 5th, 6th, and 7th benefit cards */
.benefit-card.fade-in:nth-child(5) { transition-delay: 0.35s; }
.benefit-card.fade-in:nth-child(6) { transition-delay: 0.45s; }
.benefit-card.fade-in:nth-child(7) { transition-delay: 0.55s; }

/* 2-column pricing grid */
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

/* Disabled button style */
.btn-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* ===========================
   Pricing outline stronger
   =========================== */

.pricing-card .btn-outline {
  border-width: 2px;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1100px) {
  .steps-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-grid-5 .step-card:nth-child(1),
  .steps-grid-5 .step-card:nth-child(2),
  .steps-grid-5 .step-card:nth-child(3),
  .steps-grid-5 .step-card:nth-child(4),
  .steps-grid-5 .step-card:nth-child(5) {
    grid-column: auto;
  }

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

  .benefit-grid-3 .benefit-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .benefit-grid-3 .benefit-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 48px;
    min-height: auto;
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-label {
    margin-bottom: 12px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-grid-3 .benefit-card:last-child:nth-child(odd) {
    max-width: none;
  }

  .loss-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid,
  .pricing-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: none;
  }

  .pricing-card-featured {
    order: -1;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps-grid,
  .steps-grid-4,
  .steps-grid-5 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-grid-5 .step-card:nth-child(1),
  .steps-grid-5 .step-card:nth-child(2),
  .steps-grid-5 .step-card:nth-child(3),
  .steps-grid-5 .step-card:nth-child(4),
  .steps-grid-5 .step-card:nth-child(5) {
    grid-column: auto;
  }

  .benefit-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-table-wrap {
    overflow-x: visible;
  }

  .comparison-table {
    min-width: 0;
    font-size: 0.85rem;
    display: block;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .comparison-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(145deg, rgba(20, 34, 64, 0.8), rgba(14, 24, 44, 0.9));
    border: 1px solid var(--border-card);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .comparison-table tbody td {
    border-bottom: none;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .comparison-table tbody td.comparison-row-label {
    grid-column: 1 / -1;
    background: rgba(79, 143, 247, 0.05);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .comparison-table tbody td:nth-child(2),
  .comparison-table tbody td:nth-child(3) {
    color: var(--gray-500);
    border-right: 1px solid var(--border-subtle);
    font-size: 0.78rem;
  }

  .comparison-table tbody td:nth-child(3) {
    border-right: none;
  }

  .comparison-table tbody td.comparison-highlight {
    grid-column: 1 / -1;
    background: rgba(245, 166, 35, 0.06);
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(245, 166, 35, 0.12);
    font-size: 0.85rem;
    padding: 12px 14px;
  }

  .comparison-table tbody td:nth-child(2)::before,
  .comparison-table tbody td:nth-child(3)::before {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    margin-bottom: 3px;
    opacity: 0.7;
  }

  .comparison-table tbody td:nth-child(2)::before {
    content: "Curs";
  }

  .comparison-table tbody td:nth-child(3)::before {
    content: "Comunitate";
  }

  .comparison-table tbody td.comparison-highlight::before {
    content: "AI Leaders";
    display: block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--amber);
    margin-bottom: 3px;
  }

  /* EN overrides for mobile comparison card labels */
  html[lang="en"] .comparison-table tbody td:nth-child(2)::before {
    content: "Course";
  }

  html[lang="en"] .comparison-table tbody td:nth-child(3)::before {
    content: "Community";
  }

  .pricing-corporate-content {
    flex-direction: column;
    text-align: center;
  }

  .pricing-corporate-content .btn {
    width: 100%;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .event-date {
    flex-direction: row;
    gap: 8px;
    align-items: baseline;
  }

  .event-card > .btn-outline,
  .event-card > .btn-sm {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .credibility-items {
    flex-direction: column;
    gap: 16px;
  }

  .credibility-divider {
    width: 60px;
    height: 1px;
  }

  /* Remove stagger delays on mobile for smoother appearance */
  .benefit-card.fade-in,
  .loss-card.fade-in,
  .leader-card.fade-in,
  .event-card.fade-in,
  .pricing-card.fade-in,
  .step-card.fade-in { transition-delay: 0s !important; }

}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn,
  .btn-outline {
    width: 100%;
    padding: 14px 20px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .credibility-tags {
    justify-content: center;
  }

  .step-card,
  .benefit-card,
  .loss-card,
  .leader-card,
  .testimonial-card {
    padding: 24px;
  }

  .event-card {
    padding: 20px;
  }

  .container {
    padding: 0 20px;
  }
}

/* ===========================
   Selection & Focus
   =========================== */

::selection {
  background: rgba(79, 143, 247, 0.25);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===========================
   Smooth section transitions
   =========================== */

.section + .section-dark,
.section-dark + .section {
  border-top: 1px solid var(--border-medium);
}

/* ===========================
   Pricing featured price animation
   =========================== */

@keyframes priceGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.pricing-card-featured .pricing-badge {
  animation: priceGlow 3s ease-in-out infinite;
}

/* ===========================
   Link hover underline effect
   =========================== */

.btn-link {
  position: relative;
}

.btn-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.3s;
}

.btn-link:hover::before {
  width: calc(100% - 1.5em);
}

/* ===========================
   Testimonial stagger
   =========================== */

.testimonial-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
