/* ==============================================================================
   TEPAT — LUXURY EXECUTIVE FEMININE LANDING PAGE STYLESHEET
   Inspired by CanvasUI (canvasui.dev/components) & ThreeUI (threeui.com/landing-pages)
   Aesthetic: Matte Tosca, Velvet Emerald, Blush Rose & Floating Floral Accents
   Designed for Visionary Female Leaders & Executive Decision Makers
   PT Tenaga Eksekutif Utama (PT TEU)
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Matte Tosca & Deep Teal Palette */
  --bg-space: #031417;
  --bg-deep: #051E24;
  --bg-surface: #082930;
  --bg-surface-trans: rgba(8, 41, 48, 0.72);
  
  /* Luminous Matte Tosca / Mint / Jade Accents */
  --tosca-vibrant: #2DD4BF;
  --tosca-primary: #14B8A6;
  --tosca-dark: #0D9488;
  --tosca-glow: rgba(45, 212, 191, 0.28);
  --tosca-light: #99F6E4;
  --mint-soft: #CCFBF1;

  /* Feminine Blush Rose, Orchid & Peony Accents */
  --rose-blush: #FB7185;
  --rose-soft: #FDA4AF;
  --rose-glow: rgba(251, 113, 133, 0.28);
  --orchid-pink: #F472B6;
  --orchid-glow: rgba(244, 114, 182, 0.25);
  --gold-warm: #FDE047;
  --gold-amber: #F59E0B;

  /* Glassmorphism & Matte Borders */
  --glass-bg: rgba(7, 34, 40, 0.65);
  --glass-bg-hover: rgba(12, 50, 58, 0.82);
  --glass-border-tosca: rgba(45, 212, 191, 0.32);
  --glass-border-rose: rgba(251, 113, 133, 0.35);
  --glass-border-subtle: rgba(255, 255, 255, 0.09);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-white: #FFFFFF;
  --text-pure: #F0FDFA;
  --text-blush: #FFE4E6;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* Shadows */
  --shadow-matte: 0 20px 48px rgba(2, 16, 20, 0.6), 0 0 32px rgba(45, 212, 191, 0.1);
  --shadow-glow-tosca: 0 0 35px rgba(45, 212, 191, 0.35);
  --shadow-glow-rose: 0 0 35px rgba(251, 113, 133, 0.35);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-space);
  color: var(--text-pure);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-space);
}
::-webkit-scrollbar-thumb {
  background: rgba(45, 212, 191, 0.35);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--tosca-primary);
}

/* ==============================================================================
   INTERACTIVE CANVAS (CANVASUI PETAL / FLORAL FLOW SYSTEM)
   ============================================================================== */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: auto; /* interactive cursor ripples */
}

.aurora-bg-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.aurora-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.36;
  will-change: transform;
  animation: orbFloat 24s infinite alternate ease-in-out;
}

.aurora-1 {
  width: 680px;
  height: 680px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.32) 0%, rgba(13, 148, 136, 0.14) 50%, transparent 75%);
}

.aurora-2 {
  width: 720px;
  height: 720px;
  top: 25%;
  right: -180px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.28) 0%, rgba(244, 114, 182, 0.12) 50%, transparent 75%);
  animation-duration: 30s;
  animation-delay: -6s;
}

.aurora-3 {
  width: 620px;
  height: 620px;
  bottom: -160px;
  left: 20%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22) 0%, rgba(253, 224, 71, 0.08) 50%, transparent 75%);
  animation-duration: 26s;
  animation-delay: -12s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, 55px) scale(1.06); }
  100% { transform: translate(-35px, -45px) scale(0.96); }
}

/* Subtle Matte Botanical Pattern */
.ambient-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background-image: 
    linear-gradient(to right, rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 45%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 45%, transparent 85%);
  pointer-events: none;
}

/* Main Content Wrapper */
.page-wrapper {
  position: relative;
  z-index: 10;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================================================================
   NAVIGATION BAR (MATTE TOSCA GLASS)
   ============================================================================== */
.navbar-wrapper {
  position: sticky;
  top: 18px;
  z-index: 100;
  padding: 0 24px;
}

.navbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 22px;
  background: rgba(5, 30, 36, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.navbar:hover {
  border-color: rgba(45, 212, 191, 0.5);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.contract-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(8, 41, 48, 0.85), rgba(13, 60, 70, 0.85));
  border: 1px solid rgba(45, 212, 191, 0.45);
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pulse-dot-tosca {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tosca-vibrant);
  box-shadow: 0 0 10px var(--tosca-vibrant);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); box-shadow: 0 0 14px var(--rose-blush); }
}

.contract-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #FFFFFF 0%, var(--tosca-light) 60%, var(--rose-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tosca-vibrant), var(--rose-blush));
  transition: width 0.25s ease;
  border-radius: 2px;
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-ghost-rose {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rose-soft);
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.35);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-ghost-rose:hover {
  background: rgba(251, 113, 133, 0.18);
  border-color: var(--rose-blush);
  box-shadow: 0 0 18px rgba(251, 113, 133, 0.3);
  transform: translateY(-1px);
}

