

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}


.menu .sub-menu {
  display: none !important;
  position: absolute;
  background: #F1F3F4;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 0;
  z-index: 999;
  left: 65%;
  transform: translateX(-50%);
  top: 100%;
}

.menu .menu-item-has-children {
  position: relative;
}

.menu .menu-item-has-children:hover > .sub-menu {
  display: block !important;
}

.menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: #1A1A1A;
  font-size: 0.9rem;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

.menu .sub-menu li a:hover {
  color: #4285F4;
  background: #E8EAED;
}


.menu .sub-menu li {
  border-bottom: 1px solid #E2E4E7;
  margin: 0;
  padding: 0;
  list-style: none;
}













/* ══════════════════════════════════
     HERO SECTION
  ══════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 80px 40px 120px;
  display: flex;
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  gap: 60px;
  width: 100%;
  max-width: 1300px;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 30%, rgba(66,133,244,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ── COPY (LEFT COLUMN — UNCHANGED) ── */
.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 0;
}

.hero-headline {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-headline .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-headline .underlined {
  position: relative;
  white-space: nowrap;
}
.hero-headline .underlined::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.6s ease 0.9s forwards;
}

.hero-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.35s forwards;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.48s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0F172A;
  color: #FFFFFF !important;
  font-family: "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(66,133,244,0.3);
}
.btn-primary:hover {
  background: #1E293B;
  transform: translateY(-1px);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(59,130,246,0.25);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 10px; }

/* ── CHART CARD (RIGHT COLUMN — UPGRADED) ── */
.hero-visual {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.stats-main {
  background: #0D1117;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid #1E3A8A;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 12px 40px rgba(0,0,0,0.45);
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  height: auto;
  min-height: 400px;
}

.stats-main .stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.stats-main .stats-title {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.01em;
  text-transform: none;
  max-width: 55%;
  line-height: 1.3;
  white-space: nowrap;
}
.stats-main .stats-badge {
  background: #0F172A;
  border: 1px solid #1E3A8A;
  color: #93C5FD;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.stats-main .stats-badge svg { color: #60A5FA; }

.stats-main .bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 180px;
  margin-bottom: 0;
}

.stats-main .bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.stats-main .bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  border: none;
  transform-origin: bottom;
  animation: barGrow 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
  transform: scaleY(0);
}

