/* =====================================================================
   ALI RAZA — PREMIUM PORTFOLIO DESIGN SYSTEM
   Inspired by Apple · Stripe · Linear · Arc · Tesla
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --bg-0: #070d1f;
  --bg-1: #0b1430;
  --bg-2: #0f1c3d;
  --bg-3: #15244d;
  --surface: rgba(255,255,255,0.04);
  --surface-hi: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.09);
  --border-hi: rgba(255,255,255,0.18);

  --ink-0: #ffffff;
  --ink-1: #e7ecf7;
  --ink-2: #aeb6cf;
  --ink-3: #7c8499;
  --ink-4: #555c75;

  --gold-300: #93c5fd;
  --gold-400: #60a5fa;
  --gold-500: #3b82f6;
  --gold-600: #2563eb;

  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --cyan-400: #67e8f9;
  --cyan-500: #22d3ee;
  --pink-400: #f0abfc;
  --emerald-500: #34d399;

  --grad-aurora: radial-gradient(60% 60% at 20% 10%, rgba(139,92,246,0.30), transparent 60%),
                 radial-gradient(45% 45% at 85% 20%, rgba(34,211,238,0.22), transparent 60%),
                 radial-gradient(55% 55% at 50% 90%, rgba(37,99,235,0.18), transparent 60%);
  --grad-text: linear-gradient(135deg, #ffffff 0%, #bfdbfe 55%, #60a5fa 100%);
  --grad-accent: linear-gradient(135deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
  --grad-violet: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%);
  --grad-card: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));

  --shadow-soft: 0 1px 0 rgba(255,255,255,0.06) inset, 0 20px 40px -20px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 0 1px rgba(37,99,235,0.4), 0 14px 50px -10px rgba(37,99,235,0.45);
  --shadow-lift: 0 30px 60px -20px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.05) inset;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --pad: clamp(20px, 4vw, 40px);
  --section-y: clamp(80px, 10vw, 140px);
}

/* Light theme — ROYAL BLUE & WHITE (default) */
:root[data-theme="light"] {
  --bg-0: #f3f6fd;
  --bg-1: #ffffff;
  --bg-2: #eef3fc;
  --bg-3: #e1eaf8;
  --surface: rgba(37,99,235,0.05);
  --surface-hi: rgba(37,99,235,0.09);
  --border: rgba(15,33,71,0.12);
  --border-hi: rgba(37,99,235,0.30);
  --ink-0: #0b1c3f;
  --ink-1: #16244a;
  --ink-2: #45567a;
  --ink-3: #6a7896;
  --ink-4: #93a0bd;
  /* royal-blue accents tuned for contrast on white */
  --gold-300: #3b82f6;
  --gold-400: #2563eb;
  --gold-500: #1d4ed8;
  --gold-600: #1e40af;
  --grad-aurora: radial-gradient(60% 60% at 18% 8%, rgba(37,99,235,0.16), transparent 60%),
                 radial-gradient(45% 45% at 85% 18%, rgba(59,130,246,0.12), transparent 60%),
                 radial-gradient(55% 55% at 50% 92%, rgba(37,99,235,0.10), transparent 60%);
  --grad-text: linear-gradient(135deg, #0b1c3f 0%, #2563eb 100%);
  --grad-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --grad-card: linear-gradient(160deg, #ffffff, #f4f8ff);
  --shadow-soft: 0 1px 0 rgba(255,255,255,0.7) inset, 0 18px 40px -22px rgba(15,33,71,0.18);
  --shadow-lift: 0 30px 60px -22px rgba(15,33,71,0.20);
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-0);
  color: var(--ink-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
body.page-enter { opacity: 0; transform: translateY(8px); }
body.page-enter.page-enter-active { opacity: 1; transform: none; transition: opacity .35s var(--ease), transform .35s var(--ease); }
body.page-exit { opacity: 0; transform: translateY(-8px); transition: opacity .24s var(--ease), transform .24s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }

/* ---------- BACKGROUND AURORA ---------- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: var(--grad-aurora);
  z-index: -2;
  pointer-events: none;
  animation: drift 22s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.25), transparent 50%),
    radial-gradient(1px 1px at 34% 78%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(1px 1px at 78% 42%, rgba(255,255,255,0.22), transparent 50%),
    radial-gradient(1.5px 1.5px at 62% 12%, rgba(255,255,255,0.22), transparent 50%),
    radial-gradient(1px 1px at 92% 85%, rgba(255,255,255,0.18), transparent 50%);
  z-index: -1;
  pointer-events: none;
}
:root[data-theme="light"] body::after { opacity: 0; }
@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%,2%,0) scale(1.08); }
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(37,99,235,0.18), transparent 70%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 1;
  mix-blend-mode: screen;
  transition: opacity .4s var(--ease);
  will-change: transform;
}

/* ---------- TYPOGRAPHY ---------- */
.display, h1, h2 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: -0.01em; margin: 0; color: var(--ink-0); }
h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem; margin: 0; color: var(--ink-0); }
p { margin: 0 0 .8em; color: var(--ink-2); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-2); max-width: 64ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,99,235,0.14), rgba(139,92,246,0.10));
  border: 1px solid var(--border);
  color: var(--gold-400);
  backdrop-filter: blur(12px);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 12px var(--gold-400); }
.accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kbd {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  font-size: 12px;
  padding: 2px 8px;
  border: 1px solid var(--border-hi);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink-1);
}

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); position: relative; z-index: 1; }
.section { padding-block: var(--section-y); position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
  margin: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn .arrow { transition: transform .35s var(--ease-spring); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--grad-accent);
  color: #ffffff;
  box-shadow: 0 14px 30px -10px rgba(37,99,235,.55), 0 1px 0 rgba(255,255,255,.4) inset;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -10px rgba(37,99,235,.7), 0 1px 0 rgba(255,255,255,.5) inset; }
.btn-primary::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  z-index: -1;
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
  background: var(--surface);
  color: var(--ink-0);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(14px);
}
.btn-ghost:hover { background: var(--surface-hi); transform: translateY(-2px); border-color: rgba(37,99,235,.6); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  padding: 14px 0;
  background: color-mix(in oklab, var(--bg-0) 88%, transparent);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 75%, transparent);
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg-0) 94%, transparent);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  background: var(--grad-accent);
  color: #ffffff;
  display: grid; place-items: center;
  border-radius: 12px;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px -6px rgba(37,99,235,.5);
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--ink-0);
}
.brand-text span { color: var(--gold-400); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  position: relative;
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--ink-0); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-1);
  transition: all .25s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold-400); color: var(--gold-400); }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: block; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink-1); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 70px 16px auto 16px;
    flex-direction: column; gap: 4px;
    background: color-mix(in oklab, var(--bg-1) 90%, transparent);
    border: 1px solid var(--border);
    backdrop-filter: blur(24px);
    padding: 16px;
    border-radius: var(--r-lg);
    opacity: 0; pointer-events: none; transform: translateY(-12px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav.open .nav-links { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { padding: 12px 16px; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(120px, 18vh, 180px);
  padding-bottom: clamp(60px, 10vh, 120px);
  position: relative;
  overflow: clip;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,13,31,.55) 0%, rgba(7,13,31,.82) 70%, rgba(7,13,31,.9) 100%);
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}
/* Light (default): bright hero wash keeps the dark headline readable over the video */
:root[data-theme="light"] .hero-media::after {
  background: linear-gradient(180deg, rgba(243,246,253,.60) 0%, rgba(243,246,253,.86) 60%, rgba(243,246,253,.96) 100%);
}
:root[data-theme="light"] .hero-media video { opacity: .10; }
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  font-size: 13px; color: var(--ink-1); font-weight: 500;
  margin-bottom: 28px;
}
.hero-pill .pulse {
  position: relative; width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(52,211,153,.15);
}
.hero-pill .pulse::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 10px var(--emerald-500);
}
.hero-pill .pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--emerald-500);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hero h1 .word, .reveal-line .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotateX(-30deg);
  transform-origin: 50% 100%;
  animation: rise .9s var(--ease) forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}
.hero p.subhead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: 24px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.hero-trust-item .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; font-weight: 700;
}
.hero-trust-item .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-3); margin-top: 6px; font-weight: 600; }