.btn-primary-matte-tosca {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: #031417;
  background: linear-gradient(135deg, var(--mint-soft) 0%, var(--tosca-vibrant) 50%, var(--rose-blush) 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(45, 212, 191, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary-matte-tosca::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  transform: rotate(25deg);
  animation: shimmerMove 3.5s infinite;
}

@keyframes shimmerMove {
  0% { transform: translateX(-150%) rotate(25deg); }
  100% { transform: translateX(150%) rotate(25deg); }
}

.btn-primary-matte-tosca:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.55);
}

/* ==============================================================================
   HERO SECTION (ELEGANT FEMININE EXECUTIVE)
   ============================================================================== */
.hero-section {
  padding: 60px 0 80px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Hero Left Content */
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--tosca-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-title {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #FFFFFF;
}

.gradient-text-tosca {
  background: linear-gradient(135deg, #FFFFFF 15%, var(--tosca-light) 50%, var(--tosca-vibrant) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-rose {
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--rose-blush) 60%, var(--orchid-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #CBD5E1;
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-lead strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Dual Hero CTAs */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.btn-hero-lg {
  padding: 14px 32px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 14px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  color: #F0FDFA;
  background: rgba(8, 41, 48, 0.75);
  border: 1px solid rgba(251, 113, 133, 0.35);
  border-radius: 14px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  background: rgba(14, 60, 70, 0.85);
  border-color: var(--rose-blush);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* Highlights Strip */
.hero-highlights-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(45, 212, 191, 0.14);
}

.h-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.h-stat-num {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.h-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==============================================================================
   HERO RIGHT VISUAL (3D HOLOGRAPHIC SPOTLIGHT CARD)
   ============================================================================== */
.hero-visual-card {
  position: relative;
  width: 100%;
  perspective: 1200px;
}

.holographic-center-card {
  position: relative;
  background: linear-gradient(155deg, rgba(8, 44, 52, 0.85) 0%, rgba(4, 22, 27, 0.92) 100%);
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 45px rgba(45, 212, 191, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.holographic-center-card:hover {
  transform: rotateY(-3deg) rotateX(4deg) translateY(-6px);
  border-color: rgba(251, 113, 133, 0.6);
}

/* Executive Woman Portrait Spotlight */
.executive-avatar-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.avatar-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--tosca-vibrant), var(--rose-blush));
  padding: 2.5px;
  box-shadow: 0 0 22px rgba(45, 212, 191, 0.45);
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: #082930;
}

.avatar-info h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.avatar-info p {
  font-size: 12px;
  color: var(--tosca-light);
  font-weight: 500;
}

.level-tag-pill {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 10px;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--tosca-vibrant);
}

/* Mini Radar / Progress Bars */
.radar-preview-box {
  background: rgba(3, 20, 24, 0.65);
  border: 1px solid rgba(45, 212, 191, 0.12);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 18px;
}

.radar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
  font-size: 12px;
}

.radar-row:last-child {
  margin-bottom: 0;
}

.radar-label {
  color: var(--text-muted);
}

.radar-bar-track {
  flex: 1;
  max-width: 140px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  margin: 0 12px;
  overflow: hidden;
}

.radar-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--tosca-vibrant), var(--rose-blush));
}

.radar-val {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 12px;
}

/* Floating Badges */
.float-badge-1 {
  position: absolute;
  top: -22px;
  right: -22px;
  background: rgba(6, 30, 36, 0.9);
  border: 1px solid rgba(45, 212, 191, 0.5);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(45, 212, 191, 0.25);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatY 6s infinite alternate ease-in-out;
}

.float-badge-2 {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: rgba(6, 30, 36, 0.9);
  border: 1px solid rgba(251, 113, 133, 0.5);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 113, 133, 0.25);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatY 7s infinite alternate-reverse ease-in-out;
}

@keyframes floatY {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.fb-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.fb-icon-tosca {
  background: rgba(45, 212, 191, 0.15);
  color: var(--tosca-vibrant);
}

.fb-icon-rose {
  background: rgba(251, 113, 133, 0.15);
  color: var(--rose-blush);
}

.fb-text strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.fb-text span {
  font-size: 10.5px;
  color: var(--text-muted);
}

/* ==============================================================================
   SECTION HEADERS (MATTE TOSCA & BLUSH)
   ============================================================================== */
.section-header-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px auto;
}

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--tosca-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
}

/* ==============================================================================
   BENTO GRID SHOWCASE (CANVASUI / THREEUI MATTE TOSCA)
   ============================================================================== */