.stats-main .bar-col:nth-child(1) .bar { height: 28px;  background: linear-gradient(to top, #2D3748, #4A5568); animation-delay: 0.7s; }
.stats-main .bar-col:nth-child(2) .bar { height: 52px;  background: linear-gradient(to top, #2D3748, #4A5568); animation-delay: 0.8s; }
.stats-main .bar-col:nth-child(3) .bar { height: 76px;  background: linear-gradient(to top, #2D3748, #4A5568); animation-delay: 0.9s; }
.stats-main .bar-col:nth-child(4) .bar { height: 105px; background: linear-gradient(to top, #2D3748, #4A5568); animation-delay: 1s; }

.stats-main .bar.active {
  height: 220px;
  background: linear-gradient(to top, #1E40AF, #3B82F6);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.4);
  border-color: transparent;
  animation-delay: 1.1s;
  position: relative;
}

.stats-main .bar.active::after {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  color: #60A5FA;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  animation: statLabelFadeIn 0.4s ease 1.6s forwards;
}

.stats-main .bar-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.stats-main .stat-source {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45); /* was 0.25 — too faint */
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 0 14px;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-top: 0;
  margin-bottom: 16px;
  font-style: normal;
}

.stats-main .stats-bottom-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.stats-main .stats-bottom-row .stats-row {
  flex: 1;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  gap: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-main .stats-bottom-row .stats-row:first-child {
  border-right: 1px solid rgba(255,255,255,0.07);
  padding-right: 16px;
}

.stats-main .stats-bottom-row .stats-row:last-child {
  padding-left: 16px;
}

.stats-main .stat-item {
  flex: unset;
}

.stats-main .stat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 6px;
}

.stats-main .stat-val {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #F1F5F9;
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.stats-main .stat-val.stat-val-green {
  color: #6EE7B7;
}

.stats-main .cash-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineGrow {
  to { transform: scaleX(1); }
}
@keyframes barGrow {
  to { transform: scaleY(1); }
}
@keyframes statLabelFadeIn {
  to { opacity: 1; }
}
@keyframes pulseRing {
  0%   { transform: scale(0.8); opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}










/* ════════════ SECTION 2 — REVENUE IMPACT GRID ════════════ */
.fce-section {

}
.fce-header {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 40px 0;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 0;
}

.fce-header h2 {
  font-family: "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.fce-header p {
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.6;
  margin: 0;
}

.fce-inner {
  max-width: 1500px;
  margin: 0 auto;
  background: transparent;
  padding: 60px 40px;
  box-sizing: border-box;
}

.fce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.fce-card {
  background: #0D1117;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid #1E3A8A;
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fce-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Active card — cobalt glow highlight */
.fce-card.card-active {
  border-left: 3px solid #3B82F6;
  box-shadow: 0 0 0 1px rgba(59,130,246,0.15), 0 8px 32px rgba(59,130,246,0.1);
}

.fce-num {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.fce-card-title {
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  margin: 0;
}

.fce-metric-val {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 6px 0 4px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.val-gold { color: #FBBF24; }
.val-blue { color: #60A5FA; }

/* "/ Client Contract" label beside the number */
.fce-metric-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.fce-card-body {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Pills row */
.fce-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.fce-pill {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

















 /* ══════════════════════════════════
     SEO GEO map
  ══════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



  .header { text-align: center; margin-bottom: 44px; }
  .header h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 10px; }
  .header p  { font-size: 15px; color: #5F6368; max-width: 560px; margin: 0 auto; line-height: 1.6; }

  /* ── MAIN LAYOUT ── */
  .map-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 260px 280px;
    justify-content: center;
    align-items: center;
  }


  /* ── LEFT COLUMN ── */
  .left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 28px;
  }

  /* ── RIGHT COLUMN ── */
  .right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 28px;
  }

  /* ── CENTER COLUMN ── */
  .center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 2;
  }

  .core-node {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #1a56db);
    box-shadow: 0 0 0 16px rgba(66,133,244,0.07),
                0 0 0 32px rgba(66,133,244,0.04),
                0 8px 32px rgba(66,133,244,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    animation: corePulse 3s ease-in-out infinite;
  }
  @keyframes corePulse {
    0%,100% { box-shadow: 0 0 0 16px rgba(66,133,244,0.07), 0 0 0 32px rgba(66,133,244,0.04), 0 8px 32px rgba(66,133,244,0.3); }
    50%     { box-shadow: 0 0 0 24px rgba(66,133,244,0.10), 0 0 0 48px rgba(66,133,244,0.05), 0 8px 40px rgba(66,133,244,0.4); }
  }
  .core-node h3 { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; }

  /* ── CARDS ── */
  .card {
    background: #fff;
    border-radius: 14px;
    border: 2px solid #E8EAED;
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); transform: translateY(-2px); }
  .card-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 11px;
  }
  .card h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
  .card p  { font-size: 12px; color: #5F6368; line-height: 1.6; }

  .card.blue   { border-color: #4285F4; } .card.blue   h4 { color: #4285F4; } .card.blue   .card-icon { background: rgba(66,133,244,0.10); }
  .card.green  { border-color: #34A853; } .card.green  h4 { color: #34A853; } .card.green  .card-icon { background: rgba(52,168,83,0.10);  }
  .card.amber  { border-color: #FBBC04; } .card.amber  h4 { color: #D97706; } .card.amber  .card-icon { background: rgba(251,188,4,0.10);  }
  .card.red    { border-color: #EA4335; } .card.red    h4 { color: #EA4335; } .card.red    .card-icon { background: rgba(234,67,53,0.10);  }
  .card.purple { border-color: #9334E6; } .card.purple h4 { color: #9334E6; } .card.purple .card-icon { background: rgba(147,52,234,0.10); }
  .card.teal   { border-color: #00897B; } .card.teal   h4 { color: #00897B; } .card.teal   .card-icon { background: rgba(0,137,123,0.10);  }

  /* ── OUTPUT STRIP ── */
  .divider-label {
    text-align: center; font-size: 11px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase; color: #9AA0A6;
    margin: 40px auto 18px; max-width: 1200px;
    display: flex; align-items: center; gap: 12px;
  }
  .divider-label::before, .divider-label::after { content: ''; flex: 1; height: 1px; background: #DADCE0; }

.output-strip {
    max-width: 1200px; margin: 0 auto 120px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
  .output-card {
    background: #fff; border-radius: 14px; border: 1.5px solid #E8EAED;
    padding: 20px 22px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .output-card .out-icon { font-size: 26px; margin-bottom: 10px; }
  .output-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
  .output-card p  { font-size: 12px; color: #5F6368; line-height: 1.6; }
  .output-card:nth-child(1) { border-color: #4285F4; } .output-card:nth-child(1) h4 { color: #4285F4; }
  .output-card:nth-child(2) { border-color: #34A853; } .output-card:nth-child(2) h4 { color: #34A853; }
  .output-card:nth-child(3) { border-color: #9334E6; } .output-card:nth-child(3) h4 { color: #9334E6; }










/* ══════════════════════════════════
   EXHIBITION SECTION
══════════════════════════════════ */
/* ══════════════════════════════════
EXHIBITION SECTION
══════════════════════════════════ */
.exhibition {
background: var(--white);
border-bottom: 1px solid var(--border);
padding: 80px 20px 70px;
display: flex;
flex-direction: column;
align-items: center;
}

/* ── HEADER ── */
.exhibition-header {
text-align: center;
max-width: 780px;
margin-bottom: 52px;
opacity: 0;
animation: fadeUp 0.6s ease 0.1s forwards;
}

.exhibition-header h2 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #0F172A;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.exhibition-header h2 .underlined {
position: relative;
white-space: nowrap;
}
.exhibition-header h2 .underlined::after {
content: '';
position: absolute;
left: 0; bottom: -4px;
width: 100%; height: 3px;
background: var(--primary);
border-radius: 2px;
transform: scaleX(0);
transform-origin: left;
animation: lineGrow 0.6s ease 0.8s forwards;
}

.exhibition-header p {
  font-size: 1rem;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.exhibition-header p em {
color: var(--primary);
font-style: normal;
font-weight: 600;
}

  /* ── SLIDER WRAPPER ── */
  .slider-wrapper {
    width: 100%;
    max-width: 1200px;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.3s forwards;
  }

  /* Track + overflow */
  .slider-track-outer {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    z-index: 1;
  }

  .slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
  }

  /* ── SLIDE ── */
  .slide {
    min-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a2e;
    aspect-ratio: 16 / 7;
    display: flex;
    align-items: flex-end;
  }

  .slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s ease;
  }

  .slide:hover img { transform: scale(1.02); }

  /* Gradient overlay */
  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10, 20, 60, 0.75) 0%,
      rgba(10, 20, 60, 0.1) 50%,
      transparent 100%
    );
  }

  /* Slide caption */
  .slide-caption {
    position: relative;
    z-index: 2;
    padding: 32px 40px;
    color: #fff;
  }

  .slide-caption-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(66,133,244,0.85);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .slide-caption h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .slide-caption p {
    font-size: 0.88rem;
    opacity: 0.8;
    max-width: 480px;
  }

  /* ── SLIDER LABEL ── */
  .slider-label {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 20, 60, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    border-top-left-radius: 0;
    padding: 12px 22px;
    color: #fff;
    white-space: nowrap;
  }
  .slider-label-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(66,133,244,0.3);
    flex-shrink: 0;
    animation: labelPulse 2s ease infinite;
  }
  .slider-label-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
  }
  @keyframes labelPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(66,133,244,0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(66,133,244,0.1); }
  }

  /* ── PLACEHOLDER SLIDES (color blocks until real images added) ── */
  .slide-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .slide:nth-child(1) { background: linear-gradient(135deg, #0f2044 0%, #1a3a6b 100%); }
  .slide:nth-child(2) { background: linear-gradient(135deg, #0d3320 0%, #1a5c38 100%); }
  .slide:nth-child(3) { background: linear-gradient(135deg, #2a0d44 0%, #4a1a6b 100%); }

  /* ── ARROWS ── */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(15,23,42,0.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    color: var(--text);
  }
  .slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(66,133,244,0.35);
    transform: translateY(-50%) scale(1.08);
  }
  .slider-btn.prev { left: 16px; }
  .slider-btn.next { right: 16px; }

  /* ── DOTS ── */
  #exhibitionSlider .slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  #exhibitionSlider .dot {
    width: 8px; height: 8px;
    border-radius: 100px;
    background: var(--border);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
  }
  #exhibitionSlider .dot.active {
    background: var(--primary);
    width: 24px;
  }

  /* ── SLIDE COUNTER ── */
  .slider-counter {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 10px;
    letter-spacing: 0.05em;
  }
  .slider-counter span { color: var(--primary); font-weight: 700; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes lineGrow {
    to { transform: scaleX(1); }
  }





/* ══════════════════════════════════════════
   DONDA OPERATING SYSTEM — Institutional Elite
   ══════════════════════════════════════════ */
.exf-icon {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1;
}

.exf-split-icon {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.exf-section {
  padding: 80px 40px;
  background: transparent; /* remove from here */
}

.exf-inner {
  max-width: 1500px;
  margin: 0 auto;
  box-sizing: border-box;
  /* no background here either — banner + container carry the visuals */
}

/* ── ELITE SYSTEM HEADER ── */
.exf-system-banner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Space for the Live Status */
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 14px 28px;
}

.exf-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* THE PULSE: Real-time system indicator */
.exf-status-pulse {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.exf-system-banner-text {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #60A5FA; /* System Blue */
}

.exf-system-banner-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── DASHBOARD CONTAINER ── */
.exf-flow-container {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 0 12px 12px;
  padding: 32px;
  background: #0D1117;
}

.exf-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr; /* Exact Dashboard Ratio */
  gap: 20px;
}

/* ── CARDS: High-Net-Worth Aesthetic ── */
.exf-card {
  background: #161B22;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 28px 20px;
  transition: all 0.3s ease;
}

.exf-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  background: #1c222b;
}

.exf-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-align: left;
}

.exf-h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 12px;
  text-align: left;
}

.exf-p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  text-align: left;
}

/* ── SUB-SYSTEM PILLS ── */
.exf-sub {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 8px 12px;
  border-radius: 4px; /* Industrial sharp edges */
}

/* ── SIMULTANEOUS ACTION COLUMN ── */
.exf-split-card {
  background: #161B22;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.border-blue { border-left: 2px solid #3B82F6; }
.border-gold { border-left: 2px solid #FBBF24; }

.exf-h4 {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  margin: 0;
}









/* ===== VIDEO SECTION BLACK COVER ===== */
.intro-video-section {
    position: relative;
    background: #000;
    padding: 10px 20px 0;
    overflow: hidden;
    margin-bottom: 80px;
}



/* overlay */
.intro-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.9)
    );
    z-index: 1;
}

/* keep content above overlay */
.intro-video-section > * {
    position: relative;
    z-index: 2;
}

/* ⭐ text white */
.intro-video-title,
.intro-video-subtitle {
    color: #fff;
}







/* ===== Scope of Work Box ===== */

.scope-box {
    margin-top: 25px;
    padding: 28px 32px;
    background: linear-gradient(145deg, #f8fbff, #eef4ff);
    border-radius: 18px;
    border: 1px solid rgba(0, 80, 200, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* subtle accent line */
.scope-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, #1a73e8, #0f9d58);
}

.scope-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 16px;
}

.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-list li {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

/* custom bullet */
.scope-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0f9d58;
    font-weight: 700;
}



/* ===== Native Writer Section ===== */
.native-writer-section {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.native-writer-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.native-writer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f4ff;
  border: 1px solid #d0e0ff;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.native-flag {
  font-size: 1.1rem;
}
.native-writer-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.native-writer-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0052cc, #62d5ff);
  border-radius: 4px;
  margin: 10px auto 0;
}
.native-writer-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: #6b7280;
  margin-top: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.native-writer-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.native-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7f9ff;
  border: 1px solid #e0e8ff;
  color: #333;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.native-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.native-pill-icon {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .native-writer-title { font-size: 1.5rem; }
  .native-writer-pills { gap: 8px; }
}


/* ===== Our Customer Slider ===== */
.portfolio-slider-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: transparent;
}
.portfolio-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.portfolio-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.portfolio-slide {
    display: none;
    padding: 2rem;
}
.portfolio-slide.active {
    display: block;
}
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0 0.5rem;
    border-top: 1px solid #E2E8F0;
}
.slider-prev,
.slider-next {
    background: #007cba;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.slider-prev:hover,
.slider-next:hover {
    background: #005a87;
}
.slider-dots {
    display: flex;
    gap: 0.5rem;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background: #007cba;
}
.dot:hover {
    background: #999;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-slider-section {
        padding: 1rem;
    }
    .portfolio-slide {
        padding: 1rem;
    }
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}





/* ════════════ DOMINATE GLOBAL MARKETS ════════════ */
.dgm-section {
  background: transparent;
  padding: 12px 20px 12px;
  text-align: center;
  border-top: 1px solid #E8EAED;
  position: relative;
  overflow: hidden;
}
 
.dgm-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 0;
}
 
/* Globe image */
.dgm-earth-wrap {
  margin-bottom: 32px;
}
 
.dgm-globe-img {
  width: 100%;
  max-width: 1200px;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
 
.dgm-headline {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 32px;
}
 
.dgm-sub {
  font-size: 1.1rem;
  color: #5F6368;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 32px;
}
 
.dgm-callout {
  background: #4285F4;
  border-radius: 14px;
  padding: 28px 36px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.dgm-callout::before {
  display: none;
}
.dgm-callout-text {
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.75;
}
 
.dgm-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0D1117;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 22px 48px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 10px;
}
.dgm-cta:hover {
  background: #EA4335;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(234,67,53,0.35);
}
.dgm-cta svg { transition: transform 0.2s; }
.dgm-cta:hover svg { transform: translateX(4px); }
 
.dgm-cta-sub {
  font-size: 0.85rem;
  color: #1A1A1A;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  max-width: 460px;
}
















/* modern agency-style reveal */
.reveal {
    opacity: 0;
    transition: all 0.9s cubic-bezier(.22,.61,.36,1);
}


/* directions */
.reveal-up {
    transform: translateY(80px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

/* visible state */
.reveal.visible {
    opacity: 1;
    transform: translate(0,0);
}

/* modern agency-style reveal */




