:root {
  --navy: #050505;
  --navy-2: #11100f;
  --ink: #1b1918;
  --muted: #716a66;
  --soft: #f7f5f3;
  --line: #e5dfdb;
  --gold: #FFD700;
  --gold-2: #FFF44F;
  --warm-metal: #b8aca6;
  --warm-metal-2: #d8cec9;
  --violet: #8f837d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 16, 14, .13);
  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 24px;
  --font-3xl: 28px;
  --font-4xl: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: var(--font-base);
}
.reveal-init .section,
.reveal-init .stats,
.reveal-init .cta,
.reveal-init .footer {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal-init .is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(11, 18, 34, .76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { margin-left: auto; }
.brand img { width: 74px; height: 52px; object-fit: contain; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 26px; color: rgba(255,255,255,.82); font-size: var(--font-sm); font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-right: auto; }
.menu-toggle { display: none; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(5,5,5,.18); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #11100f; }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); }
.nav-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 6px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.icon-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.34); }
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn.light { background: rgba(255,255,255,.14); }
.icon-btn.dark {
  color: var(--ink);
  background: rgba(240,200,75,.14);
  border-color: rgba(27,25,24,.12);
}
.icon-btn.dark:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero-slider, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: opacity .8s cubic-bezier(.4,.0,.2,1), transform 6s cubic-bezier(.1,.8,.2,1);
}
.hero-slide.active { 
  opacity: 1; 
  transform: scale(1);
  animation: heroSlideIn .8s cubic-bezier(.4,.0,.2,1) forwards;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,5,5,.55), rgba(5,5,5,.88)),
    linear-gradient(90deg, rgba(240,200,75,.15), rgba(216,206,201,.06));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 70px;
  animation: fadeInUp .9s ease-out .2s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  animation: slideDown .6s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  animation: slideDown .6s ease-out;
}
.hero-title {
  max-width: 860px;
  margin: 24px auto 18px;
  font-size: clamp(44px, 4.5vw, 72px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.3px;
  animation: fadeInUp .8s ease-out .1s both;
}
.hero-desc { 
  max-width: 650px; 
  margin: 0 auto; 
  color: rgba(255,255,255,.82); 
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.7;
  animation: fadeInUp .8s ease-out .2s both;
}
.hero-actions { 
  margin-top: 34px; 
  display: flex; 
  justify-content: center; 
  gap: 14px; 
  flex-wrap: wrap;
  animation: fadeInUp .8s ease-out .3s both;
}
.hero-metrics {
  width: min(760px, 100%);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  animation: fadeInUp .8s ease-out .4s both;
}
.hero-metrics div {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .35s ease;
}
.hero-metrics div:hover { 
  transform: translateY(-6px); 
  border-color: rgba(240,200,75,.52); 
  background: rgba(255,255,255,.13);
  box-shadow: 0 12px 32px rgba(240,200,75,.2);
}
.hero-metrics strong { color: var(--gold); font-size: var(--font-3xl); line-height: 1; font-weight: 900; }
.hero-metrics span { color: rgba(255,255,255,.78); font-size: var(--font-sm); font-weight: 600; }
.stats-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  justify-items: center;
}
.stat-card {
  min-height: 160px;
  width: min(320px, 100%);
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(240,200,75,.14), rgba(255,255,255,.98));
  border: 1px solid rgba(240,200,75,.28);
  box-shadow: 0 26px 48px rgba(20,16,14,.08);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  animation: fadeInUp .85s ease-out both;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 66px rgba(20,16,14,.14);
  border-color: rgba(240,200,75,.45);
}
.stat-card strong {
  color: var(--navy);
  font-size: var(--font-4xl);
  line-height: 1;
}
.stat-card span {
  color: var(--muted);
  font-size: var(--font-lg);
  line-height: 1.7;
}
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 12px; }
.hero-controls { position: absolute; z-index: 4; left: 50%; bottom: 34px; transform: translateX(-50%); }
.arrow-btn {
  transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease, scale .2s ease !important;
}
.arrow-btn:hover {
  transform: translateY(-2px) scale(1.1) !important;
  background: rgba(240,200,75,.25) !important;
  border-color: rgba(240,200,75,.5) !important;
  box-shadow: 0 8px 24px rgba(240,200,75,.3) !important;
}
.arrow-btn:active {
  scale: .95;
}
.prev-btn, .next-btn {
  position: relative;
}
.prev-btn::before, .next-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: radial-gradient(circle at center, rgba(240,200,75,.2), transparent);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.arrow-btn:hover::before {
  opacity: 1;
}
.dots { display: flex; align-items: center; gap: 7px; }
.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: width .35s cubic-bezier(.4,.0,.2,1), background .35s ease, box-shadow .35s ease;
}
.dot:hover {
  background: rgba(255,255,255,.6);
  box-shadow: 0 0 12px rgba(255,255,255,.3);
}
.dot.active { 
  width: 22px; 
  background: var(--gold);
  box-shadow: 0 0 16px rgba(240,200,75,.5);
}
.dots.center { margin-top: 24px; justify-content: center; }
.dots.center .dot { background: #cfd5e0; }
.dots.center .dot.active { background: var(--gold); }

.section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 18%, rgba(240,200,75,.11), transparent 34%);
  opacity: 0;
  transition: opacity .35s ease;
}
.section:hover::before { opacity: 1; }
.section > .container { position: relative; z-index: 1; }
.section-head { max-width: 680px; margin: 0 auto 42px; text-align: center; }
.section-head h2, .section-copy h2, .band-head h2, .cta h2 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.section-head p, .section-copy p { 
  margin: 0; 
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
}
.section-copy p + p { margin-top: 14px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.about-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #050505, #161311 58%, #3a342f);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(240,200,75,.12);
}
.about-panel:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 30px 70px rgba(240,200,75,.18);
  border-color: rgba(240,200,75,.3);
}
.about-panel img { 
  width: min(360px, 80%); 
  border-radius: 8px; 
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.28));
  transition: transform .4s ease, filter .4s ease;
}
.about-panel:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 30px 40px rgba(240,200,75,.25));
}
.about-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(310px, calc(100% - 56px));
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  transition: transform .3s ease, box-shadow .3s ease, border .3s ease;
  border: 2px solid transparent;
}
.about-card.premium-card {
  border: 2px solid rgba(240,200,75,.4);
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(240,200,75,.08));
}
.about-card.premium-card:hover {
  border-color: rgba(240,200,75,.8);
  box-shadow: 0 20px 50px rgba(240,200,75,.25);
}
.about-card strong { color: var(--navy); font-size: 17px; }
.about-card span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.about-cta-box {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(16,26,47,.1);
}
.cta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
  transition: transform .3s ease, color .3s ease;
}
.cta-item:hover {
  transform: translateX(-8px);
  color: var(--gold);
}
.cta-item i,
.cta-item [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.cta-item:hover i,
.cta-item:hover [data-lucide] {
  transform: scale(1.2) rotate(-10deg);
}

.why, .process, .testimonials { background: var(--white); }
.why, .process, .testimonials { background: var(--soft); }
.eyebrow.gold { background: rgba(240,200,75,.14); color: #9d7710; }
.eyebrow.violet { background: rgba(143,131,125,.12); color: var(--violet); }
.feature-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card, .service-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16,26,47,.05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.feature-card:hover, .service-grid article:hover, .timeline article:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 54px rgba(20,16,14,.12);
}
.feature-card .lucide, .service-grid .lucide, .timeline .lucide,
.feature-card i, .service-grid i, .timeline i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(240,200,75,.13);
  color: var(--violet);
  padding: 10px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.feature-card:hover .lucide, .service-grid article:hover .lucide, .timeline article:hover .lucide { background: var(--navy); color: var(--gold-2); transform: rotate(-4deg) scale(1.06); }
.feature-card span {
  position: absolute;
  left: 22px;
  top: 14px;
  color: rgba(16,26,47,.06);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}
.feature-card h3, .service-grid h3, .timeline h3 { 
  margin: 0 0 8px; 
  color: var(--navy); 
  font-size: var(--font-xl);
  font-weight: 800;
}
.feature-card p, .service-grid p, .timeline p { 
  margin: 0; 
  color: var(--muted); 
  font-size: var(--font-sm);
  line-height: 1.6;
}

.gallery-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #161311 62%, #3a342f);
}
.gallery-band .eyebrow { background: rgba(255,255,255,.1); }
.band-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}
.band-head h2 { color: var(--white); margin-bottom: 0; }
.image-strip {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 16px;
}
.strip-item {
  min-height: 330px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  opacity: .62;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
}
.strip-item.active { opacity: 1; transform: translateY(-8px); }
.strip-item:hover { opacity: 1; transform: translateY(-10px) scale(1.01); box-shadow: 0 22px 46px rgba(0,0,0,.25); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; }
.strip-item figcaption, .portfolio-slide figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(10,17,31,.72);
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.timeline article {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.services { background: var(--white); }

.stats {
  padding: 74px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #151311 75%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stats-grid div {
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 8px;
  border: 1px solid rgba(216,206,201,.12);
  background: rgba(255,255,255,.04);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}
.stats-grid div:hover { transform: translateY(-7px); background: rgba(240,200,75,.1); border-color: rgba(240,200,75,.38); }
.stats strong { 
  display: block; 
  color: var(--gold); 
  font-size: var(--font-4xl);
  font-weight: 900;
  line-height: 1;
}
.stats span { 
  color: rgba(255,255,255,.76); 
  font-weight: 700;
  font-size: var(--font-sm);
}

.partners { background: var(--white); }
.partner-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.partner-cloud span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--soft));
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(13px, 1.2vw, 15px);
  box-shadow: 0 12px 30px rgba(20,16,14,.05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.partner-cloud span:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(240,200,75,.18), var(--white));
  box-shadow: 0 22px 42px rgba(20,16,14,.1);
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 18px;
  align-items: stretch;
}
.portfolio-main {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}
.portfolio-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .35s ease, transform .45s ease;
}
.portfolio-slide.active { opacity: 1; transform: scale(1); }
.portfolio-slide:not(.active) { transform: scale(1.02); }
.portfolio-slide img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-side { display: grid; gap: 12px; }
.portfolio-thumb {
  min-height: 0;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--soft);
  transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
}
.portfolio-thumb.active { border-color: var(--gold); }
.portfolio-thumb:hover { transform: translateY(-4px); opacity: .88; }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.masonry-gallery img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .28s ease, filter .28s ease, box-shadow .28s ease;
}
.masonry-gallery img:hover { transform: translateY(-7px) scale(1.015); filter: contrast(1.05); box-shadow: 0 22px 42px rgba(20,16,14,.14); }

