*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:      #f8f7f4;
  --bg2:     #ffffff;
  --bg3:     #f0ede8;
  --border:  rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.13);
  --navy:    #0f2444;
  --navy2:   #1a3a6e;
  --navy3:   #0a1a33;
  --gold:    #c9922a;
  --gold2:   #e8b84b;
  --gold3:   #fef3c7;
  --text:    #1a1a2e;
  --muted:   rgba(15,36,68,0.45);
  --muted2:  rgba(15,36,68,0.7);
  --green:   #16a34a;
  --red:     #dc2626;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 4px; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ══════════ FLOATING PARTICLES ══════════ */
.particles-container { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; opacity: 0; animation: floatParticle linear infinite; }
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ══════════ CURSOR GLOW ══════════ */
.cursor-glow {
  position: fixed; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,42,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease, top 0.15s ease;
}

/* ══════════════════════════ NAVBAR ══════════════════════════ */
nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 32px); max-width: 1100px;
  background: rgba(248,247,244,0.92); backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(0,0,0,0.09); border-radius: 100px;
  padding: 8px 8px 8px 18px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  transition: all .4s cubic-bezier(0.4,0,0.2,1);
  animation: navSlideIn 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes navSlideIn {
  from { transform: translateX(-50%) translateY(-80px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
nav.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 16px;
  color: var(--navy); white-space: nowrap; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.nav-logo:hover { transform: scale(1.02); }
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15,36,68,.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-logo:hover .nav-logo-icon { transform: rotate(8deg) scale(1.1); box-shadow: 0 8px 24px rgba(15,36,68,.4); }
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  color: var(--muted2); font-size: 12.5px; font-weight: 600;
  padding: 7px 11px; border-radius: 100px;
  transition: all .25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--navy); background: rgba(15,36,68,.06); }
.nav-links a:hover::after { left: 18%; right: 18%; }
.nav-links a.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--navy), var(--navy2)) !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(15,36,68,.25);
}
.nav-links a.active::after { display: none; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--navy) !important; font-weight: 800 !important;
  padding: 9px 18px !important; border-radius: 100px !important; font-size: 12.5px !important;
  transition: all .3s cubic-bezier(0.4,0,0.2,1) !important;
  box-shadow: 0 4px 16px rgba(201,146,42,.3) !important; margin-left: 4px;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.04) !important; box-shadow: 0 8px 24px rgba(201,146,42,.4) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; outline: none; -webkit-tap-highlight-color: transparent; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: rgba(248,247,244,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; z-index: 999; opacity: 0; visibility: hidden; transform: translateY(-16px); transition: opacity .3s ease, transform .3s ease, visibility .3s ease; padding: 80px 24px 40px; overflow-y: auto; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 700; color: var(--navy); padding: 10px 40px; border-radius: 14px; transition: background .2s, color .2s; width: 100%; text-align: center; max-width: 320px; -webkit-tap-highlight-color: transparent; }
