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

:root {
  --navy: #0B2454;
  --navy-md: #1B4F8C;
  --gold: #B8952A;
  --gold-lt: #D4AE4C;
  --gold-bg: #FDF6E7;
  --bg1: #FFFFFF;
  --bg2: #F0F5FF;
  --bg3: #EAF0FA;
  --dark: #0B2454;
  --mid: #4B5563;
  --light: #9CA3AF;
  --border: #DDE4F0;
  --shadow-xs: 0 2px 6px rgba(11,36,84,0.06);
  --shadow-sm: 0 4px 16px rgba(11,36,84,0.09);
  --shadow-md: 0 10px 36px rgba(11,36,84,0.13);
  --shadow-lg: 0 24px 64px rgba(11,36,84,0.17);
  --r: 12px;
  --rl: 20px;
  --ease: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--bg1); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--ease); background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  padding: 12px 0; box-shadow: 0 2px 24px rgba(11,36,84,0.1);
}
.navbar.scrolled .nav-links a { color: var(--mid); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--navy); }
.navbar.scrolled .logo-info .name { color: var(--navy); }
.navbar.scrolled .logo-info .tag { color: var(--gold); }
.navbar.scrolled .hamburger span { background: var(--navy); }
.nav-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 20px; color: #fff;
}
.logo-info span { display: block; }
.logo-info .name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; color: #fff; line-height: 1.1; }
.logo-info .tag { font-size: 10px; color: var(--gold-lt); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
  letter-spacing: 0.4px; transition: var(--ease); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 26px; border-radius: 8px; font-size: 14px;
  font-weight: 600; letter-spacing: 0.3px; border: none; cursor: pointer; transition: var(--ease);
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,149,42,0.4); }
.btn-outline-w { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,149,42,0.06); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-md); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 15px 36px; font-size: 15px; border-radius: 10px; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: 290px; height: 100vh;
  background: var(--bg1); flex-direction: column; padding: 80px 32px 40px;
  z-index: 999; transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(11,36,84,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block; color: var(--mid); font-size: 16px; font-weight: 500;
  padding: 15px 0; border-bottom: 1px solid var(--border); transition: var(--ease);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .btn-gold { margin-top: 28px; justify-content: center; }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
section { padding: 100px 0; }

/* ── SECTION LABELS ── */
.s-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; background: var(--gold-bg); border: 1px solid rgba(184,149,42,0.3);
  border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px); font-weight: 800;
  color: var(--navy); line-height: 1.18; margin-bottom: 18px;
}
.s-sub { font-size: 16px; color: var(--mid); line-height: 1.75; max-width: 580px; }
.s-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 64px; gap: 40px; }
.s-header-l { max-width: 560px; }

/* ── HERO (light split layout) ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(140deg, #EEF3FF 0%, #F8FAFF 40%, #EAF0FA 100%);
}
.hero-deco {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-deco .hd1 {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,149,42,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-deco .hd2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,79,140,0.08) 0%, transparent 70%);
  bottom: -150px; left: -100px;
}
.hero-deco .hd3 {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: rgba(184,149,42,0.06); right: 42%; top: 10%;
  animation: floatB 10s ease-in-out infinite;
}
#particles-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-body {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 36px; padding-top: 90px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px; background: var(--gold-bg); border: 1px solid rgba(184,149,42,0.3);
  border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 26px;
  animation: fadeDown 0.8s ease both;
}
.pulse-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 72px); font-weight: 800;
  color: var(--navy); line-height: 1.1; margin-bottom: 26px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.typing-wrap { display: block; min-height: 1.1em; }
.typing-cursor { display: inline-block; width: 3px; background: var(--gold); animation: blink 1s step-end infinite; margin-left: 3px; vertical-align: middle; }
.hero-desc {
  font-size: 17px; color: var(--mid); line-height: 1.8;
  max-width: 500px; margin-bottom: 38px; animation: fadeUp 0.8s ease 0.4s both;
}
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 56px; animation: fadeUp 0.8s ease 0.6s both; }
.watch-btn {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--mid); font-size: 14px; font-weight: 500; transition: var(--ease);
}
.watch-btn:hover { color: var(--gold); }
.play-circle {
  width: 46px; height: 46px; border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  color: var(--navy); background: var(--bg1); transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.watch-btn:hover .play-circle { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; gap: 40px; padding-top: 36px; border-top: 1px solid var(--border); animation: fadeUp 0.8s ease 0.8s both; }
.h-stat .num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 5px; }
.h-stat .num span { color: var(--gold); }
.h-stat .lbl { font-size: 12px; color: var(--light); text-transform: uppercase; letter-spacing: 1px; }
.hero-vline { width: 1px; height: 46px; background: var(--border); align-self: center; }

/* Hero right — image composition */
.hero-right { position: relative; animation: fadeIn 1s ease 0.5s both; }
.hero-img-main {
  width: 100%; height: 560px; object-fit: cover; object-position: center top;
  border-radius: var(--rl); box-shadow: var(--shadow-lg);
}
.hero-float-card {
  position: absolute; bottom: -24px; left: -30px;
  background: var(--bg1); border-radius: var(--r); padding: 22px 24px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 16px;
  min-width: 220px; border: 1px solid var(--border);
  animation: floatA 6s ease-in-out infinite;
}
.hfc-icon { width: 50px; height: 50px; background: var(--gold-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); flex-shrink: 0; }
.hfc-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; }
.hfc-lbl { font-size: 12px; color: var(--light); }
.hero-float-badge {
  position: absolute; top: -20px; right: -20px;
  background: var(--navy); color: #fff; border-radius: var(--r); padding: 18px 22px;
  box-shadow: var(--shadow-md); text-align: center; min-width: 120px;
  animation: floatC 8s ease-in-out infinite;
}
.hfb-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.hfb-lbl { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* ── CLIENTS BAR ── */
.clients-bar { padding: 36px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.clients-label { text-align: center; font-size: 12px; color: var(--light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.marquee-track { display: flex; gap: 80px; width: max-content; animation: marquee 30s linear infinite; }
.client-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--light); white-space: nowrap; opacity: 0.5; transition: var(--ease); }
.client-name:hover { opacity: 1; color: var(--navy); }

/* ── STATS (light) ── */
.stats-sec { padding: 80px 0; background: var(--bg2); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item {
  background: var(--bg1); border: 1px solid var(--border); border-radius: var(--rl);
  padding: 40px 32px; text-align: center; transition: var(--ease);
}
.stat-item:hover { border-color: rgba(184,149,42,0.4); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-icon {
  width: 60px; height: 60px; background: var(--gold-bg); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; color: var(--gold);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.stat-num sup { color: var(--gold); font-size: 28px; vertical-align: super; }
.stat-num .plus { color: var(--gold); }
.stat-label { font-size: 13px; color: var(--mid); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }

/* ── SERVICES GRID ── */
.services-sec { background: var(--bg1); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.svc-card {
  position: relative; overflow: hidden;
  background: var(--bg1); border: 1px solid var(--border); border-radius: var(--rl);
  padding: 40px 36px; transition: var(--ease); cursor: pointer;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover { border-color: rgba(184,149,42,0.3); box-shadow: var(--shadow-md); transform: translateY(-7px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Playfair Display', serif; font-size: 60px; font-weight: 800;
  color: var(--bg2); line-height: 1; transition: var(--ease);
}
.svc-card:hover .svc-num { color: rgba(184,149,42,0.07); }
.svc-icon {
  width: 62px; height: 62px; background: var(--bg2); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  color: var(--gold); margin-bottom: 24px; transition: var(--ease);
}
.svc-card:hover .svc-icon { background: var(--gold-bg); }
.svc-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.svc-desc { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 24px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gold); transition: var(--ease); }
.svc-link:hover { gap: 14px; }

/* ── WHY US ── */
.why-sec { background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-wrap { position: relative; }
.why-main { width: 100%; height: 520px; object-fit: cover; border-radius: var(--rl); box-shadow: var(--shadow-lg); }
.why-badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--navy); padding: 24px 28px; border-radius: var(--r); box-shadow: var(--shadow-md);
}
.why-badge .big { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.why-badge .sm { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; }
.why-accent {
  position: absolute; top: -28px; right: -28px;
  width: 160px; height: 160px; object-fit: cover;
  border-radius: var(--r); border: 5px solid var(--bg1); box-shadow: var(--shadow-md);
}
.why-list { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.wi-icon { width: 48px; height: 48px; background: var(--gold-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); flex-shrink: 0; }
.wi-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.wi-desc { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testi-sec { background: var(--bg1); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 60px; }
.testi-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--rl); padding: 36px; transition: var(--ease);
}
.testi-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testi-card:hover .qt, .testi-card:hover .tname { color: #fff; }
.testi-card:hover .trole, .testi-card:hover .qt { color: rgba(255,255,255,0.62); }
.q-mark { font-family: Georgia, serif; font-size: 52px; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.stars { display: flex; gap: 4px; margin-bottom: 14px; }
.stars i { color: var(--gold); font-size: 13px; }
.qt { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 26px; transition: var(--ease); }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.tname { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; transition: var(--ease); }
.trole { font-size: 12px; color: var(--light); transition: var(--ease); }

/* ── CTA (light, warm) ── */
.cta-sec {
  padding: 100px 0;
  background: linear-gradient(135deg, #FDF8EE 0%, #FFF9F0 50%, #FEF6E7 100%);
  position: relative; overflow: hidden; text-align: center;
  border-top: 1px solid rgba(184,149,42,0.15);
}
.cta-sec::before {
  content: ''; position: absolute; border-radius: 50%; opacity: 0.3;
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(184,149,42,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-sec .s-title { color: var(--navy); }
.cta-sec .s-sub { color: var(--mid); margin: 0 auto 40px; }
.cta-btns { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: #070F1E; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }
.f-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; margin: 20px 0; max-width: 290px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 15px; transition: var(--ease);
}
.f-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,149,42,0.08); }
.f-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 22px; }
.f-links { display: flex; flex-direction: column; gap: 12px; }
.f-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: var(--ease); }
.f-links a:hover { color: var(--gold); padding-left: 6px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.fc-icon { width: 36px; height: 36px; background: rgba(184,149,42,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gold); flex-shrink: 0; }
.fc-text strong { display: block; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 2px; }
.fc-text span { font-size: 13px; color: rgba(255,255,255,0.42); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; }
.f-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.f-copy span { color: var(--gold); }
.f-legal { display: flex; gap: 24px; }
.f-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: var(--ease); }
.f-legal a:hover { color: var(--gold); }
.f-powered { font-size: 12px; color: rgba(255,255,255,0.25); margin: 0; }
.f-powered a { color: var(--gold); text-decoration: none; transition: var(--ease); }
.f-powered a:hover { color: #fff; }
.f-powered strong { font-weight: 700; letter-spacing: 0.03em; }

/* ── PAGE HERO ── */
.page-hero { padding: 160px 0 80px; position: relative; overflow: hidden; background: var(--bg2); }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184,149,42,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(27,79,140,0.08) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 13px; }
.breadcrumb a { color: var(--light); transition: var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--border); }
.breadcrumb strong { color: var(--gold); font-weight: 600; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(38px,5vw,62px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.page-hero-sub { font-size: 17px; color: var(--mid); max-width: 540px; line-height: 1.75; }

/* ── SERVICES FULL PAGE ── */
.svc-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.svc-full-card { border-radius: var(--rl); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--ease); border: 1px solid var(--border); background: var(--bg1); }
.svc-full-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(184,149,42,0.3); }
.svc-card-img { width: 100%; height: 200px; object-fit: cover; }
.svc-card-body { padding: 30px; }
.svc-card-body .svc-icon { width: 52px; height: 52px; font-size: 20px; margin-bottom: 18px; }
.svc-card-body .svc-name { font-size: 20px; margin-bottom: 10px; }
.svc-card-body .svc-desc { font-size: 14px; margin-bottom: 20px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag { padding: 4px 12px; background: var(--bg2); border-radius: 100px; font-size: 12px; color: var(--mid); font-weight: 500; }

/* Process */
.process-sec { background: var(--bg2); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 60px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: 14%; right: 14%; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, var(--border) 100%); }
.proc-step { text-align: center; padding: 0 20px; position: relative; }
.proc-num {
  width: 70px; height: 70px; border-radius: 50%; background: var(--bg1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--gold);
  border: 2px solid var(--gold); box-shadow: 0 0 0 7px rgba(184,149,42,0.08);
  transition: var(--ease); position: relative; z-index: 1;
}
.proc-step:hover .proc-num { background: var(--gold); color: #fff; box-shadow: 0 0 0 7px rgba(184,149,42,0.15); }
.proc-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.proc-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* Industries */
.ind-sec { background: var(--bg1); }
.ind-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; margin-top: 50px; }
.ind-card {
  text-align: center; padding: 32px 16px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--r); transition: var(--ease);
}
.ind-card:hover { border-color: rgba(184,149,42,0.4); background: var(--gold-bg); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.ind-icon { font-size: 30px; margin-bottom: 12px; color: var(--navy); }
.ind-card:hover .ind-icon { color: var(--gold); }
.ind-name { font-size: 12px; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.8px; }

/* ── ABOUT PAGE ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img-wrap { position: relative; }
.story-main { width: 100%; height: 500px; object-fit: cover; border-radius: var(--rl); box-shadow: var(--shadow-lg); }
.story-accent {
  position: absolute; top: -26px; right: -26px;
  width: 180px; height: 180px; object-fit: cover;
  border-radius: var(--r); border: 5px solid var(--bg1); box-shadow: var(--shadow-md);
}
.story-float {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--gold); color: #fff; padding: 22px 26px; border-radius: var(--r);
  box-shadow: var(--shadow-md); text-align: center;
}
.story-float .sf-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; line-height: 1; }
.story-float .sf-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-top: 4px; }

/* Mission/Vision */
.mv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.mv-card { padding: 40px; border-radius: var(--rl); transition: var(--ease); border: 1px solid var(--border); }
.mv-card:nth-child(1) { background: var(--navy); border-color: var(--navy); }
.mv-card:nth-child(2) { background: var(--gold-bg); border-color: rgba(184,149,42,0.3); }
.mv-card:nth-child(3) { background: var(--bg2); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-icon { font-size: 36px; margin-bottom: 20px; }
.mv-card:nth-child(1) .mv-icon, .mv-card:nth-child(1) .mv-title { color: #fff; }
.mv-card:nth-child(1) .mv-text { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.75; }
.mv-card:nth-child(2) .mv-icon { color: var(--gold); }
.mv-card:nth-child(2) .mv-title, .mv-card:nth-child(3) .mv-title { color: var(--navy); }
.mv-card:nth-child(2) .mv-text, .mv-card:nth-child(3) .mv-text { color: var(--mid); font-size: 15px; line-height: 1.75; }
.mv-card:nth-child(3) .mv-icon { color: var(--navy-md); }
.mv-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; }

/* Team */
.team-sec { background: var(--bg2); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 60px; }
.team-card { border-radius: var(--rl); overflow: hidden; background: var(--bg1); border: 1px solid var(--border); transition: var(--ease); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(184,149,42,0.3); }
.team-img-wrap { overflow: hidden; }
.team-img { width: 100%; height: 280px; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.team-card:hover .team-img { transform: scale(1.05); }
.team-body { padding: 24px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.team-social { display: flex; gap: 8px; }
.team-social a { width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--mid); transition: var(--ease); }
.team-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }

/* Values */
.vals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.val-card { padding: 36px; background: var(--bg2); border-radius: var(--rl); border: 1px solid var(--border); transition: var(--ease); }
.val-card:hover { border-color: rgba(184,149,42,0.35); background: var(--bg1); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.val-icon { font-size: 32px; color: var(--gold); margin-bottom: 16px; }
.val-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.val-text { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* Timeline */
.tl-sec { background: var(--bg1); }
.timeline { position: relative; margin-top: 60px; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.tl-item { display: flex; align-items: flex-start; gap: 60px; margin-bottom: 50px; position: relative; }
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-year { flex: 0 0 calc(50% - 50px); text-align: right; font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; color: var(--border); line-height: 1; }
.tl-item:nth-child(even) .tl-year { text-align: left; }
.tl-dot { width: 20px; height: 20px; background: var(--gold); border-radius: 50%; border: 4px solid var(--bg1); box-shadow: 0 0 0 3px var(--gold); flex-shrink: 0; margin-top: 12px; position: relative; z-index: 1; }
.tl-content { flex: 0 0 calc(50% - 50px); padding-bottom: 10px; }
.tl-item:nth-child(even) .tl-content { text-align: right; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tl-text { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* Awards */
.awards-sec { background: var(--bg2); }
.awards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 50px; }
.award-card { background: var(--bg1); border: 1px solid var(--border); border-radius: var(--r); padding: 30px; text-align: center; transition: var(--ease); }
.award-card:hover { border-color: rgba(184,149,42,0.4); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.award-icon { font-size: 36px; color: var(--gold); margin-bottom: 14px; }
.award-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.award-year { font-size: 12px; color: var(--light); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-l.visible { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-r.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity:0; transform: translateY(-30px); } to { opacity:1; transform: none; } }
@keyframes fadeUp { from { opacity:0; transform: translateY(40px); } to { opacity:1; transform: none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
@keyframes pulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(0.7); opacity:0.4; } }
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes floatA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-12px,12px); } }
@keyframes floatB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(12px,-12px); } }
@keyframes floatC { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-8px,8px) rotate(6deg); } }

/* ── IMAGE STRIP ── */
.img-strip { padding: 0; overflow: hidden; }
.img-strip-row { display: flex; gap: 5px; height: 260px; }
.img-strip-item { flex: 1; overflow: hidden; position: relative; }
.img-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.img-strip-item:hover img { transform: scale(1.06); }
.img-strip-item .is-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,36,84,0.75) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 18px 20px; }
.img-strip-item .is-label { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── CASE STUDIES ── */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.case-card { border-radius: var(--rl); overflow: hidden; background: var(--bg1); border: 1px solid var(--border); transition: var(--ease); }
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(184,149,42,0.3); }
.case-img-wrap { overflow: hidden; }
.case-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.case-card:hover .case-img { transform: scale(1.05); }
.case-body { padding: 28px; }
.case-tag { display: inline-block; padding: 4px 12px; background: var(--gold-bg); border-radius: 100px; font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.case-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.case-desc { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.case-stats { display: flex; gap: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.cs-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; }
.cs-lbl { font-size: 11px; color: var(--light); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }

/* ── OFFICES GRID ── */
.offices-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.office-card { border-radius: var(--rl); overflow: hidden; position: relative; height: 320px; cursor: pointer; }
.office-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.office-card:hover .office-img { transform: scale(1.06); }
.office-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,36,84,0.88) 0%, rgba(11,36,84,0.15) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.office-city { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 5px; }
.office-role { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 8px; }
.office-addr { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ── INSIGHTS / BLOG ── */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.insight-card { border-radius: var(--rl); overflow: hidden; background: var(--bg1); border: 1px solid var(--border); transition: var(--ease); }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.insight-img-wrap { overflow: hidden; }
.insight-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.insight-card:hover .insight-img { transform: scale(1.04); }
.insight-body { padding: 26px; }
.insight-cat { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.insight-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.insight-excerpt { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.insight-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--light); border-top: 1px solid var(--border); padding-top: 14px; }
.insight-meta img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }

/* ── MOSAIC (Why Us upgrade) ── */
.mosaic-wrap { position: relative; padding-bottom: 30px; }
.mosaic-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-rows: 260px 260px; gap: 12px; }
.mosaic-a { grid-row: 1 / 3; }
.mosaic-item { border-radius: var(--r); overflow: hidden; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-badge-abs { position: absolute; bottom: 0; left: 20px; background: var(--navy); color: #fff; padding: 18px 24px; border-radius: var(--r); box-shadow: var(--shadow-md); }
.mosaic-badge-abs .big { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; color: var(--gold); line-height: 1; }
.mosaic-badge-abs .sm { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.mosaic-float { position: absolute; top: 20px; right: -20px; background: var(--gold-bg); border: 1px solid rgba(184,149,42,0.3); border-radius: var(--r); padding: 16px 20px; box-shadow: var(--shadow-sm); }
.mosaic-float .mf-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; }
.mosaic-float .mf-lbl { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* ── CULTURE GALLERY ── */
.culture-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 240px 240px; gap: 12px; margin-top: 50px; }
.culture-item { border-radius: var(--r); overflow: hidden; position: relative; }
.culture-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.culture-item:hover img { transform: scale(1.05); }
.culture-item.tall { grid-row: span 2; }
.culture-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(to top, rgba(11,36,84,0.75), transparent); opacity: 0; transition: opacity 0.3s ease; }
.culture-item:hover .culture-cap { opacity: 1; }
.culture-cap span { font-size: 13px; font-weight: 600; color: #fff; }

/* ── INDUSTRY IMAGE CARDS ── */
.ind-img-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
.ind-img-card { border-radius: var(--rl); overflow: hidden; position: relative; height: 210px; cursor: pointer; }
.ind-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.ind-img-card:hover img { transform: scale(1.06); }
.ind-img-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,36,84,0.85) 0%, rgba(11,36,84,0.3) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; transition: var(--ease); }
.ind-img-card:hover .ind-img-over { background: linear-gradient(to top, rgba(11,36,84,0.9) 0%, rgba(11,36,84,0.45) 55%, transparent 100%); }
.ind-img-icon { font-size: 24px; color: var(--gold); margin-bottom: 8px; }
.ind-img-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; }
.ind-img-sub { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── RESULTS / IMPACT ── */
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 60px; }
.impact-card { border-radius: var(--rl); overflow: hidden; background: var(--bg1); border: 1px solid var(--border); transition: var(--ease); }
.impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(184,149,42,0.3); }
.impact-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.impact-body { padding: 26px; }
.impact-client { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.impact-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.impact-desc { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.impact-metrics { display: flex; gap: 16px; padding: 14px; background: var(--bg2); border-radius: 10px; }
.im-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; }
.im-lbl { font-size: 10px; color: var(--light); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
@media(max-width:968px) {
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-links, .nav-right { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .svc-full-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .vals-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .s-header { flex-direction: column; gap: 20px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid, .offices-grid, .insights-grid, .ind-img-grid, .impact-grid { grid-template-columns: 1fr 1fr; }
  .culture-grid { grid-template-columns: 1fr 1fr; }
  .culture-item.tall { grid-row: span 1; }
  .img-strip-row { height: 200px; }
  .mosaic-grid { grid-template-rows: 200px 200px; }
}
@media(max-width:600px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }
  .services-grid, .svc-full-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .tl-item, .tl-item:nth-child(even) { flex-direction: column; gap: 16px; }
  .tl-year { font-size: 32px; text-align: left !important; }
  .tl-content { text-align: left !important; }
  .timeline::before { left: 22px; }
  .tl-dot { align-self: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .navbar.scrolled .hamburger span { background: var(--navy); }
  .cases-grid, .offices-grid, .insights-grid, .ind-img-grid, .impact-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .img-strip-row { flex-direction: column; height: auto; }
  .img-strip-item { height: 160px; }
  .mosaic-grid { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px; }
  .mosaic-a { grid-row: 1; }
}