.project-carousel {
  color: var(--white);
  background: #050505;
}
.project-carousel .section-head h2,
.project-carousel .section-head p { color: var(--white); }
.experience-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #11100f;
  box-shadow: var(--shadow);
}
.experience-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  margin: 0;
  padding: 34px;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .45s ease, transform .45s ease;
}
.experience-slide.active { opacity: 1; transform: translateX(0); }
.experience-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.12), rgba(5,5,5,.82));
}
.experience-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(216,206,201,.18);
  background: rgba(5,5,5,.58);
  backdrop-filter: blur(12px);
}
.experience-content h3 { margin: 0 0 8px; font-size: clamp(26px, 4vw, 42px); line-height: 1.25; font-weight: 900; }
.experience-content p { margin: 0; color: rgba(255,255,255,.78); font-size: clamp(14px, 1.5vw, 18px); line-height: 1.6; }
.experience-controls { margin-top: 22px; }

.spotlight-gallery { background: var(--white); }
.spotlight-shell {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 34px;
  align-items: center;
}
.spotlight-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,245,243,.96)),
    radial-gradient(circle at top right, rgba(240,200,75,.18), transparent 38%);
  box-shadow: var(--shadow);
}
.spotlight-copy span {
  color: var(--violet);
  font-size: var(--font-xs);
  font-weight: 900;
  letter-spacing: 0.5px;
}
.spotlight-copy h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  font-weight: 900;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.spotlight-copy p { 
  margin: 0 0 24px; 
  color: var(--muted);
  font-size: var(--font-base);
  line-height: 1.7;
}
.dark-dots .dot { background: #cec5c0; }
.dark-dots .dot.active { background: var(--navy); }
.spotlight-stage {
  position: relative;
  min-height: 570px;
  perspective: 1200px;
}
.spotlight-stage::before,
.spotlight-stage::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: var(--gold-2);
  opacity: .58;
  box-shadow: 0 18px 42px rgba(20,16,14,.12);
}
.spotlight-stage::before {
  inset: 44px 54px auto auto;
  width: 56%;
  height: 68%;
  transform: rotate(5deg);
}
.spotlight-stage::after {
  left: 34px;
  bottom: 28px;
  width: 48%;
  height: 52%;
  transform: rotate(-7deg);
  background: var(--gold);
}
.spotlight-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 8px solid var(--white);
  background: var(--soft);
  box-shadow: 0 30px 70px rgba(20,16,14,.18);
  opacity: 0;
  transform: translateX(-44px) rotateY(-12deg) scale(.94);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.spotlight-slide.active {
  opacity: 1;
  transform: translateX(0) rotateY(0) scale(1);
}
.spotlight-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}
.spotlight-slide.active img { transform: scale(1.06); }
.spotlight-slide figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 11px 16px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(5,5,5,.72);
  font-weight: 900;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity .35s ease .22s, transform .35s ease .22s;
}
.spotlight-slide.active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.flow-gallery { background: var(--soft); }
.flow-head h2 { color: var(--ink); }
.flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.flow-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20,16,14,.06);
  opacity: .62;
  transform: translateY(20px) scale(.96);
  transition: opacity .35s ease, transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.flow-card.active {
  opacity: 1;
  transform: translateY(-10px) scale(1);
  border-color: var(--gold);
  box-shadow: 0 28px 58px rgba(20,16,14,.16);
}
.flow-card:hover {
  opacity: 1;
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 64px rgba(20,16,14,.18);
}
.flow-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform 4s ease, filter .3s ease;
}
.flow-card.active img,
.flow-card:hover img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.05);
}
.flow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.04), rgba(5,5,5,.82));
}
.flow-card div {
  position: absolute;
  z-index: 1;
  right: 18px;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(216,206,201,.18);
  background: rgba(5,5,5,.54);
  color: var(--white);
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  font-size: var(--font-lg);
  font-weight: 900;
}
.flow-card span { 
  color: rgba(255,255,255,.74); 
  font-size: var(--font-sm);
  line-height: 1.5;
}