.mobile-menu a:hover, .mobile-menu a:active { background: rgba(15,36,68,.07); color: var(--gold); }
.mobile-menu .mobile-cta-btn { background: var(--navy); color: #fff !important; margin-top: 12px; border-radius: 100px !important; font-size: 17px !important; padding: 15px 40px !important; box-shadow: 0 8px 28px rgba(15,36,68,.25); }
.mobile-menu .mobile-cta-btn:hover, .mobile-menu .mobile-cta-btn:active { background: var(--navy2) !important; color: #fff !important; }
.mobile-divider { width: 40px; height: 1.5px; background: rgba(15,36,68,.12); border-radius: 2px; margin: 8px 0; }
.mobile-close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; cursor: pointer; color: var(--navy); background: rgba(15,36,68,.07); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 1001; transition: transform .25s, background .2s; -webkit-tap-highlight-color: transparent; }
.mobile-close:hover { transform: rotate(90deg); background: rgba(15,36,68,.13); }
body.menu-open { overflow: hidden; }

/* ══════════════════════════ SHARED ══════════════════════════ */
.section-wrap { padding: 88px 24px; max-width: 1100px; margin: 0 auto; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(15,36,68,.07); border: 1px solid rgba(15,36,68,.12); color: var(--navy); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 5px 13px; border-radius: 100px; margin-bottom: 16px; }
.section-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; letter-spacing: -1px; color: var(--navy); margin-bottom: 12px; line-height: 1.14; }
.section-title em { font-style: normal; background: linear-gradient(135deg, var(--gold), var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { font-size: 16px; color: var(--muted2); line-height: 1.72; max-width: 540px; }
.section-sub.center { margin: 0 auto; text-align: center; }
.section-header-center { text-align: center; margin-bottom: 52px; }
.btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy2)); color: #fff; padding: 14px 32px; border-radius: 100px; font-weight: 700; font-size: 15px; display: inline-block; transition: all .3s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 8px 28px rgba(15,36,68,.22); }
.btn-navy:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(15,36,68,.35); color:#fff; }
.btn-outline { background: var(--bg2); color: var(--navy); padding: 14px 32px; border-radius: 100px; font-weight: 600; font-size: 15px; display: inline-block; border: 1.5px solid var(--border2); transition: all .3s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.btn-outline:hover { background: var(--bg3); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); padding: 14px 32px; border-radius: 100px; font-weight: 800; font-size: 15px; display: inline-block; transition: all .3s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 8px 28px rgba(201,146,42,.3); }
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(201,146,42,.45); color: var(--navy); }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s cubic-bezier(0.4,0,0.2,1), transform .7s cubic-bezier(0.4,0,0.2,1); }
.reveal.up { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s cubic-bezier(0.4,0,0.2,1), transform .7s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.up { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s cubic-bezier(0.4,0,0.2,1), transform .7s cubic-bezier(0.4,0,0.2,1); }
.reveal-right.up { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity .7s cubic-bezier(0.4,0,0.2,1), transform .7s cubic-bezier(0.4,0,0.2,1); }
.reveal-scale.up { opacity: 1; transform: none; }

/* ══════════════════════════ HERO ══════════════════════════ */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 130px 24px 100px; position: relative; overflow: hidden; background: linear-gradient(160deg, #f8f7f4 0%, #edf2f9 55%, #f5f0e8 100%); }
#hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(15,36,68,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15,36,68,.04) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%); animation: gridFloat 20s ease-in-out infinite; }
@keyframes gridFloat { 0%,100% { background-position: 0 0; } 50% { background-position: 4px 4px; } }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(110px); animation: glowPulse 6s ease-in-out infinite; }
.hero-glow-1 { width: 500px; height: 500px; background: rgba(15,36,68,.07); top: -80px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hero-glow-2 { width: 350px; height: 350px; background: rgba(201,146,42,.09); bottom: 0; right: 10%; animation-delay: 2s; }
.hero-glow-3 { width: 300px; height: 300px; background: rgba(26,58,110,.06); bottom: 0; left: 10%; animation-delay: 4s; }
@keyframes glowPulse { 0%,100% { opacity:1; transform:scale(1) translateX(var(--tx,0)); } 50% { opacity:0.7; transform:scale(1.15) translateX(var(--tx,0)); } }
.hero-inner { position: relative; z-index: 2; max-width: 840px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,36,68,.07); border: 1px solid rgba(15,36,68,.13);
  color: var(--navy); font-size: 12px; font-weight: 700;
  padding: 6px 14px 6px 8px; border-radius: 100px; margin-bottom: 30px;
  letter-spacing: .4px;
  animation: heroFadeIn 1s 0.2s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-badge-pill { background: linear-gradient(135deg, var(--navy), var(--navy2)); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: .5px; text-transform: uppercase; }
h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 6.5vw, 76px); font-weight: 800;
  line-height: 1.06; letter-spacing: -2.5px;
  margin-bottom: 22px; color: var(--navy);
  animation: heroFadeIn 1s 0.4s cubic-bezier(0.4,0,0.2,1) both;
}
h1 em { font-style: normal; background: linear-gradient(135deg, var(--gold), var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@keyframes heroFadeIn { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
.hero-sub { font-size: 18px; color: var(--muted2); line-height: 1.72; margin-bottom: 38px; max-width: 520px; margin-left: auto; margin-right: auto; animation: heroFadeIn 1s 0.6s cubic-bezier(0.4,0,0.2,1) both; }
.hero-tagline { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(13px, 2vw, 18px); font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; animation: heroFadeIn 1s 0.3s cubic-bezier(0.4,0,0.2,1) both; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; animation: heroFadeIn 1s 0.8s cubic-bezier(0.4,0,0.2,1) both; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 12px; animation: heroFadeIn 1s 1s cubic-bezier(0.4,0,0.2,1) both; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted2); font-weight: 600; transition: transform 0.2s ease; }
.hero-trust-item:hover { transform: translateY(-2px); }
.hero-trust-item span { font-size: 16px; }
.hero-dashboard { background: var(--bg2); border-radius: 18px; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 32px 80px rgba(0,0,0,.11); overflow: hidden; max-width: 860px; margin: 0 auto; text-align: left; animation: heroFadeIn 1s 1.2s cubic-bezier(0.4,0,0.2,1) both; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.hero-dashboard:hover { transform: translateY(-8px); box-shadow: 0 48px 100px rgba(0,0,0,.16); }
.dash-topbar { background: var(--navy); padding: 13px 18px; display: flex; align-items: center; gap: 10px; }
.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-title-bar { font-size: 12px; color: rgba(255,255,255,.4); margin-left: 8px; font-weight: 600; letter-spacing: .5px; }
.dash-body { display: grid; grid-template-columns: 190px 1fr; min-height: 300px; }
.dash-sidebar { background: #f5f3ef; border-right: 1px solid rgba(0,0,0,.07); padding: 16px 0; }
.dash-sidebar-hd { display: flex; align-items: center; gap: 7px; padding: 0 14px 14px; border-bottom: 1px solid rgba(0,0,0,.07); margin-bottom: 10px; font-family: 'Bricolage Grotesque',sans-serif; font-weight: 800; font-size: 13px; color: var(--navy); }
.ds-icon { width: 22px; height: 22px; border-radius: 6px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--gold2); font-weight: 900; }
.dsn { display: flex; align-items: center; gap: 8px; padding: 8px 12px; font-size: 12px; font-weight: 600; color: rgba(15,36,68,.5); border-radius: 8px; margin: 0 6px; cursor: default; transition: all 0.2s; }
.dsn:hover { background: rgba(15,36,68,.06); color: var(--navy); }
.dsn.active { background: var(--navy); color: #fff; }
.dsn-ico { font-size: 13px; }
.dash-main { padding: 18px; background: #fafaf8; }
.dash-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.dstat { background: var(--bg2); border: 1px solid rgba(0,0,0,.07); border-radius: 10px; padding: 12px 14px; transition: transform 0.2s; }
.dstat:hover { transform: translateY(-2px); }
.dstat-lbl { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.dstat-num { font-family: 'Bricolage Grotesque',sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1; }
.dstat-chg { font-size: 10px; color: var(--green); font-weight: 700; margin-top: 3px; }
.dash-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dcard { background: var(--bg2); border: 1px solid rgba(0,0,0,.07); border-radius: 10px; padding: 12px 14px; }
.dcard-title { font-size: 10px; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.dli { display: flex; align-items: center; gap: 7px; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.dli:last-child { border: none; }
.dli-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dli-txt { font-size: 10px; color: var(--muted2); flex: 1; }
.dli-val { font-size: 10px; font-weight: 700; color: var(--navy); }
.dbar { height: 6px; background: #e8e6e1; border-radius: 3px; overflow: hidden; margin-top: 6px; }
.dbar-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--navy2)); border-radius: 3px; animation: barGrow 1.5s 1.5s cubic-bezier(0.4,0,0.2,1) both; transform-origin: left; }
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ══════════════════════════ MARQUEE ══════════════════════════ */

.marquee-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  align-items: center;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  border-right: 1px solid var(--border);
  transition: transform .3s ease;
}

.marquee-item:hover {
  transform: scale(1.08);
}

.marquee-item img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: all .35s ease;
}

.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
/* ══════════════════════════ STATS ══════════════════════════ */
#stats { background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 32px 24px; text-align: center; transition: all .35s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 2px 12px rgba(0,0,0,.04); position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy), var(--navy2)); opacity: 0; transition: opacity 0.35s; }
.stat-card:hover { border-color: rgba(15,36,68,.18); transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 56px rgba(15,36,68,.13); }
.stat-card:hover::before { opacity: 0.04; }
.stat-icon { font-size: 30px; margin-bottom: 12px; display: block; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.stat-card:hover .stat-icon { transform: scale(1.2) rotate(-5deg); }
.stat-num { font-family: 'Bricolage Grotesque',sans-serif; font-size: 46px; font-weight: 800; letter-spacing: -2px; background: linear-gradient(135deg, var(--navy), var(--navy2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; transition: transform 0.3s; }
.stat-card:hover .stat-num { transform: scale(1.05); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 7px; line-height: 1.5; }

/* ══════════════════════════ ABOUT ══════════════════════════ */
#about { background: var(--bg3); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-img-box { background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 100%); border-radius: 20px; aspect-ratio: 4/3.2; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 24px 64px rgba(15,36,68,.2); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.about-img-box:hover { transform: scale(1.02) rotate(1deg); box-shadow: 0 36px 80px rgba(15,36,68,.3); }
.about-img-box::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(201,146,42,.04) 0, rgba(201,146,42,.04) 1px, transparent 1px, transparent 28px); }
.about-svg-icon { width: 100px; height: 100px; position: relative; z-index: 1; }
.about-mono-sub { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.3); position: relative; z-index: 1; margin-top: 16px; }
.about-float-badge { position: absolute; bottom: -18px; right: -18px; background: linear-gradient(135deg, var(--gold), var(--gold2)); border-radius: 14px; padding: 18px 22px; text-align: center; box-shadow: 0 12px 36px rgba(201,146,42,.35); z-index: 2; animation: badgeBounce 3s ease-in-out infinite; }
@keyframes badgeBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.about-float-num { font-family: 'Bricolage Grotesque',sans-serif; font-size: 34px; font-weight: 900; color: var(--navy); line-height: 1; display: block; }
.about-float-lbl { font-size: 10px; font-weight: 700; color: rgba(15,36,68,.7); letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-top: 3px; }
.about-check-list { list-style: none; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; }
.about-check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: #444; line-height: 1.6; transition: transform 0.2s ease; }
.about-check-list li:hover { transform: translateX(4px); }
.check-ico { width: 22px; height: 22px; border-radius: 50%; background: rgba(15,36,68,.08); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 1px; font-weight: 900; transition: background 0.2s, transform 0.2s; }
.about-check-list li:hover .check-ico { background: var(--navy); color: #fff; transform: scale(1.1); }
.about-stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.about-stat-num { font-family: 'Bricolage Grotesque',sans-serif; font-size: 26px; font-weight: 900; color: var(--navy); line-height: 1; }
.about-stat-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════ SERVICES ══════════════════════════ */
#services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 30px 26px; transition: all .35s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(0.4,0,0.2,1); }
.svc-card:hover { border-color: rgba(15,36,68,.2); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(15,36,68,.12); background: var(--bg2); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 50px; height: 50px; border-radius: 13px; background: rgba(15,36,68,.07); border: 1px solid rgba(15,36,68,.1); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; transition: all .35s cubic-bezier(0.4,0,0.2,1); }
.svc-card:hover .svc-icon { background: var(--navy); transform: rotate(-8deg) scale(1.1); box-shadow: 0 8px 20px rgba(15,36,68,.25); }
.svc-card h3 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--muted2); line-height: 1.68; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--navy); transition: all .25s; }
.svc-link:hover { gap: 10px; color: var(--gold); }

/* ══════════════════════════ INDUSTRIES ══════════════════════════ */
#industries { background: var(--navy); position: relative; overflow: hidden; }
#industries::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 52px 52px; pointer-events: none; }
.industries-wrap { position: relative; z-index: 1; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.ind-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 28px 22px; text-align: center; transition: all .35s cubic-bezier(0.4,0,0.2,1); cursor: default; }
.ind-card:hover { background: rgba(255,255,255,.11); border-color: rgba(201,146,42,.5); transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 48px rgba(0,0,0,.25); }
.ind-icon { font-size: 36px; margin-bottom: 14px; display: block; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.ind-card:hover .ind-icon { transform: scale(1.25) rotate(-5deg); }
.ind-card h4 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ind-card p { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 1.65; }
.ind-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(201,146,42,.15); border: 1px solid rgba(201,146,42,.3); color: var(--gold2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 5px 13px; border-radius: 100px; margin-bottom: 16px; }

/* ══════════════════════════ PROCESS ══════════════════════════ */
#process { background: var(--bg3); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 35px; left: calc(12.5% + 8px); right: calc(12.5% + 8px); height: 2px; background: linear-gradient(90deg, var(--navy), var(--gold2)); z-index: 0; opacity: .25; }
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.process-num { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px; background: var(--bg2); border: 2.5px solid var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque',sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); box-shadow: 0 6px 24px rgba(15,36,68,.12); transition: all .4s cubic-bezier(0.4,0,0.2,1); }
.process-step:hover .process-num { background: var(--navy); color: #fff; transform: scale(1.15) rotate(5deg); box-shadow: 0 14px 36px rgba(15,36,68,.25); }
.process-step h4 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; transition: color 0.2s; }
.process-step:hover h4 { color: var(--gold); }
.process-step p { font-size: 13px; color: var(--muted2); line-height: 1.65; }

/* ══════════════════════════ FEATURES ══════════════════════════ */
#features { background: var(--bg); }
.features-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.fp-mock { background: var(--bg2); border-radius: 18px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.09); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.fp-mock:hover { transform: translateY(-6px); box-shadow: 0 36px 80px rgba(0,0,0,.14); }
.fp-head { background: var(--navy); padding: 14px 18px; display: flex; align-items: center; gap: 8px; }
.fp-dots-row { display: flex; gap: 5px; }
.fp-dot { width: 10px; height: 10px; border-radius: 50%; }
.fp-head-title { font-size: 11px; color: rgba(255,255,255,.35); margin-left: 8px; font-weight: 600; letter-spacing: .5px; }
.fp-body { padding: 18px; }
.fp-tabs { display: flex; gap: 6px; margin-bottom: 16px; }
.fp-tab { padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; cursor: default; transition: all 0.2s; }
.fp-tab.active { background: var(--navy); color: #fff; }
.fp-tab:not(.active) { background: rgba(15,36,68,.07); color: var(--muted2); }
.fp-tab:not(.active):hover { background: rgba(15,36,68,.13); }
.fp-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.05); transition: background 0.2s; border-radius: 8px; }
.fp-row:hover { background: rgba(15,36,68,.03); padding-left: 6px; }
.fp-row:last-child { border: none; }
.fp-av { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.fp-av.n { background: var(--navy); color: var(--gold2); }
.fp-av.g { background: rgba(201,146,42,.15); color: var(--gold); }
.fp-av.gr { background: rgba(22,163,74,.12); color: var(--green); }
.fp-av.b { background: rgba(37,99,235,.1); color: #2563eb; }
.fp-av.p { background: rgba(147,51,234,.1); color: #9333ea; }
.fp-info { flex: 1; }
.fp-name { font-size: 12px; font-weight: 700; color: var(--navy); }
.fp-detail { font-size: 10px; color: var(--muted); }
.fp-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }
.fp-badge.done    { background: rgba(22,163,74,.1); color: var(--green); }
.fp-badge.active  { background: rgba(37,99,235,.1); color: #2563eb; }
.fp-badge.pending { background: rgba(201,146,42,.12); color: var(--gold); }
.fp-badge.review  { background: rgba(15,36,68,.08); color: var(--navy); }
.features-list { display: flex; flex-direction: column; gap: 26px; }
.feat-item { display: flex; gap: 16px; transition: transform 0.3s ease; }
.feat-item:hover { transform: translateX(6px); }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: rgba(15,36,68,.07); border: 1px solid rgba(15,36,68,.1); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all .35s cubic-bezier(0.4,0,0.2,1); }
.feat-item:hover .feat-icon { background: var(--navy); transform: rotate(-8deg) scale(1.1); }
.feat-text h4 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.feat-text p { font-size: 14px; color: var(--muted2); line-height: 1.68; }

/* ══════════════════════════ CASE STUDIES — with popup ══════════════════════════ */
#case-studies { background: var(--bg2); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all .35s cubic-bezier(0.4,0,0.2,1); cursor: pointer; }
.case-card:hover { border-color: rgba(15,36,68,.2); transform: translateY(-8px) scale(1.01); box-shadow: 0 28px 64px rgba(15,36,68,.14); }
.case-header { padding: 28px 26px 20px; position: relative; }
.case-header.c1 { background: linear-gradient(135deg, #eef2f9, #dde6f5); }
.case-header.c2 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.case-header.c3 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.case-tag { display: inline-block; background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.case-client { font-family: 'Bricolage Grotesque',sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.case-scope { font-size: 13px; color: var(--muted2); }
.case-body { padding: 22px 26px; }
.case-result-row { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.case-metric { text-align: center; }
.case-metric-num { font-family: 'Bricolage Grotesque',sans-serif; font-size: 26px; font-weight: 900; color: var(--navy); line-height: 1; }
.case-metric-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }
.case-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 16px; }
.case-body p { font-size: 13.5px; color: var(--muted2); line-height: 1.65; }
.case-view-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--navy); background: rgba(15,36,68,.07); padding: 7px 16px; border-radius: 100px; transition: all 0.25s; }
.case-card:hover .case-view-btn { background: var(--navy); color: #fff; }

/* Case Study Modal */
.case-modal-overlay {
  position: fixed; inset: 0; background: rgba(10,20,40,0.75);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s;
}
.case-modal-overlay.open { opacity: 1; visibility: visible; }
.case-modal {
  background: var(--bg2); border-radius: 24px;
  max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  transform: scale(0.88) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.case-modal-overlay.open .case-modal { transform: scale(1) translateY(0); }
.case-modal-header { padding: 36px 36px 24px; position: relative; }
.case-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15,36,68,.08); border: 1.5px solid rgba(15,36,68,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--navy);
  transition: all 0.25s; font-weight: 700;
  line-height: 1;
}
.case-modal-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg) scale(1.1); border-color: var(--navy); }
.case-modal-body { padding: 0 36px 36px; }
.case-modal-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.case-modal-metric { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 18px; text-align: center; }
.case-modal-metric-num { font-family: 'Bricolage Grotesque',sans-serif; font-size: 30px; font-weight: 900; color: var(--navy); }
.case-modal-metric-lbl { font-size: 11px; color: var(--muted); margin-top: 4px; }
.case-modal-section h4 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; margin-top: 20px; }
.case-modal-section p { font-size: 14px; color: var(--muted2); line-height: 1.75; }
.case-modal-section ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.case-modal-section ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted2); line-height: 1.65; }
.case-modal-section ul li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.case-modal-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════ TEAM ══════════════════════════ */
#team { background: var(--bg3); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 28px 22px; text-align: center; transition: all .35s cubic-bezier(0.4,0,0.2,1); }
.team-card:hover { border-color: rgba(15,36,68,.2); transform: translateY(-8px); box-shadow: 0 24px 56px rgba(15,36,68,.12); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque',sans-serif; font-size: 26px; font-weight: 900; color: #fff; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.team-card:hover .team-avatar { transform: scale(1.1) rotate(5deg); }
.team-avatar.a { background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.team-avatar.b { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); }
.team-avatar.c { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.team-avatar.d { background: linear-gradient(135deg, var(--green), #15803d); }
.team-avatar.e { background: linear-gradient(135deg, #9333ea, #7c3aed); }
.team-avatar.f { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.team-avatar.g { background: linear-gradient(135deg, #0891b2, #0e7490); }
.team-avatar.h { background: linear-gradient(135deg, #d97706, #b45309); }
.team-name { font-family: 'Bricolage Grotesque',sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.team-bio { font-size: 12.5px; color: var(--muted2); line-height: 1.6; }
.team-socials { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.team-social { width: 30px; height: 30px; border-radius: 50%; background: rgba(15,36,68,.07); border: 1px solid rgba(15,36,68,.1); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--navy); transition: all .25s cubic-bezier(0.4,0,0.2,1); }
.team-social:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: scale(1.15) translateY(-2px); }

/* ══════════════════════════ WHY CHOOSE US ══════════════════════════ */
#why-us { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; padding: 20px; background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; transition: all .35s cubic-bezier(0.4,0,0.2,1); }
.why-item:hover { border-color: rgba(15,36,68,.2); box-shadow: 0 12px 36px rgba(15,36,68,.1); transform: translateX(8px); }
.why-num { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--navy), var(--navy2)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque',sans-serif; font-weight: 800; font-size: 16px; flex-shrink: 0; transition: transform 0.3s; }
.why-item:hover .why-num { transform: rotate(-8deg) scale(1.1); }
.why-text h4 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.why-text p { font-size: 13.5px; color: var(--muted2); line-height: 1.65; }
.why-visual { background: var(--navy); border-radius: 20px; padding: 40px 36px; box-shadow: 0 24px 64px rgba(15,36,68,.2); transition: transform 0.4s ease; }
.why-visual:hover { transform: scale(1.02); }
.why-visual h3 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.why-visual p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 28px; }
.why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat-box { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 20px; text-align: center; transition: all 0.3s; }
.why-stat-box:hover { background: rgba(255,255,255,.13); transform: scale(1.04); }
.why-stat-num { font-family: 'Bricolage Grotesque',sans-serif; font-size: 32px; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.why-stat-lbl { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 5px; }

/* ══════════════════════════ PRICING ══════════════════════════ */
#pricing { background: var(--bg3); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 24px; padding: 34px 28px; position: relative; overflow: hidden; transition: all .35s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.pricing-card.featured { background: var(--navy); border-color: var(--navy); box-shadow: 0 20px 60px rgba(15,36,68,.25); }
.pricing-card.featured:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 32px 80px rgba(15,36,68,.35); }
.pricing-card:not(.featured):hover { border-color: rgba(15,36,68,.2); transform: translateY(-6px); box-shadow: 0 20px 52px rgba(15,36,68,.1); }
.pricing-badge { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 14px; border-radius: 100px; margin-bottom: 18px; }
.pricing-plan { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.pricing-plan.lgt { color: rgba(255,255,255,.5); }
.pricing-price { font-family: 'Bricolage Grotesque',sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -2px; color: var(--navy); margin-bottom: 4px; }
.pricing-price.lgt { color: #fff; }
.pricing-price span { font-size: 17px; font-weight: 400; color: var(--muted); }
.pricing-price.lgt span { color: rgba(255,255,255,.4); }
.pricing-period { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.pricing-period.lgt { color: rgba(255,255,255,.4); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-divider.lgt { border-color: rgba(255,255,255,.12); }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pricing-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted2); }
.pricing-list li.lgt-li { color: rgba(255,255,255,.75); }
.pricing-list li::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; background: rgba(15,36,68,.08); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; }
.pricing-list li.lgt-li::before { background: rgba(255,255,255,.12); color: var(--gold2); }
.pricing-list li.off { color: rgba(15,36,68,.25); }
.pricing-list li.off::before { content: '✕'; background: rgba(0,0,0,.04); color: rgba(15,36,68,.2); }
.btn-plan { width: 100%; padding: 13px; border-radius: 100px; font-weight: 700; font-size: 14px; border: none; cursor: pointer; text-align: center; display: block; transition: all .3s cubic-bezier(0.4,0,0.2,1); }
.btn-plan.dark { background: var(--navy); color: #fff; box-shadow: 0 4px 16px rgba(15,36,68,.2); }
.btn-plan.dark:hover { opacity: .88; transform: translateY(-2px); color:#fff; box-shadow: 0 8px 24px rgba(15,36,68,.3); }
.btn-plan.gold-btn { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); }
.btn-plan.gold-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 28px rgba(201,146,42,.4); color: var(--navy); }
.btn-plan.ghost { background: transparent; border: 1.5px solid rgba(15,36,68,.18); color: var(--navy); }
.btn-plan.ghost:hover { background: rgba(15,36,68,.06); transform: translateY(-2px); }

/* ══════════════════════════ HIDE PRICING ══════════════════════════ */
#pricing { display: none !important; }

/* ══════════════════════════ TESTIMONIAL SLIDER ══════════════════════════ */
#testimonials { background: var(--bg); }

.testi-swiper-wrap { position: relative; padding-bottom: 48px; }

.testi-swiper { overflow: hidden; padding: 8px 4px 16px; }

.swiper-slide { height: auto; }

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  height: 100%;
  box-sizing: border-box;
  transition: border-color .35s cubic-bezier(0.4,0,0.2,1), box-shadow .35s cubic-bezier(0.4,0,0.2,1), transform .35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  cursor: grab;
}
.testi-card:active { cursor: grabbing; }
.testi-card:hover {
  border-color: rgba(15,36,68,.2);
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 20px 52px rgba(15,36,68,.11);
}
.testi-card:hover .testi-av { transform: scale(1.15) rotate(5deg); }

.testi-stars  { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text   { font-size: 14px; color: var(--muted2); line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av     { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; color: #fff; transition: transform 0.3s; }
.ta { background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.tb { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); }
.tc { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.td { background: linear-gradient(135deg, var(--green), #15803d); }
.te { background: linear-gradient(135deg, #9333ea, #7c3aed); }
.tf { background: linear-gradient(135deg, var(--red), #b91c1c); }
.testi-name { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 11px; color: var(--muted); }

/* Swiper pagination dots — match site style */
.testi-pagination { bottom: 0 !important; }
.testi-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(15,36,68,.18);
  opacity: 1;
  transition: all .3s cubic-bezier(0.4,0,0.2,1);
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--navy);
  width: 22px;
  border-radius: 4px;
}


/* ══════════════════════════ AWARDS ══════════════════════════ */
#awards { background: var(--bg2); }
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.award-card { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 28px 22px; text-align: center; transition: all .35s cubic-bezier(0.4,0,0.2,1); }
.award-card:hover { border-color: rgba(201,146,42,.5); transform: translateY(-6px); box-shadow: 0 18px 48px rgba(201,146,42,.13); }
.award-icon { font-size: 40px; margin-bottom: 14px; display: block; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.award-card:hover .award-icon { transform: scale(1.3) rotate(-10deg); }
.award-year { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.award-title { font-family: 'Bricolage Grotesque',sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.award-body { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════ FAQ — + / × toggle ══════════════════════════ */
#faq { background: var(--bg3); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .3s cubic-bezier(0.4,0,0.2,1); }
.faq-item:hover { border-color: rgba(15,36,68,.2); box-shadow: 0 4px 20px rgba(15,36,68,.07); }
.faq-item.open { border-color: rgba(15,36,68,.2); box-shadow: 0 6px 24px rgba(15,36,68,.1); }
.faq-question { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 12px; -webkit-tap-highlight-color: transparent; }
.faq-question h4 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.faq-chevron {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(15,36,68,.07); border: 1.5px solid rgba(15,36,68,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px; color: var(--navy);
  transition: all .35s cubic-bezier(0.4,0,0.2,1);
  font-weight: 400; line-height: 1; font-family: 'DM Sans', sans-serif;
}
.faq-item.open .faq-chevron {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
  transform: rotate(180deg) scale(1.05);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 20px 18px; font-size: 14px; color: var(--muted2); line-height: 1.72; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar-img { background: linear-gradient(145deg, var(--navy), var(--navy2)); border-radius: 20px; padding: 36px 30px; box-shadow: 0 20px 56px rgba(15,36,68,.2); }
.faq-sidebar-img h3 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 24px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.faq-sidebar-img p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.68; margin-bottom: 24px; }
.faq-contact-info { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.faq-contact-row { display: flex; align-items: center; gap: 12px; transition: transform 0.2s; }
.faq-contact-row:hover { transform: translateX(4px); }
.faq-ci { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.faq-cd { font-size: 13px; color: rgba(255,255,255,.55); }
.faq-cv { font-size: 14px; font-weight: 600; color: #fff; }

/* ══════════════════════════ BLOG ══════════════════════════ */
#blog { background: var(--bg2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all .35s cubic-bezier(0.4,0,0.2,1); }
.blog-card:hover { border-color: rgba(15,36,68,.2); transform: translateY(-7px); box-shadow: 0 24px 56px rgba(15,36,68,.12); }
.blog-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; overflow: hidden; transition: transform 0.4s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-img.c1 { background: linear-gradient(135deg, #eef2f9, #dde6f5); }
.blog-img.c2 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.blog-img.c3 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.blog-tag { position: absolute; top: 14px; left: 14px; background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; }
.blog-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-date { font-size: 11px; color: var(--muted); font-weight: 600; }
.blog-read { font-size: 11px; color: var(--muted); }
.blog-body h3 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.blog-body p { font-size: 13.5px; color: var(--muted2); line-height: 1.65; margin-bottom: 16px; }
.blog-link { font-size: 13px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; transition: all .25s; }
.blog-link:hover { gap: 10px; color: var(--gold); }

/* ══════════════════════════ CONTACT ══════════════════════════ */
#contact { background: var(--bg3); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail-row { display: flex; align-items: flex-start; gap: 14px; transition: transform 0.2s ease; }
.contact-detail-row:hover { transform: translateX(4px); }
.cd-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(15,36,68,.08); border: 1px solid rgba(15,36,68,.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: all 0.3s; }
.contact-detail-row:hover .cd-icon { background: var(--navy); }
.cd-text-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 3px; }
.cd-text-val { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-social { display: flex; gap: 10px; }
.cs-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(15,36,68,.07); border: 1px solid rgba(15,36,68,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--navy); transition: all .25s cubic-bezier(0.4,0,0.2,1); }
.cs-link:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: scale(1.15) translateY(-3px); }
.contact-form-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: 24px; padding: 36px; box-shadow: 0 8px 36px rgba(0,0,0,.07); }
.contact-form-wrap h3 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap .form-sub { font-size: 14px; color: var(--muted2); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .3px; }
.form-group label span { color: var(--gold); }
.form-control { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'DM Sans',sans-serif; font-size: 14px; color: var(--text); background: var(--bg); outline: none; transition: all .25s cubic-bezier(0.4,0,0.2,1); width: 100%; }
.form-control::placeholder { color: rgba(15,36,68,.3); }
.form-control:focus { border-color: var(--navy); background: var(--bg2); box-shadow: 0 0 0 4px rgba(15,36,68,.07); transform: translateY(-1px); }
.form-control.error { border-color: var(--red); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230f2444' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--navy); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-check label { font-size: 13px; color: var(--muted2); line-height: 1.55; cursor: pointer; }
.form-check label a { color: var(--navy); font-weight: 700; }
.form-submit { width: 100%; padding: 15px; border-radius: 100px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; background: linear-gradient(135deg, var(--navy), var(--navy2)); color: #fff; transition: all .35s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 8px 28px rgba(15,36,68,.25); font-family: 'DM Sans',sans-serif; }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15,36,68,.38); }
.form-error-msg { font-size: 11px; color: var(--red); font-weight: 600; margin-top: 2px; display: none; }
.form-error-msg.show { display: block; }

/* ══════════════════════════ CTA BANNER ══════════════════════════ */
.btn-ghost-wt { background: rgba(255,255,255,.09); color: #fff; padding: 14px 32px; border-radius: 100px; font-weight: 600; font-size: 15px; display: inline-block; border: 1.5px solid rgba(255,255,255,.18); transition: all .3s cubic-bezier(0.4,0,0.2,1); }
.btn-ghost-wt:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); transform: translateY(-3px); color:#fff; }
.cta-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(201,146,42,.15); border: 1px solid rgba(201,146,42,.3); color: var(--gold2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 5px 13px; border-radius: 100px; margin-bottom: 22px; }

/* ══════════════════════════ FOOTER ══════════════════════════ */
footer { background: #060f1a; border-top: 1px solid rgba(255,255,255,.06); padding: 60px 24px 30px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Bricolage Grotesque',sans-serif; font-weight: 800; font-size: 17px; color: #fff; margin-bottom: 14px; }
.footer-logo-icon { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 18px; height: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.3); line-height: 1.75; margin-bottom: 18px; }
.footer-social { display: flex; gap: 9px; }
.footer-soc { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,.4); transition: all .25s cubic-bezier(0.4,0,0.2,1); }
.footer-soc:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.15) translateY(-2px); }
.footer-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.32); transition: all .2s; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.22); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--gold2); }

/* ══════════════════════════ LEGAL MODAL ══════════════════════════ */
.legal-modal-overlay {
  position: fixed; inset: 0; background: rgba(10,20,40,0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 9001; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s;
}
.legal-modal-overlay.open { opacity: 1; visibility: visible; }
.legal-modal {
  background: var(--bg2); border-radius: 24px;
  max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  transform: scale(0.88) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.legal-modal-overlay.open .legal-modal { transform: scale(1) translateY(0); }
.legal-modal-header { position: sticky; top: 0; background: var(--bg2); padding: 28px 36px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; z-index: 10; }
.legal-modal-header h2 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.legal-modal-close { width: 38px; height: 38px; border-radius: 50%; background: rgba(15,36,68,.08); border: 1.5px solid rgba(15,36,68,.12); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; color: var(--navy); transition: all 0.25s; font-weight: 700; flex-shrink: 0; }
.legal-modal-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); border-color: var(--navy); }
.legal-modal-body { padding: 28px 36px 36px; }
.legal-modal-body h3 { font-family: 'Bricolage Grotesque',sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); margin: 22px 0 8px; }
.legal-modal-body h3:first-child { margin-top: 0; }
.legal-modal-body p { font-size: 14px; color: var(--muted2); line-height: 1.78; margin-bottom: 12px; }
.legal-modal-body ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.legal-modal-body ul li { font-size: 14px; color: var(--muted2); line-height: 1.65; padding-left: 18px; position: relative; }
.legal-modal-body ul li::before { content: '•'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.legal-effective { display: inline-block; font-size: 12px; color: var(--muted); background: rgba(15,36,68,.06); padding: 4px 12px; border-radius: 100px; margin-bottom: 20px; }

/* ══════════════════════════ SCROLL PROGRESS ══════════════════════════ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); z-index: 9999; width: 0%; transition: width 0.1s linear; border-radius: 0 3px 3px 0; }

/* ══════════════════════════ BACK TO TOP ══════════════════════════ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff; border: none; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(15,36,68,.3);
  opacity: 0; transform: translateY(20px);
  transition: all .35s cubic-bezier(0.4,0,0.2,1);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 14px 32px rgba(15,36,68,.4); }

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */

/* ── Large tablets / small desktops (≤1100px) ── */
@media (max-width: 1100px) {
  .section-wrap { padding: 72px 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-visual { padding: 28px 22px; }
}

/* ── Tablets (≤900px) ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Sections that stack to 1 column */
  .about-grid,
  .features-wrap,
  .faq-wrap,
  .contact-wrap,
  .why-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Hide decorative sidebars */
  .about-visual,
  .faq-sidebar { display: none; }

  /* 2-col grids */
  .services-grid,
  .blog-grid,
  .case-grid { grid-template-columns: repeat(2, 1fr); }

  /* Team: 2 × 2 auto layout */
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }

  /* Pricing stacks */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* Process: 2 × 2 */
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }

  /* Modal */
  .case-modal-metrics { grid-template-columns: 1fr 1fr; }

  /* Hero dashboard: scale down */
  .hero-dashboard { max-width: 100%; }
  .dash-body { grid-template-columns: 150px 1fr; }
  .dash-sidebar-hd { font-size: 11px; }
}

/* ── Mobile (≤680px) ── */
@media (max-width: 680px) {
  nav { width: calc(100% - 20px); padding: 7px 7px 7px 14px; }
  .nav-logo { font-size: 14px; }
  .nav-logo-icon { width: 30px; height: 30px; }

  .section-wrap { padding: 60px 16px; }

  h1 { letter-spacing: -1.5px; font-size: clamp(34px, 9vw, 52px); }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; max-width: 300px; text-align: center; }
  .hero-trust { gap: 12px; }
  .hero-trust-item { font-size: 12px; }

  /* Hide dashboard on small mobile */
  .hero-dashboard { display: none; }

  /* All content grids go single column */
  .services-grid,
  .blog-grid,
  .case-grid { grid-template-columns: 1fr; }

  /* Team: 2 columns on mobile, auto-fit with min 140px */
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .team-card { padding: 22px 16px; }
  .team-avatar { width: 64px; height: 64px; font-size: 20px; }
  .team-name { font-size: 14px; }
  .team-role { font-size: 11px; }
  .team-bio { font-size: 11.5px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .stat-num { font-size: 36px; }

  /* Industries 2-col */
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ind-card { padding: 20px 14px; }

  /* Awards 2-col */
  .awards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Process 1-col on small mobile */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-step { padding: 0; }

  /* Why us: make visual box smaller */
  .why-visual { padding: 28px 20px; }
  .why-stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-stat-num { font-size: 24px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; border-radius: 18px; }

  /* About stats row */
  .about-stats { gap: 18px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Modals */
  .case-modal-metrics { grid-template-columns: 1fr; }
  .case-modal-header,
  .case-modal-body,
  .legal-modal-body,
  .legal-modal-header { padding-left: 18px; padding-right: 18px; }

  /* Hero trust badges wrap nicely */
  .hero-trust { flex-direction: column; gap: 8px; }
}

/* ── Extra small (≤400px) ── */
@media (max-width: 400px) {
  .team-grid {
    grid-template-columns: 1fr !important;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .team-card { padding: 24px 20px; }
  .team-avatar { width: 72px; height: 72px; }

  .stats-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
  .industries-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }

  .hero-btns a { padding: 13px 22px; font-size: 14px; }
  .btn-navy, .btn-outline, .btn-gold { padding: 13px 24px; font-size: 14px; }
}