/* ═══════════════════════════════════════════════
   FUTURE PRIME CONSULTANCY — Main Stylesheet
═══════════════════════════════════════════════ */

:root {
  --blue:        #0e1a3a;
  --blue-dark:   #060d24;
  --blue-light:  #1a2a5e;
  --orange:      #F7941D;
  --orange-light:#ffad47;
  --gold:        #c9a84c;
  --gold-light:  #f0d080;
  --gold-dark:   #a0782a;
  --white:       #ffffff;
  --light:       #0f1535;
  --gray:        #9aa3b8;
  --dark:        #07102e;
  --card-bg:     #111d42;
  --card-bg-alt: #0d1838;
  --section-alt: #0a1430;
  --shadow:      0 20px 60px rgba(0,0,0,.4);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.12);
  --radius:      16px;
  --transition:  .4s cubic-bezier(.25,.8,.25,1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  touch-action: pan-y;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ─────────────────────────────── */
.cursor-dot, .cursor-ring { display: none; }

/* ── PRELOADER ─────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 99997;
  flex-direction: column; gap: 24px;
}
.preloader-logo {
  font-size: 3rem; font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.preloader-logo span { color: var(--gold); }
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 3px; overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ── NAVBAR ────────────────────────────────────── */
.navbar {
  position: sticky; top: 0;
  z-index: 1000;
  padding: 0;
  background: #060d24;
  border-bottom: 1px solid rgba(201,168,76,.15);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  border-bottom-color: rgba(201,168,76,.25);
}
.navbar.scrolled .nav-logo img { height: 78px; }
.nav-inner {
  max-width: 1260px; margin: auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 88px;
  padding: 2px 0;
  transition: height .3s;
}
.nav-logo span {
  font-size: 1.4rem; font-weight: 700;
  color: var(--blue);
}
.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.45);
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.mobile-nav {
  display: none; position: fixed;
  top: 0; right: -100%; width: 280px; height: 100vh;
  background: #0a1230; z-index: 9999;
  flex-direction: column; padding: 80px 32px 32px;
  gap: 24px; box-shadow: -10px 0 40px rgba(0,0,0,.5);
  border-left: 1px solid rgba(201,168,76,.2);
  transition: right .4s cubic-bezier(.25,.8,.25,1);
}
.mobile-nav.open { right: 0; display: flex; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
  cursor: pointer; transition: background .25s, transform .25s;
}
.mobile-nav-close:hover { background: var(--gold); color: var(--dark); transform: rotate(90deg); }
.mobile-nav a {
  font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,.8); padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,.12);
  transition: color .25s, padding-left .25s;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 6px; }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 9998;
}
.mobile-overlay.open { display: block; }

/* ── HERO ──────────────────────────────────────── */
.hero {
  height: 480px;
  min-height: unset;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  z-index: 1;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(10,25,60,1)    0%,
    rgba(10,25,60,.98)  25%,
    rgba(13,33,71,.88)  40%,
    rgba(13,33,71,.45)  55%,
    rgba(0,0,0,0)       68%
  );
}
#particles-canvas {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%;
  /* only animate on left 65% so particles don't obscure the person */
}
.hero-content {
  position: relative; z-index: 4;
  max-width: 580px;
  margin: 0;
  padding: 30px 0 30px 6%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold);
  padding: 8px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--gold);
  position: relative; display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: var(--gold);
  border-radius: 2px;
  animation: slideIn 1s .8s both;
}
@keyframes slideIn {
  from { width: 0; } to { width: 100%; }
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 15px 36px; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid rgba(201,168,76,.5);
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.1);
  transform: translateY(-3px);
}
.hero-visual {
  display: flex; align-items: stretch; justify-content: center;
  align-self: stretch;
  height: 768px;
}
.hero-card-stack { position: relative; width: 340px; height: 380px; }
.floating-card {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 24px;
  color: var(--white);
}
.floating-card.main {
  width: 280px; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,.15);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}