.flow-card.active div,
.flow-card:hover div {
  transform: translateY(0);
  background: rgba(5,5,5,.68);
}
.flow-card strong { font-size: 19px; }
.flow-card span { color: rgba(255,255,255,.74); font-size: 14px; }

.testimonial-slider {
  width: min(760px, 100%);
  min-height: 220px;
  margin: 0 auto;
  position: relative;
}
.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 34px;
  text-align: center;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.testimonial:hover { box-shadow: 0 28px 60px rgba(20,16,14,.15); }
.testimonial.active { opacity: 1; transform: translateY(0); }
.testimonial p { margin: 0 0 12px; color: var(--ink); font-size: 18px; }
.testimonial strong { color: var(--navy); }
.testimonial span { color: var(--muted); font-size: 14px; }

.cta {
  position: relative;
  padding: 96px 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #0d1528 0%, #1a1820 50%, #2a2b2b 100%);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(240,200,75,.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(143,131,125,.06), transparent 50%);
  pointer-events: none;
}
.cta-backdrop {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 54px 48px;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  box-shadow: 
    0 40px 90px rgba(0,0,0,.35),
    inset 0 1px 1px rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
}
.cta-inner:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(240,200,75,.3);
  box-shadow: 
    0 50px 120px rgba(240,200,75,.15),
    inset 0 1px 1px rgba(255,255,255,.15);
  transform: translateY(-6px);
}
.cta h2 { 
  font-size: clamp(34px, 4vw, 52px); 
  font-weight: 900; 
  margin: 14px 0 18px; 
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff, rgba(240,200,75,.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}
.cta p { 
  margin: 0 0 28px; 
  color: rgba(255,255,255,.82); 
  font-size: clamp(16px, 1.8vw, 18px); 
  line-height: 1.8; 
  max-width: 700px; 
  margin-left: auto; 
  margin-right: auto;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 36px;
}
.cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .3s ease;
}
.cta-feature:hover {
  background: rgba(240,200,75,.12);
  border-color: rgba(240,200,75,.3);
  transform: translateY(-4px);
}
.cta-feature i,
.cta-feature [data-lucide] {
  width: 32px;
  height: 32px;
  color: var(--gold);
  transition: transform .3s ease;
}
.cta-feature:hover i,
.cta-feature:hover [data-lucide] {
  transform: scale(1.1) rotate(-5deg);
}
.cta-feature span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 0 40px;
  min-height: 52px;
  font-size: 16px;
  font-weight: 800;
}
.btn-lg i,
.btn-lg [data-lucide] {
  width: 18px;
  height: 18px;
  transition: transform .3s ease;
}
.btn-lg:hover i,
.btn-lg:hover [data-lucide] {
  transform: translateX(-4px);
}
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
  color: var(--gold);
}