.bento-section {
  padding: 80px 0;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

/* Bento Card Base with Spotlight */
.bento-card {
  position: relative;
  background: rgba(7, 34, 40, 0.68);
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.14) 0%, rgba(251, 113, 133, 0.08) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  border-color: rgba(45, 212, 191, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(45, 212, 191, 0.15);
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.b-badge-tosca {
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: var(--tosca-light);
}

.b-badge-rose {
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.4);
  color: var(--rose-soft);
}

.bento-title {
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bento-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Interactive 9-Box Mini Grid */
.mini-9box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(3, 20, 24, 0.6);
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(45, 212, 191, 0.1);
}

.mini-box-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mini-box-cell:hover, .mini-box-cell.active {
  background: rgba(45, 212, 191, 0.18);
  border-color: var(--tosca-vibrant);
  transform: scale(1.03);
}

.mini-box-cell.ready1 {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.25), rgba(251, 113, 133, 0.2));
  border-color: rgba(45, 212, 191, 0.6);
}

.mb-name {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
}

.mb-count {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--tosca-light);
}

/* 7 Factors Locked List */
.factors-compact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.f-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: rgba(3, 20, 24, 0.5);
  border: 1px solid rgba(45, 212, 191, 0.1);
  border-radius: 12px;
  font-size: 11.5px;
}

.f-item.highlight {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.1);
}

.f-name {
  color: #E2E8F0;
  font-weight: 500;
}

.f-weight {
  font-weight: 800;
  color: var(--tosca-vibrant);
}

/* AI PDF Parser Stream */
.ai-stream-box {
  background: rgba(3, 20, 24, 0.7);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: monospace;
  font-size: 11px;
  color: var(--tosca-light);
  line-height: 1.65;
}

.ai-stream-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tosca-vibrant);
}

/* ==============================================================================
   WOMEN IN EXECUTIVE ENGINEERING SECTION
   ============================================================================== */
.women-leadership-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 44, 52, 0.35) 50%, transparent 100%);
}

.leadership-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}

.leader-card {
  position: relative;
  background: linear-gradient(145deg, rgba(8, 44, 52, 0.8) 0%, rgba(4, 22, 27, 0.9) 100%);
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 22px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.leader-card:hover {
  border-color: rgba(251, 113, 133, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(251, 113, 133, 0.2);
}

.leader-avatar-box {
  flex-shrink: 0;
  width: 105px;
  height: 105px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--tosca-vibrant), var(--rose-blush));
  padding: 2.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.leader-avatar-box img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  background: #082930;
}

.leader-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--tosca-light);
  margin-bottom: 10px;
}

.leader-quote {
  font-size: 12.5px;
  font-style: italic;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 14px;
  border-left: 2px solid var(--rose-blush);
  padding-left: 12px;
}

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

.l-tag {
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 6px;
  font-size: 10.5px;
  color: var(--text-pure);
}

/* ==============================================================================
   METRICS BANNER
   ============================================================================== */
.metrics-banner-section {
  padding: 60px 0;
  position: relative;
}

.metrics-glass-bar {
  background: linear-gradient(135deg, rgba(8, 44, 52, 0.85) 0%, rgba(4, 22, 27, 0.92) 100%);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 24px;
  padding: 36px 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.m-card-item {
  position: relative;
}

.m-card-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, transparent, rgba(45, 212, 191, 0.2), transparent);
}

.m-num {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFFFFF, var(--tosca-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.m-label {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.m-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==============================================================================
   EXECUTIVE CTA BANNER
   ============================================================================== */
.cta-finale-section {
  padding: 80px 0 100px 0;
  position: relative;
}

.cta-box-glass {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(10, 52, 62, 0.9) 0%, rgba(4, 22, 27, 0.95) 100%);
  border: 1px solid rgba(45, 212, 191, 0.45);
  border-radius: 32px;
  padding: 60px 44px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(45, 212, 191, 0.15);
  overflow: hidden;
}

.cta-box-glass::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(251, 113, 133, 0.25) 0%, rgba(45, 212, 191, 0.2) 50%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.22;
}

.cta-subtitle {
  font-size: 15.5px;
  color: #CBD5E1;
  max-width: 640px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
}

.cta-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================================================================
   FOOTER
   ============================================================================== */
.site-footer {
  border-top: 1px solid rgba(45, 212, 191, 0.12);
  padding: 44px 0 28px 0;
  background: rgba(3, 18, 22, 0.96);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(45, 212, 191, 0.08);
  font-size: 11.5px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 14px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }
  .hero-lead {
    margin: 0 auto 32px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-highlights-strip {
    justify-content: center;
  }
  .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }
  .leadership-showcase-grid {
    grid-template-columns: 1fr;
  }
  .metrics-glass-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .m-card-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .factors-compact-list {
    grid-template-columns: 1fr;
  }
  .metrics-glass-bar {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .m-card-item::after {
    display: none !important;
  }
  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .leader-quote {
    border-left: none;
    border-top: 2px solid var(--rose-blush);
    padding-left: 0;
    padding-top: 8px;
  }
  .leader-tags {
    justify-content: center;
  }
}