.floating-card.card2 {
  width: 160px; top: 10px; right: 0;
  animation: float 5s 1s ease-in-out infinite;
}
.floating-card.card3 {
  width: 150px; bottom: 20px; left: 0;
  animation: float 7s .5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50%      { transform: translate(-50%,-50%) translateY(-14px); }
}
.floating-card.card2, .floating-card.card3 {
  animation-name: floatSmall;
}
@keyframes floatSmall {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.fc-icon {
  font-size: 2rem; margin-bottom: 10px;
  color: var(--orange-light);
  width: 56px; height: 56px;
  background: rgba(255,255,255,.12);
  border-radius: 14px; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.fc-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.fc-sub { font-size: .75rem; opacity: .7; }
/* ── HERO SLIDER ───────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%; height: 100%;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .9s ease;
  border-radius: 24px; overflow: hidden;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* (slide card styles removed — now using full-screen bg images) */

.slider-prev, .slider-next {
  position: absolute; top: 50%; z-index: 5;
  transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-50%) scale(1.1);
  border-color: var(--gold);
}
.slider-dots {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer; transition: background .3s, transform .3s, width .3s;
  border: none;
}
.slider-dot.active {
  background: var(--gold);
  width: 28px; border-radius: 5px;
}

/* ── HERO SCROLL ───────────────────────────────── */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: rgba(255,255,255,.6); font-size: .75rem;
  z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4); border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute;
  width: 4px; height: 8px;
  background: var(--gold); border-radius: 2px;
  left: 50%; top: 6px; transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0%   { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ── CLIENTS TICKER ────────────────────────────── */
.clients-section {
  background: #ffffff;
  padding: 24px 0;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
.clients-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 72px; z-index: 2;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
}
.clients-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 48px; z-index: 2;
  background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
}
.clients-label {
  text-align: center;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 36px;
  position: relative;
}
.clients-label::before,
.clients-label::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: rgba(201,168,76,.3);
  vertical-align: middle; margin: 0 14px;
}
.ticker-track {
  display: flex; width: max-content;
}
.ticker-track:hover { }
.ticker-set {
  display: flex; align-items: center;
  gap: 72px; padding: 0 36px;
}
.client-logo {
  height: 44px; width: auto;
  opacity: .8;
  transition: opacity .35s, transform .35s;
  flex-shrink: 0;
  object-fit: contain;
}
.client-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STATS ─────────────────────────────────────── */
.stats-section {
  background: linear-gradient(180deg, var(--dark) 0%, #0d1c3e 100%);
  padding: 80px 24px;
}
.stats-grid {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center; padding: 40px 20px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #152040, #0e1a36);
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 4px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(201,168,76,.08);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transition: transform .4s;
}
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-num {
  font-size: 3rem; font-weight: 800;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--gold-light); }
.stat-label { font-size: .9rem; color: var(--gray); font-weight: 500; }

/* ── SECTION COMMON ────────────────────────────── */
.section { padding: 100px 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-weight: 700;
  font-size: .8rem; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 20px;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 1.05rem; color: var(--gray);
  line-height: 1.8; max-width: 560px;
}
.container { max-width: 1200px; margin: auto; }

/* ── SERVICES ──────────────────────────────────── */
.services-section { background: linear-gradient(160deg, #0b1530 0%, #0e1c3a 50%, #0b1530 100%); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 60px;
}
.service-card {
  background: linear-gradient(145deg, #162044, #0f1a38);
  border-radius: 20px; padding: 40px 32px;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 4px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: ''; position: absolute;
  inset: 0; background: linear-gradient(135deg, rgba(201,168,76,.12) 0%, rgba(160,120,42,.08) 100%);
  opacity: 0; transition: opacity .35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 40px rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.5);
}
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; color: var(--dark);
  margin-bottom: 24px; transition: transform .35s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem; color: var(--gray);
  line-height: 1.7;
}
.service-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: .85rem; font-weight: 600;
  margin-top: 20px; transition: gap .25s;
}
.service-card:hover .service-arrow { gap: 10px; }