@media (max-width: 980px) {
  .cta-features { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .cta { padding: 64px 0; }
  .cta-inner { padding: 32px 24px; border-radius: 16px; }
  .cta-actions { gap: 12px; }
  .btn-lg { padding: 0 28px; min-height: 48px; width: 100%; }
  .btn-outline-light { width: 100%; }
  .cta-features { gap: 12px; }
}

.footer {
  position: relative;
  padding: 72px 0 0;
  color: rgba(255,255,255,.76);
  background:
    linear-gradient(180deg, rgba(5,5,5,.94), rgba(5,5,5,.98)),
    #0d1528;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(240,200,75,.18), transparent 28%),
    linear-gradient(135deg, rgba(240,200,75,.08), transparent 42%);
  pointer-events: none;
}
.footer-visuals {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: .18;
  filter: saturate(.9) contrast(1.08);
}
.footer-visuals img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(190px, 1fr));
  gap: 22px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand,
.footer-column {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.footer-brand p {
  margin: 0 0 18px;
  max-width: 340px;
  color: rgba(255,255,255,.78);
  font-size: var(--font-base);
  line-height: 1.8;
}
.footer-logo {
  width: 96px;
  border-radius: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.18);
}
.footer h3 {
  color: var(--white);
  margin: 0 0 16px;
  font-size: var(--font-xl);
}
.footer-brand-photo {
  position: relative;
  min-height: 190px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(240,200,75,.22);
}
.footer-brand-photo img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform .35s ease;
}
.footer-brand-photo::after,
.footer-link-card::after,
.footer-contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.05), rgba(5,5,5,.78));
  pointer-events: none;
}
.footer-brand-photo span {
  position: absolute;
  z-index: 1;
  right: 14px;
  left: 14px;
  bottom: 12px;
  color: var(--white);
  font-size: var(--font-sm);
  font-weight: 800;
}
.footer-brand-photo:hover img,
.footer-link-card:hover img,
.footer-contact-card:hover img {
  transform: scale(1.08);
}
.footer-column {
  display: grid;
  gap: 10px;
}
.footer-column a,
.footer-brand a {
  color: rgba(255,255,255,.82);
  font-size: var(--font-sm);
  transition: color .25s ease, border-color .25s ease, transform .25s ease, background .25s ease;
}
.footer-column a:hover,
.footer-brand a:hover {
  color: var(--gold);
}
.footer-link-card,
.footer-contact-card {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
}
.footer-link-card:hover,
.footer-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,200,75,.44);
}
.footer-link-card img,
.footer-contact-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.footer-link-card span,
.footer-contact-card span {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.footer-contact-card {
  min-height: 96px;
}
.footer-column a [data-lucide],
.footer-column a i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
  margin-bottom: 0;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0d1528;
  transform: translateY(-3px);
}
.social-links a [data-lucide],
.social-links a i {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.3);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: var(--font-sm);
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,.64);
  font-size: var(--font-sm);
  transition: color .25s ease;
}
.footer-links a:hover {
  color: var(--gold);
}

.about-split {
  align-items: flex-start;
}
.about-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #191919, #0f1011 68%, #2a2623);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.26);
}
.about-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(.95);
}
.about-badges {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.badge {
  min-width: 124px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
}
.badge strong {
  display: block;
  color: var(--gold);
  font-size: var(--font-2xl);
  font-weight: 900;
}
.badge span {
  color: rgba(255,255,255,.82);
  font-size: var(--font-sm);
  line-height: 1.5;
}
.about-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(320px, calc(100% - 56px));
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.about-card strong { color: var(--navy); font-size: var(--font-xl); }
.about-card span { color: var(--muted); font-size: var(--font-sm); line-height: 1.7; }
.about-card.premium-card {
  border: 1px solid rgba(240,200,75,.25);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(240,200,75,.08));
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-panel { min-height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal-init .section,
  .reveal-init .stats,
  .reveal-init .cta,
  .reveal-init .footer {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; }
  .nav { justify-content: space-between; }
  .brand, .nav-cta { margin: 0; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(13,21,40,.97);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .split, .portfolio-layout { grid-template-columns: 1fr; }
  .feature-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .image-strip, .masonry-gallery { grid-template-columns: repeat(2, 1fr); }
  .spotlight-shell { grid-template-columns: 1fr; }
  .spotlight-stage { min-height: 480px; }
  .flow-track { grid-template-columns: repeat(2, 1fr); }
  .portfolio-side { grid-template-columns: repeat(3, 1fr); }
  .portfolio-thumb { aspect-ratio: 1.5 / 1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1140px); }
  .hero { min-height: 720px; }
  .hero p { font-size: 16px; }
  .hero-metrics, .stats-grid, .feature-grid, .service-grid, .timeline, .image-strip, .masonry-gallery, .footer-grid { grid-template-columns: 1fr; }
  .flow-track { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .band-head { align-items: start; flex-direction: column; }
  .strip-item { min-height: 260px; }
  .spotlight-copy { padding: 24px; }
  .spotlight-stage { min-height: 390px; }
  .spotlight-stage::before, .spotlight-stage::after { display: none; }
  .flow-card, .flow-card img { min-height: 360px; }
  .portfolio-main { min-height: 430px; }
  .testimonial { padding: 24px; }
  .hero-actions .btn { width: 100%; }
  .footer-bottom-inner { justify-content: center; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* MTN visual and typography polish */
:root {
  --display-h1: clamp(34px, 4.4vw, 58px);
  --display-h2: clamp(25px, 3vw, 38px);
  --display-h3: clamp(17px, 1.5vw, 22px);
}

h1,
h2,
h3 {
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.section-head {
  max-width: 980px;
}

.section-copy {
  min-width: 0;
}

.hero-title {
  max-width: none;
  font-size: var(--display-h1);
  line-height: 1.18;
}

.section-head h2,
.section-copy h2,
.band-head h2,
.cta h2 {
  font-size: var(--display-h2);
  line-height: 1.25;
}

.experience-content h3,
.spotlight-copy h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.28;
}

.feature-card h3,
.service-grid h3,
.timeline h3,
.footer h3,
.flow-card strong {
  font-size: var(--display-h3);
  line-height: 1.3;
}

.hero-desc,
.section-head p,
.section-copy p,
.experience-content p,
.spotlight-copy p,
.cta p {
  font-size: clamp(15px, 1.25vw, 18px);
}

.hero-slide,
.experience-slide img,
.spotlight-slide img,
.portfolio-slide img,
.strip-item img,
.flow-card img,
.masonry-gallery img,
.footer-visuals img,
.footer-link-card img,
.footer-contact-card img {
  filter: saturate(1.04) contrast(1.04);
}

.hero-slide {
  background-position: center 42%;
}

.about-panel img {
  object-position: center;
}

.strip-item figcaption,
.portfolio-slide figcaption,
.spotlight-slide figcaption {
  max-width: calc(100% - 36px);
  line-height: 1.35;
}

.band-head > div,
.flow-card div,
.experience-content,
.spotlight-copy {
  min-width: 0;
}

@media (min-width: 981px) {
  .hero-title,
  .section-head h2,
  .band-head h2,
  .cta h2,
  .experience-content h3,
  .feature-card h3,
  .service-grid h3,
  .timeline h3,
  .footer h3,
  .flow-card strong {
    white-space: nowrap;
  }

  .spotlight-copy h3 {
    white-space: normal;
  }

  .section-copy h2 {
    white-space: nowrap;
    font-size: clamp(23px, 2.05vw, 30px);
  }

  .feature-card,
  .service-grid article,
  .timeline article {
    overflow: hidden;
  }
}

@media (max-width: 980px) {
  .section-head {
    max-width: 720px;
  }

  .hero-title,
  .section-head h2,
  .section-copy h2,
  .band-head h2,
  .cta h2,
  .experience-content h3,
  .spotlight-copy h3,
  .feature-card h3,
  .service-grid h3,
  .timeline h3,
  .footer h3,
  .flow-card strong {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  :root {
    --display-h1: clamp(30px, 9vw, 40px);
    --display-h2: clamp(23px, 7vw, 31px);
    --display-h3: clamp(17px, 5vw, 21px);
  }

  .hero-title,
  .section-head h2,
  .section-copy h2,
  .band-head h2,
  .cta h2 {
    line-height: 1.32;
  }
}

/* Refined about and results sections */
.intro {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.about-split {
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  gap: 44px;
  align-items: center;
}

.intro .section-copy {
  padding: 34px 0;
}

.intro .section-copy h2 {
  max-width: 720px;
  margin-bottom: 16px;
}

.intro .section-copy p {
  max-width: 660px;
}

.intro .about-cta-box {
  grid-template-columns: 1fr;
  max-width: 620px;
  margin-top: 30px;
  padding: 0;
  border-top: 0;
}

.intro .cta-item {
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(20,16,14,.09);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, rgba(240,200,75,.08));
  box-shadow: 0 14px 30px rgba(20,16,14,.06);
}

.intro .cta-item:hover {
  transform: translateX(-4px);
  border-color: rgba(240,200,75,.42);
}

.intro .cta-item span {
  font-size: 15px;
  font-weight: 800;
}

.intro .about-panel {
  min-height: 560px;
  border-radius: 8px;
  border: 1px solid rgba(240,200,75,.2);
  background: #11100f;
}

.intro .about-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,.04), rgba(5,5,5,.72)),
    linear-gradient(90deg, rgba(240,200,75,.18), transparent 45%);
  pointer-events: none;
}

.intro .about-panel img {
  filter: saturate(1.08) contrast(1.04) brightness(.9);
}

.intro .about-card {
  z-index: 2;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100% - 44px));
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.94);
}