.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  box-shadow: var(--shadow-lift);
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.2s var(--ease); }
.hero-portrait:hover img { transform: scale(1.12); }
.hero-portrait::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,13,31,.85) 100%);
}
.hero-portrait .ribbon {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 2; color: white;
}
.hero-portrait .ribbon .name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; line-height: 1.1; }
.hero-portrait .ribbon .role { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.7); margin-top: 6px; }
.hero-portrait .badge {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.hero-glow {
  position: absolute; inset: -10% -10% -10% -10%;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(37,99,235,0.25), transparent 70%);
  filter: blur(40px);
  animation: glow 6s ease-in-out infinite alternate;
}
@keyframes glow {
  0% { opacity: .55; transform: scale(.95); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-scroll {
  position: absolute; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .line { width: 1px; height: 36px; background: linear-gradient(180deg, var(--ink-3), transparent); animation: scrolldown 2s ease-in-out infinite; transform-origin: top; }
@keyframes scrolldown { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(.4); } }

/* ---------- MARQUEE / TRUSTED BY ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 40px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track { display: flex; gap: 60px; animation: scroll-x 40s linear infinite; width: max-content; }
.marquee-item { color: var(--ink-3); font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; white-space: nowrap; }
.marquee-item:hover { color: var(--gold-400); opacity: 1; }
.marquee-item .dot { color: var(--ink-4); margin-left: 60px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- ABOUT / TIMELINE ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-photo {
  position: sticky; top: 100px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-cards { display: grid; gap: 20px; margin-top: 32px; }
.about-card {
  padding: 22px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
}
.about-card .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-400); font-weight: 700; margin-bottom: 8px; }
.about-card p { color: var(--ink-2); margin: 0; }

.timeline { position: relative; margin-top: 48px; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--gold-400), var(--violet-500), transparent);
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-0);
  border: 2px solid var(--gold-400);
  box-shadow: 0 0 16px rgba(37,99,235,.6);
}
.timeline-item .year { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold-400); font-weight: 700; }
.timeline-item h4 { margin: 4px 0 6px; }
.timeline-item p { margin: 0; }

/* ---------- SERVICE / CAPABILITY CARDS ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

.svc-card, .capability-card {
  position: relative;
  padding: 28px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  isolation: isolate;
}
.svc-card::before, .capability-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx,50%) var(--my,50%), rgba(37,99,235,.18), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
  z-index: -1; pointer-events: none;
}
.svc-card:hover, .capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,.45);
  box-shadow: var(--shadow-lift);
}
.svc-card:hover::before, .capability-card:hover::before { opacity: 1; }
.svc-icon, .capability-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(139,92,246,.12));
  border: 1px solid var(--border-hi);
  color: var(--gold-400);
  margin-bottom: 18px;
  transition: transform .4s var(--ease-spring);
}
.svc-card:hover .svc-icon, .capability-card:hover .capability-icon { transform: rotate(-6deg) scale(1.05); }
.svc-card h3, .capability-card h3 { margin-bottom: 8px; }
.svc-card p, .capability-card p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 16px; }
.svc-card .meta { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-card .meta span {
  font-size: 11px; padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
  font-weight: 500;
}

/* Big feature row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 30px; direction: ltr; }
}

/* ---------- WORK / PORTFOLIO ---------- */
.work-grid.transitioning .work-card {
  pointer-events: none;
}
.work-card.is-leaving {
  opacity: 0;
  transform: translateY(10px) scale(.98);
  filter: blur(2px);
}
.work-card.is-entering {
  animation: workIn .45s var(--ease);
}
@keyframes workIn {
  from { opacity: 0; transform: translateY(16px) scale(.985); filter: blur(2px); }
  to { opacity: 1; transform: none; filter: none; }
}
.work-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  width: fit-content;
}
.work-filter {
  padding: 10px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.work-filter:hover { color: var(--ink-0); }
.work-filter.active {
  background: var(--grad-accent);
  color: #ffffff;
  box-shadow: 0 6px 16px -6px rgba(37,99,235,.6);
}

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.work-card {
  grid-column: span 4;
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
  isolation: isolate;
}
.work-card.feat { grid-column: span 6; }
@media (max-width: 980px) { .work-card, .work-card.feat { grid-column: span 6; } }
@media (max-width: 620px) { .work-card, .work-card.feat { grid-column: span 12; } }
.work-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.4); }
.work-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: #1a1f3a;
}
.work-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.08); }
.work-thumb .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(139,92,246,.18), rgba(34,211,238,.14));
}
.work-thumb .placeholder svg { width: 56px; height: 56px; color: var(--gold-400); opacity: .8; }
.work-body { padding: 20px; }
.work-tag {
  display: inline-block;
  font-size: 11px; padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.15);
  color: var(--gold-400);
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 10px;
}
.work-body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.work-body p { font-size: 13.5px; color: var(--ink-3); margin: 0 0 12px; }
.work-body .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-3);
}
.work-body .meta a { color: var(--gold-400); font-weight: 600; }
.work-body .meta a:hover { color: var(--gold-300); }