/* ── ABOUT ─────────────────────────────────────── */
.about-section { background: radial-gradient(ellipse 80% 60% at 30% 50%, #142040 0%, #07102e 60%); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
  background: transparent;
}
.about-student-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 20px 20px 0 0;
}
.about-img-frame {
  position: relative;
  width: 80%;
  max-width: 340px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 68% 78% at 50% 44%, transparent 52%, var(--dark) 82%),
    linear-gradient(to bottom, var(--dark) 0%, transparent 8%, transparent 80%, var(--dark) 100%);
  pointer-events: none;
  z-index: 2;
}
.about-float-card {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: rgba(6,9,31,.92);
  border: 1px solid rgba(201,168,76,.3);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.afc-row { display: flex; align-items: center; gap: 10px; }
.afc-num { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.afc-label { font-size: .78rem; color: var(--gray); }
.about-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(201,168,76,.35);
  font-weight: 700;
  z-index: 2;
  text-align: center;
}
.about-badge .yrs { font-size: 1.8rem; line-height: 1; }
.about-badge .yrs-label { font-size: .72rem; opacity: .9; white-space: nowrap; }
.about-graphic {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #060d24 0%, #0e1a3a 50%, #1a2a5e 100%);
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 24px; position: relative; overflow: hidden;
}
.about-graphic-inner { text-align: center; color: var(--white); z-index: 1; }
.about-graphic-inner .big-text {
  font-size: 6rem; font-weight: 900; opacity: .08;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap; letter-spacing: -4px;
}
.about-badge-box {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; padding: 40px;
}
.ab-item {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px; padding: 24px;
  text-align: center;
  transition: transform .3s, background .3s;
}
.ab-item:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,.25);
}
.ab-item .ab-num {
  font-size: 2rem; font-weight: 800;
  color: var(--orange-light);
}
.ab-item .ab-text { font-size: .75rem; color: rgba(255,255,255,.8); margin-top: 4px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border-radius: 20px; padding: 20px 28px;
  box-shadow: 0 12px 40px rgba(201,168,76,.35);
  font-weight: 700;
}
.about-badge .yrs { font-size: 2.5rem; line-height: 1; }
.about-badge .yrs-label { font-size: .8rem; opacity: .9; }
.about-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.about-list-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.ali-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(201,168,76,.15);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: .9rem;
}
.ali-text { font-size: .95rem; color: var(--gray); line-height: 1.6; }
.ali-text strong { color: var(--white); display: block; margin-bottom: 2px; }

/* ── PROCESS ───────────────────────────────────── */
.process-section { background: linear-gradient(160deg, #0e1c3a 0%, #07102e 50%, #0e1c3a 100%); padding: 100px 24px; }
.process-section .section-title { color: var(--white); }
.process-section .section-label { margin-bottom: 16px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.process-grid::after {
  content: ''; position: absolute;
  top: 48px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 0;
}
.process-step {
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}
.step-num {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(145deg, #162044, #0e1a36);
  border: 3px solid rgba(201,168,76,.5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2rem; font-weight: 800;
  color: var(--gold); transition: transform .3s, border-color .3s, background .3s;
  position: relative;
}
.process-step:hover .step-num {
  transform: scale(1.12);
  border-color: var(--gold);
  background: rgba(201,168,76,.15);
}
.process-step h4 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.process-step p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── TESTIMONIALS ──────────────────────────────── */
/* SUCCESS STORIES SLIDER */
.success-stories-section {
  background: linear-gradient(160deg, #0b1530 0%, #0e1c3a 50%, #0b1530 100%);
  padding: 80px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
.stories-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
.stories-grid-wrap::before,
.stories-grid-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.stories-grid-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}
.stories-grid-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
}
.stories-row {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.stories-track-row {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.story-slide {
  flex-shrink: 0;
  width: 160px;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  transition: transform .3s, box-shadow .3s;
}
.story-slide:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 40px rgba(201,168,76,.25);
  z-index: 2;
  position: relative;
}
.story-slide img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .story-slide { width: 120px; }
  .stories-grid-wrap { gap: 10px; }
}

/* LIGHTBOX */
#storyLightbox { display:none; position:fixed; inset:0; z-index:9999; align-items:center; justify-content:center; }
#storyLightbox.active { display:flex; }
.lb-overlay { position:absolute; inset:0; background:rgba(0,0,0,.85); backdrop-filter:blur(4px); }
.lb-box { position:relative; z-index:1; max-width:90vw; max-height:90vh; }
.lb-img { display:block; max-width:90vw; max-height:85vh; border-radius:16px; box-shadow:0 24px 80px rgba(0,0,0,.7); object-fit:contain; }
.lb-close {
  position:absolute; top:-14px; right:-14px;
  width:36px; height:36px; border-radius:50%;
  background:var(--gold); color:var(--dark);
  border:none; font-size:1.3rem; font-weight:700;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.4);
}

.testimonials-section { background: radial-gradient(ellipse 100% 80% at 50% 0%, #142040 0%, #07102e 70%); padding: 100px 24px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 60px;
}
.testi-card {
  background: linear-gradient(145deg, #162044, #0f1a38);
  border-radius: 20px; padding: 36px;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 4px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.4); border-color: rgba(201,168,76,.35); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-text {
  font-size: .95rem; color: var(--gray); line-height: 1.8;
  margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--dark); font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .95rem; color: var(--white); }
.testi-role { font-size: .8rem; color: var(--gray); }

/* ── CTA BANNER ────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #04071a, #0a1230);
  padding: 100px 24px; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.cta-section::before {
  content: '';
  position: absolute; width: 600px; height: 600px;
  background: rgba(201,168,76,.06); border-radius: 50%;
  top: -200px; right: -200px;
}
.cta-section::after {
  content: '';
  position: absolute; width: 400px; height: 400px;
  background: rgba(201,168,76,.04); border-radius: 50%;
  bottom: -150px; left: -100px;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: auto; }
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); margin-bottom: 16px;
}
.cta-inner h2 span { color: var(--gold); }
.cta-inner p {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  margin-bottom: 40px; line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: #04071a; color: var(--white); padding: 80px 24px 32px;
  border-top: 1px solid rgba(201,168,76,.15);
}
.footer-grid {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand p {
  font-size: .9rem; color: rgba(255,255,255,.55);
  line-height: 1.8; margin: 16px 0 24px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: background .3s, transform .3s;
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold); color: var(--dark);
  transform: translateY(-4px);
}
.footer-col h4 {
  font-size: .95rem; font-weight: 700;
  margin-bottom: 20px; color: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem; color: rgba(255,255,255,.5);
  transition: color .25s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-logo-text {
  font-size: 1.3rem; font-weight: 800;
  color: var(--white);
}
.footer-logo-text span { color: var(--gold); }

/* ── PAGE HERO (inner pages) ───────────────────── */
.page-hero {
  background: linear-gradient(135deg, #04071a, #0a1230);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 120px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; 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");
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  color: var(--white); position: relative; z-index: 1;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,.7);
  margin-top: 12px; position: relative; z-index: 1;
}
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  align-items: center; margin-top: 16px;
  font-size: .85rem; color: rgba(255,255,255,.5);
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .4; }

/* ── TEAM ──────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 60px;
}
.team-card {
  background: #0a1535; border-radius: 20px;
  overflow: hidden; border: 1px solid rgba(201,168,76,.15);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  text-align: center;
}
.team-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,.4); border-color: rgba(201,168,76,.35); }
.team-img {
  height: 220px;
  background: linear-gradient(135deg, #060d24 0%, #0e1a3a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,.4);
  position: relative; overflow: hidden;
}
.team-img .initials {
  font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,.7); z-index: 1;
}
.team-info { padding: 28px; }
.team-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.team-info p { font-size: .85rem; color: var(--gold); font-weight: 600; margin: 6px 0 14px; }
.team-info .team-bio { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ── VALUES ────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 60px;
}
.value-card {
  padding: 36px; border-radius: 20px;
  border: 1px solid rgba(201,168,76,.15);
  background: #0a1535;
  transition: all .35s; position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(160,120,42,.08));
  opacity: 0; transition: opacity .35s;
}
.value-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-6px); }
.value-card:hover::before { opacity: 1; }
.value-card > * { position: relative; z-index: 1; }
.value-icon {
  font-size: 2rem; margin-bottom: 16px;
  color: var(--gold); transition: transform .35s;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
}
.value-card:hover .value-icon { transform: scale(1.2) rotate(-10deg); }
.value-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.value-card p {
  font-size: .9rem; color: var(--gray); line-height: 1.7;
}

/* ── CONTACT FORM ──────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.ci-card {
  display: flex; gap: 18px; padding: 24px;
  background: #0a1535; border-radius: 16px;
  border: 1px solid rgba(201,168,76,.15);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ci-card:hover { transform: translateX(6px); box-shadow: 0 10px 40px rgba(0,0,0,.3); border-color: rgba(201,168,76,.35); }
.ci-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; color: var(--dark);
}
.ci-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 4px; }
.ci-value { font-weight: 700; color: var(--white); font-size: .95rem; }
.contact-form {
  background: #0a1535; border-radius: 24px; padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3); border: 1px solid rgba(201,168,76,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid rgba(201,168,76,.15);
  border-radius: 12px; font-family: inherit; font-size: .9rem;
  color: var(--white); background: #060d24;
  transition: border-color .3s, background .3s;
  outline: none; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #0a1230;
}
.form-group textarea { height: 130px; }
.form-submit {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark); border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,.4);
}

/* ── REVEAL ANIMATIONS ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.visible {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-left.visible {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-right.visible {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* ── RESPONSIVE ────────────────────────────────── */

/* TABLET (≤1024px) */
@media (max-width: 1024px) {
  .hero-content  { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-visual   { display: flex; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid::after { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-badge   { right: 0; bottom: -16px; }
}

/* MOBILE (≤768px) */
@media (max-width: 768px) {
  /* Navbar */
  .navbar        { padding: 10px 0; }
  .navbar.scrolled { padding: 6px 0; }
  .nav-logo img  { height: 49px; }
  .navbar.scrolled .nav-logo img { height: 49px; }
  .nav-links     { display: none; }
  .hamburger     { display: flex; }

  /* Hero */
  .hero          { height: 480px; min-height: unset; }
  .hero-content  { padding: 20px 0 20px 4%; max-width: 55%; }
  .hero-title    { font-size: 1.45rem; line-height: 1.2; }
  .hero-sub      { font-size: .76rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-badge    { font-size: .6rem; padding: 5px 10px; white-space: nowrap; }
  .hero-btns     { flex-direction: column; gap: 8px; margin-top: 10px; }
  .btn-primary,
  .btn-outline   { width: fit-content; padding: 10px 16px; font-size: .78rem; }
  .slider-prev   { display: none; }
  .slider-next   { right: 6px; width: 32px; height: 32px; font-size: .75rem; }
  .hero-scroll   { display: none; }
  .hero-slide    { background-image: none !important; }
  .hero-overlay  { background: linear-gradient(135deg, rgba(6,13,36,.96) 0%, rgba(10,20,50,.85) 100%); }
  .hero-overlay  { background: linear-gradient(105deg, rgba(10,25,60,1) 0%, rgba(10,25,60,.98) 25%, rgba(13,33,71,.88) 40%, rgba(13,33,71,.45) 55%, rgba(0,0,0,0) 68%); }

  /* Stats */
  .stats-section { padding: 48px 16px; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card     { padding: 28px 16px; }
  .stat-num      { font-size: 2.2rem; }

  /* Section spacing */
  .section       { padding: 64px 20px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 28px 24px; }

  /* About */
  .about-grid    { gap: 32px; }
  .about-graphic { border-radius: 16px; }
  .about-badge   { position: static; margin-top: 16px; display: inline-block; border-radius: 14px; }
  .about-badge-box { grid-template-columns: repeat(2,1fr); padding: 24px; gap: 12px; }
  .about-list    { gap: 10px; }

  /* Process */
  .process-section { padding: 64px 20px; }
  .process-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step-num      { width: 72px; height: 72px; font-size: 1.5rem; }

  /* Testimonials */
  .testi-grid    { grid-template-columns: 1fr; }
  .testimonials-section { padding: 64px 20px; }

  /* CTA */
  .cta-section   { padding: 64px 20px; }
  .cta-btns      { flex-direction: column; align-items: center; gap: 12px; }
  .cta-btns .btn-primary,
  .cta-btns .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  /* Page hero */
  .page-hero     { padding: 120px 20px 60px; }
  .page-hero h1  { font-size: 2.4rem; }

  /* Team & Values */
  .team-grid     { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }

  /* Contact */
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 28px 20px; border-radius: 16px; }
  .ci-card       { padding: 18px 16px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  footer         { padding: 56px 20px 28px; }

  /* Clients ticker */
  .clients-section { padding: 40px 0; }
  .client-logo   { height: 32px; }
  .ticker-set    { gap: 48px; padding: 0 24px; }

  /* Section titles */
  .section-title { font-size: 1.8rem; }
}

/* SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
  .nav-logo img  { height: 64px; }
  .navbar.scrolled .nav-logo img { height: 52px; }

  .hero-title    { font-size: 1.9rem; }
  .hero-badge    { font-size: .72rem; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card     { padding: 22px 12px; }
  .stat-num      { font-size: 1.9rem; }

  .process-grid  { grid-template-columns: 1fr; }

  .section-title { font-size: 1.6rem; }
  .section-desc  { font-size: .9rem; }

  .contact-form  { padding: 20px 16px; }
  .form-submit   { padding: 15px; }

  .about-badge-box { padding: 16px; }
  .ab-item .ab-num { font-size: 1.6rem; }

  .mobile-nav    { width: 100%; }
  .cta-inner h2  { font-size: 1.7rem; }
}