.intro .about-badges {
  z-index: 2;
  left: 22px;
  top: 22px;
  bottom: auto;
}

.intro .badge {
  min-width: 132px;
  border-radius: 8px;
  background: rgba(5,5,5,.58);
  border-color: rgba(255,255,255,.16);
}

.about-stats {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(5,5,5,.95), rgba(17,16,15,.92)),
    url("https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1800&q=85") center / cover;
  color: var(--white);
}

.about-stats::before {
  display: none;
}

.stats-showcase {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: center;
}

.stats-copy h2 {
  margin: 14px 0 12px;
  color: var(--white);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.25;
}

.stats-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
}

.stats-note {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}

.stats-note [data-lucide],
.stats-note i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}

.stats-note span {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.7;
}

.about-stats .stats-highlight {
  margin: 0;
  gap: 14px;
  justify-items: stretch;
}

.about-stats .stat-card {
  width: 100%;
  min-height: 190px;
  place-items: start;
  align-content: end;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.09);
  color: var(--white);
  box-shadow: 0 24px 54px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

.about-stats .stat-card:hover {
  border-color: rgba(240,200,75,.54);
  background: rgba(240,200,75,.12);
}

.about-stats .stat-card strong {
  color: var(--gold);
  font-size: clamp(38px, 4vw, 58px);
}

.about-stats .stat-card span {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

@media (min-width: 981px) {
  .stats-copy h2 {
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .about-split,
  .stats-showcase {
    grid-template-columns: 1fr;
  }

  .intro .section-copy {
    padding: 0;
  }

  .intro .about-panel {
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  .intro .about-panel {
    min-height: 420px;
  }

  .intro .about-badges {
    right: 16px;
    left: 16px;
  }

  .intro .badge {
    min-width: 0;
    flex: 1;
  }

  .stats-showcase {
    gap: 26px;
  }

  .about-stats .stats-highlight {
    grid-template-columns: 1fr;
  }
}

/* Hero readability and image clarity */
.hero {
  align-items: end;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,5,5,.16), rgba(5,5,5,.56)),
    linear-gradient(90deg, rgba(240,200,75,.08), rgba(216,206,201,.03));
}

.hero-content {
  padding-top: 0;
  padding-bottom: 150px;
}

.hero-title {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.5vw, 48px);
  text-shadow: 0 6px 24px rgba(0,0,0,.42);
}

.hero-desc {
  max-width: 590px;
  font-size: clamp(14px, 1.25vw, 17px);
  color: rgba(255,255,255,.9);
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}

.hero-slide {
  filter: saturate(1.12) contrast(1.08) brightness(1.04);
}

@media (max-width: 640px) {
  .hero-content {
    padding-bottom: 132px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 36px);
  }
}

.menu-toggle {
  display: none !important;
}