/* ---------- PROCESS ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grad-card);
  backdrop-filter: blur(12px);
}
.process-step { padding: 32px; border-right: 1px solid var(--border); position: relative; }
.process-step:last-child { border-right: none; }
.process-step .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 14px; margin: 0; }
@media (max-width: 980px) {
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 620px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}

/* ---------- TESTIMONIALS ---------- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .test-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  padding: 28px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.test-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.4); }
.test-card::before {
  content: '"';
  position: absolute; top: 14px; right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 1;
  color: var(--gold-500);
  opacity: .2;
}
.test-stars { color: var(--gold-400); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.test-card p { font-size: 14.5px; line-height: 1.7; color: var(--ink-1); margin: 0 0 20px; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.test-avatar {
  width: 44px; height: 44px;
  background: var(--grad-accent);
  color: #ffffff;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}
.test-author .name { font-weight: 600; color: var(--ink-0); font-size: 14px; }
.test-author .role { color: var(--ink-3); font-size: 12px; }

/* ---------- ANALYTICS / CHARTS ---------- */
.charts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 900px) { .charts-grid { grid-template-columns: 1fr; } }
.chart-card {
  padding: 24px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
}
.chart-card h3 { margin-bottom: 4px; }
.chart-card .sub { font-size: 13px; color: var(--ink-3); margin-bottom: 18px; }
.chart-wrap { position: relative; height: 240px; }

/* ---------- BOOKING ---------- */
.book-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: stretch; }
@media (max-width: 980px) { .book-grid { grid-template-columns: 1fr; } }
.book-info {
  padding: 36px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
}
.book-info ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.book-info ul li { display: flex; gap: 12px; align-items: start; color: var(--ink-1); }
.book-info ul li svg { flex: 0 0 22px; color: var(--gold-400); margin-top: 2px; }
.book-frame {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 480px;
  overflow: hidden;
  position: relative;
}
.book-frame iframe { width: 100%; height: 100%; border: 0; min-height: 480px; }
.book-frame .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 40px; text-align: center;
}
.book-frame .placeholder .icon {
  width: 64px; height: 64px; display: grid; place-items: center;
  background: var(--grad-accent); color: #ffffff;
  border-radius: 16px; margin-bottom: 20px;
  box-shadow: 0 14px 30px -10px rgba(37,99,235,.55);
}

/* ---------- PAYMENT ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .pay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pay-grid { grid-template-columns: 1fr; } }
.pay-card {
  padding: 24px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.pay-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.4); }
.pay-logo {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-weight: 800;
  font-size: 18px;
  color: white;
  margin-bottom: 14px;
}
.pay-logo.payoneer { background: linear-gradient(135deg, #ff4b59, #ff6b9d); }
.pay-logo.wise { background: linear-gradient(135deg, #9fe870, #163300); color: #163300; }
.pay-logo.jazzcash { background: linear-gradient(135deg, #c41e3a, #e7263b); }
.pay-logo.easypaisa { background: linear-gradient(135deg, #00b04f, #21c469); }
.pay-logo.stripe { background: linear-gradient(135deg, #635bff, #8884ff); }
.pay-logo.paypal { background: linear-gradient(135deg, #003087, #009cde); }
.pay-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.pay-card .pay-meta { font-size: 12.5px; color: var(--ink-3); margin-bottom: 14px; }
.pay-detail {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12.5px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink-1);
  margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.pay-detail button { color: var(--gold-400); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pay-detail button:hover { color: var(--gold-300); }
.pay-checkout {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-400); font-size: 13px; font-weight: 600;
  padding-top: 6px;
}
.pay-checkout:hover { color: var(--gold-300); }

.pay-note {
  margin-top: 28px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(139,92,246,.05));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 14px;
  color: var(--ink-2);
}
.pay-note strong { color: var(--ink-0); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-channels { display: grid; gap: 14px; margin: 28px 0; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  backdrop-filter: blur(14px);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.contact-channel:hover { transform: translateX(4px); border-color: rgba(37,99,235,.4); }
.contact-channel .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(139,92,246,.12));
  color: var(--gold-400);
  flex-shrink: 0;
}
.contact-channel .lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.contact-channel .val { font-size: 15px; color: var(--ink-0); font-weight: 600; }
.contact-channel .arrow-i { margin-left: auto; color: var(--ink-3); transition: transform .3s var(--ease), color .3s var(--ease); }
.contact-channel:hover .arrow-i { transform: translateX(3px); color: var(--gold-400); }

.contact-form {
  padding: 32px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form .sub { font-size: 13.5px; color: var(--ink-3); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-3); font-weight: 700; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink-0);
  font: inherit;
  font-size: 15px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-400);
  background: var(--surface-hi);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--ink-3); margin-top: 14px; }

.map-frame {
  margin-top: 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(.4); }
:root[data-theme="light"] .map-frame iframe { filter: none; }

/* ---------- FOOTER ---------- */
footer.site-footer {
  margin-top: 80px;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; color: var(--ink-2); max-width: 36ch; margin-top: 18px; }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-3); font-weight: 700; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; color: var(--ink-1); font-size: 14px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--ink-3);
  flex-wrap: wrap; gap: 10px;
}
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all .25s var(--ease);
}
.social a:hover { background: var(--grad-accent); color: #ffffff; transform: translateY(-2px); border-color: transparent; }

/* ---------- FLOATING ELEMENTS ---------- */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  width: 60px; height: 60px;
  background: #25d366;
  color: white;
  display: grid; place-items: center;
  border-radius: 50%;
  box-shadow: 0 14px 36px -8px rgba(37,211,102,.55);
  transition: transform .25s var(--ease);
}
.wa-fab:hover { transform: scale(1.08) rotate(6deg); }
.wa-fab::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid #25d366; opacity: .5;
  animation: pulseRing 2.4s ease-out infinite;
}

.scroll-top {
  position: fixed; right: 22px; bottom: 96px;
  z-index: 80;
  width: 44px; height: 44px;
  background: var(--surface-hi); color: var(--ink-0);
  border: 1px solid var(--border-hi); backdrop-filter: blur(14px);
  border-radius: 50%; display: grid; place-items: center;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.scroll-top.visible { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- TIMEZONE WATCH ---------- */
.tz-widget {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 79;
  min-width: 244px;
  border-radius: 16px;
  border: 1px solid var(--border-hi);
  background: color-mix(in oklab, var(--bg-1) 88%, transparent);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
  padding: 11px 14px 10px;
}
.tz-head {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 8px;
}
.tz-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 8px;
}
.tz-row + .tz-row { margin-top: 6px; }
.tz-flag { font-size: 12px; }
.tz-label {
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .35px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.tz-time,
.tz-visitor-time {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .35px;
  font-family: 'Inter', monospace;
}
.tz-time { color: var(--gold-400); }
.tz-visitor-time { color: #22d3ee; }
.tz-date {
  margin-top: 2px;
  margin-left: 20px;
  font-size: 10px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.tz-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}
.tz-diff {
  margin-top: 7px;
  text-align: center;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .4px;
}
@media (max-width: 620px) {
  .tz-widget { display: none; }
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7,13,31,.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-body {
  max-width: 520px; width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  padding: 32px;
  animation: pop .4s var(--ease-spring);
}
@keyframes pop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.modal-close { position: absolute; top: 18px; right: 18px; color: var(--ink-2); }
.modal h3 { margin-bottom: 6px; }
.modal .sub { color: var(--ink-3); font-size: 14px; margin-bottom: 22px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-portrait { max-width: 420px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 620px) {
  .hero-trust { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow { display: none; }
  .hero-media { display: none; }
}

/* ---------- UTILITIES ---------- */
.flex { display: flex; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.center { text-align: center; }
.hide-on-mobile { }
@media (max-width: 620px) { .hide-on-mobile { display: none !important; } }

/* ---------- WHY / VALUE ICON ---------- */
.value-card { text-align: left; }
.value-card .v-ico {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(37,99,235,.06));
  border: 1px solid var(--border-hi);
  color: var(--gold-400);
}

/* ---------- PROOF / RATING SUMMARY ---------- */
.proof-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(22px, 5vw, 60px);
  padding: 30px clamp(20px, 4vw, 44px);
  margin-bottom: 40px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  text-align: center;
}
.proof-stat .big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.proof-stat .lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-3); font-weight: 700; margin-top: 8px; }
.proof-stars { color: var(--gold-400); font-size: 20px; letter-spacing: 3px; }
.proof-div { width: 1px; align-self: stretch; background: var(--border); }
@media (max-width: 620px) { .proof-div { display: none; } }

/* ---------- FINAL CTA BAND ---------- */
.cta-band {
  text-align: center;
  padding: clamp(40px, 6vw, 76px);
  border-radius: var(--r-xl);
  background: var(--grad-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  position: relative; overflow: hidden; isolation: isolate;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: var(--grad-aurora); opacity: .7; z-index: -1; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 58ch; margin: 18px auto 30px; color: var(--ink-2); }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }
