/* ============================================================
   TAHIR KALEEM NAZ PORTFOLIO — MASTER STYLESHEET
   Dark Navy | Glassmorphism | Electric Blue Accents
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --bg-primary:   #060818;
  --bg-secondary: #080D22;
  --bg-card:      #0D1235;
  --bg-glass:     rgba(255,255,255,0.04);
  --glass-border: rgba(79,195,247,0.12);
  --glass-blur:   blur(16px);

  --accent:         #4FC3F7;
  --accent-2:       #00D4FF;
  --accent-dim:     #0288D1;
  --accent-glow:    rgba(79,195,247,0.30);
  --accent-glow-lg: rgba(79,195,247,0.13);
  --accent-purple:  #7C3AED;

  --text-primary:   #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted:     #475569;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-glow:  0 0 30px var(--accent-glow);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.6);

  --transition:      0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: auto;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; cursor: pointer; }
ul { list-style: none; }
button { cursor: pointer; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 2px; }

/* ── Accent ──────────────────────────────────────────────── */
.accent { color: var(--accent); }

/* ════════════════════════════════════════════════════════════
   MOUSE SPOTLIGHT GLOW — soft faded blue light, no visible circle
════════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  /* Increased opacity — more visible ambient light */
  background: radial-gradient(
    circle,
    rgba(79, 195, 247, 0.22)  0%,
    rgba(79, 195, 247, 0.14)  20%,
    rgba(56, 140, 210, 0.08)  45%,
    rgba(79, 195, 247, 0.03)  70%,
    transparent               100%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  filter: blur(35px);
  mix-blend-mode: screen;
  transition: width 0.5s ease, height 0.5s ease, opacity 0.3s ease;
  will-change: left, top;
}

/* ── Cursor Dot — small dot that follows mouse ───────────── */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(79, 195, 247, 0.9);
  box-shadow: 0 0 8px rgba(79, 195, 247, 0.8), 0 0 16px rgba(79, 195, 247, 0.4);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  transition: width 0.25s ease, height 0.25s ease,
              background 0.25s ease, opacity 0.25s ease,
              box-shadow 0.25s ease;
  will-change: left, top;
}
/* Link-hover state — dot grows, fades, becomes a ring-like halo */
.cursor-dot.on-link {
  width: 36px; height: 36px;
  background: rgba(79, 195, 247, 0.12);
  box-shadow: 0 0 0 1.5px rgba(79, 195, 247, 0.55),
              0 0 20px rgba(79, 195, 247, 0.25);
  opacity: 0.85;
}


/* ── Particle Canvas ─────────────────────────────────────── */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS — Animated Glassmorphism
════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, rgba(79,195,247,0.18) 0%, rgba(0,212,255,0.12) 100%);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(79,195,247,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(79,195,247,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}
/* Shimmer sweep */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-primary:hover::before { left: 150%; }
/* Top border glow on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(79,195,247,0.28) 0%, rgba(0,212,255,0.2) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(79,195,247,0.35), 0 12px 30px rgba(79,195,247,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  color: #fff;
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-outline::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79,195,247,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-outline:hover::before { left: 150%; }
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  background: rgba(79,195,247,0.06);
  box-shadow: 0 0 24px rgba(79,195,247,0.2), inset 0 1px 0 rgba(79,195,247,0.1);
}

/* ── Section Shared ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  max-width: 500px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(6,8,24,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(79,195,247,0.04);
  transition: background 0.5s ease, backdrop-filter 0.5s ease,
              border-color 0.5s ease, box-shadow 0.5s ease;
}
.navbar.scrolled {
  background: rgba(6,8,24,0.55);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(79,195,247,0.12);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4), 0 0 1px rgba(79,195,247,0.1);
}
.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(79, 195, 247, 0.45);
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-logo:hover .nav-logo-circle {
  transform: scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.45);
}
.nav-logo:hover .nav-logo-name {
  color: var(--accent);
}
.nav-links { display: flex; gap: 32px; margin: 0 auto; }
.nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-social {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  border-radius: 50%;
  cursor: pointer;
}
.nav-social svg { width: 18px; height: 18px; }
.nav-social:hover { color: var(--accent); }
.nav-cta { font-size: 0.82rem; padding: 10px 20px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(6,8,24,0.95);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--glass-border);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-link {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
  cursor: pointer;
}
.mobile-link:hover { color: var(--accent); padding-left: 50px; }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* Deep navy → indigo gradient like reference image */
  background: linear-gradient(135deg, #060818 0%, #0A0D2E 35%, #0D1040 55%, #08122A 80%, #060818 100%);
}

/* ── Hero background gradient orbs ──────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,195,247,0.09) 0%, rgba(56,100,200,0.07) 40%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, rgba(79,195,247,0.05) 50%, transparent 70%);
  bottom: -100px; left: 5%;
  animation: orbFloat2 16s ease-in-out infinite;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: orbFloat1 20s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-20px, 25px) scale(1.08); }
}

/* ── Visible Blue Grid (center of hero, like reference image) */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,195,247,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,247,0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  z-index: 0;
  /* Fade grid on edges, keep center visible */
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 40%, transparent 100%);
          mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 40%, transparent 100%);
  animation: gridPulse 6s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Two-column layout */
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 32px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 40px;
}

/* ── Hero Left Info panel (like reference) ──────────────── */
.hero-left-info {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}
.hero-info-badge {
  background: rgba(79,195,247,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(79,195,247,0.2);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-info-badge .badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-info-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.hero-info-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}
.hero-info-email {
  background: rgba(79,195,247,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(79,195,247,0.15);
  border-radius: var(--radius-md);
  padding: 10px 16px;
}
.hero-info-email .email-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}
.hero-info-email a {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

/* ── Hero Content (Left) ─────────────────────────────────── */
.hero-content { padding-bottom: 40px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,195,247,0.07);
  border: 1px solid rgba(79,195,247,0.2);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  padding: 6px 16px;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.8s 0.3s both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,195,247,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(79,195,247,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  animation: fadeSlideUp 0.8s 0.4s both;
}
/* Name with blue → white gradient like reference image */
.hero-name {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #E0F7FA 40%, var(--accent) 80%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typing title row */
.hero-typing-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.8s 0.6s both;
  min-height: 38px;
}
.hero-typing-prefix {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
  margin-right: 7px;
}
.hero-typing-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-typing-cursor {
  display: inline-block;
  width: 2px; height: 1.1em;
  background: var(--accent);
  margin-left: 3px;
  border-radius: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s 0.7s both;
}

/* Metrics */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s 0.8s both;
}
.metric-item { text-align: center; }
.metric-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.metric-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(79,195,247,0.15);
}

/* CTA group */
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s 0.9s both;
}

/* Mini line chart */
.hero-chart-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp 0.8s 1s both;
}
.hero-line-chart { width: 140px; height: 36px; }
.chart-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 2s 1.5s ease forwards;
}
.chart-area { opacity: 0; animation: fadeIn 1s 2s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
.chart-label { font-size: 0.72rem; color: var(--text-muted); }

/* ── Right stats (like reference image right side) ───────── */
.hero-right-stats {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
  z-index: 5;
}
.hero-stat-item {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  display: block;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.hero-right-stats::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(79,195,247,0.25), transparent);
}

/* ── Hero Portrait (Right) — LARGE TALL IMAGE ────────────── */
.hero-portrait-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeSlideUp 0.8s 0.5s both;
  align-self: stretch;
  min-height: 580px;
}

/* Spinning arc rings */
.portrait-arc {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  pointer-events: none;
  z-index: 1;
  top: 50%; left: 50%;
}
.portrait-arc-1 {
  width: 500px; height: 500px;
  border-top-color: rgba(79,195,247,0.28);
  border-right-color: rgba(79,195,247,0.07);
  transform: translate(-50%, -50%);
  animation: spinArc 22s linear infinite;
}
.portrait-arc-2 {
  width: 390px; height: 390px;
  border-bottom-color: rgba(124,58,237,0.2);
  border-left-color: rgba(79,195,247,0.08);
  transform: translate(-50%, -50%);
  animation: spinArc 16s linear infinite reverse;
}
@keyframes spinArc {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Ambient glow below the image */
.portrait-glow {
  position: absolute;
  width: 75%; height: 55%;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at bottom, rgba(79,195,247,0.13) 0%, rgba(56,100,200,0.06) 40%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* Tall PNG — no circular crop */
.portrait-hero-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}
.portrait-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  mix-blend-mode: luminosity;
  filter: contrast(1.1) saturate(0.9) brightness(0.88);
  transition: filter 0.5s ease;
}
.portrait-hero-img-wrap:hover .portrait-hero-img {
  filter: contrast(1.12) saturate(1.1) brightness(0.98);
}

/* Blue glow at foot of image */
.portrait-frame-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(79,195,247,0.10), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Floating stat cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,14,42,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(79,195,247,0.22);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  z-index: 10;
  animation: floatCard 3s ease-in-out infinite;
  white-space: nowrap;
}
.float-card-1 { top: 16%;    left: -15px;  animation-delay: 0s;   }
.float-card-2 { bottom: 28%; left: -15px;  animation-delay: 1s;   }
.float-card-3 { top: 30%;    right: -15px; animation-delay: 0.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-card-icon { font-size: 1.2rem; }
.float-card-val {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.float-card-lbl { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  animation: fadeSlideUp 1s 1.5s both;
}
.scroll-indicator span { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── Entry Animations ────────────────────────────────────── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT / SUMMARY SECTION
══════════════════════════════════════════════════════════ */
.summary-section {
  padding: 100px 40px;
  position: relative;
  z-index: 2;
  background: var(--bg-secondary);
}
.summary-container {
  max-width: 1100px;
  margin: 0 auto;
}
.summary-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.summary-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.summary-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.summary-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.summary-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(79, 195, 247, 0.05);
  padding: 20px 20px 0 20px;
  border: 1px solid rgba(79,195,247,0.1);
  overflow: hidden;
}
.summary-image-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(79,195,247,0.15) 0%, transparent 70%);
  filter: blur(40px);
}
.summary-img {
  width: 100%;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
  z-index: 2;
  display: block;
}
.summary-details {
  display: flex;
  flex-direction: column;
}
.summary-subtitle {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
}
.summary-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.summary-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.s-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.s-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.s-value a {
  color: var(--accent);
  text-decoration: none;
}
.s-value a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════
   EXPERTISE SECTION
══════════════════════════════════════════════════════════ */
.expertise-section {
  padding: 100px 40px;
  position: relative;
  z-index: 2;
  background: var(--bg-secondary);
}
.expertise-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.expertise-preview { position: sticky; top: 100px; }
.preview-glass {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
}
.preview-glass:hover {
  border-color: rgba(79,195,247,0.32);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--accent-glow);
}
.preview-img { width: 100%; height: auto; display: block; aspect-ratio: 4/5; object-fit: contain; object-position: center bottom; }
.preview-overlay {
  display: flex;
  justify-content: space-around;
  padding: 14px;
  background: rgba(6,8,24,0.6);
}
.preview-stat { text-align: center; }
.ps-label { display: block; font-size: 0.7rem; color: var(--text-muted); }
.ps-val { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--accent); }

.expertise-accordions { display: flex; flex-direction: column; gap: 12px; }
.accord-item {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.accord-item:hover, .accord-item.active {
  border-color: rgba(79,195,247,0.35);
  box-shadow: 0 4px 20px rgba(79,195,247,0.1);
}
.accord-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}
.accord-header:hover { background: rgba(255,255,255,0.02); }
.accord-icon { font-size: 1.4rem; flex-shrink: 0; }
.accord-title-wrap { flex: 1; }
.accord-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.accord-sub { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }
.accord-arrow {
  width: 24px; height: 24px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s;
  flex-shrink: 0;
}
.accord-arrow svg { width: 20px; height: 20px; }
.accord-item.active .accord-arrow { transform: rotate(180deg); color: var(--accent); }
.accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
  padding: 0 24px;
}
.accord-item.active .accord-body { max-height: 300px; padding: 0 24px 24px; }
.accord-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.accord-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.72rem;
  color: var(--accent);
  background: rgba(79,195,247,0.1);
  border: 1px solid rgba(79,195,247,0.3);
  padding: 4px 10px;
  border-radius: var(--radius-xl);
}

/* ══════════════════════════════════════════════════════════
   VALUE STATEMENT SECTION
══════════════════════════════════════════════════════════ */
.value-section {
  padding: 100px 40px;
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
  border-top: 1px solid rgba(79,195,247,0.1);
  overflow: hidden;
}
.value-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 80% 50%, rgba(79,195,247,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.value-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.value-content { max-width: 520px; }
.value-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.value-title .accent { color: var(--accent); }
.value-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.value-desc strong { color: var(--text-primary); font-weight: 600; }
.value-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.value-card {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.value-card:hover {
  border-color: rgba(79,195,247,0.4);
  transform: translateY(-4px) translateX(6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 30px var(--accent-glow);
}
.vc-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.vc-lbl { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.vc-mini-chart { width: 100%; height: 30px; margin-top: 12px; }
.vc-icon { font-size: 1.8rem; margin-bottom: 8px; }
.vc-bar-wrap { width: 100%; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; margin-top: 14px; overflow: hidden; }
.vc-bar-fill { width: 100%; height: 100%; background: var(--accent); border-radius: 3px; box-shadow: 0 0 10px var(--accent); }

/* ══════════════════════════════════════════════════════════
   PROJECTS (FLIPPA FEATURE)
══════════════════════════════════════════════════════════ */
.flippa-feature-banner {
  max-width: 1100px;
  margin: 60px auto;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.flippa-feature-banner:hover {
  border-color: rgba(79,195,247,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--accent-glow);
}
.flippa-feature-img-wrap {
  width: 100%;
  position: relative;
  /* Make sure image is fully visible */
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flippa-feature-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.flippa-feature-banner:hover .flippa-feature-img { transform: scale(1.02); }

.flippa-feature-info {
  padding: 28px 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(79,195,247,0.12);
}
.flippa-feature-left { display: flex; flex-direction: column; gap: 8px; }
.flippa-badge-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.flippa-verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px;
  background: rgba(79,195,247,0.1);
  border: 1px solid rgba(79,195,247,0.35);
  color: var(--accent);
  border-radius: var(--radius-xl);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
}
.flippa-platform-tag {
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  border-radius: var(--radius-xl);
  font-size: 0.74rem; font-weight: 600;
}
.flippa-feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.flippa-feature-desc {
  font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.6; margin: 0;
  max-width: 480px;
}
.flippa-stats-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  flex-shrink: 0;
}
.flippa-stat { display: flex; flex-direction: column; gap: 3px; text-align: center; }
.flippa-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900; color: var(--accent); line-height: 1;
}
.flippa-stat-lbl { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; white-space: nowrap; }

/* ── Testimonial initials avatar (replaces fake photo) ───── */
.t-avatar-initial {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(79,195,247,0.1);
  border: 2px solid var(--init-color, var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--init-color, var(--accent));
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   STATS DASHBOARD
══════════════════════════════════════════════════════════ */

.stats-section {
  padding: 100px 40px;
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(79,195,247,0.08);
  border-bottom: 1px solid rgba(79,195,247,0.08);
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stats-center { position: relative; display: flex; align-items: center; justify-content: center; }
.stats-portrait {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: auto;
}
.stats-portrait::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  border-radius: 50%;
  box-shadow: 0 0 100px 50px rgba(79,195,247,0.15);
  background: radial-gradient(circle, rgba(79,195,247,0.2) 0%, transparent 70%);
  z-index: 0;
}
.stats-portrait img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.stats-grid { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
  margin: 8px 0;
}
.stat-box:hover {
  border-color: rgba(79,195,247,0.35);
  transform: scale(1.03);
  box-shadow: 0 0 30px var(--accent-glow);
}
.stat-icon { font-size: 1.6rem; margin-bottom: 10px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.stat-sub { font-size: 0.76rem; color: var(--text-muted); }
.stat-rating { display: flex; gap: 4px; font-size: 1.4rem; margin-bottom: 8px; }
.star { color: var(--text-muted); transition: color 0.3s, transform 0.3s; }
.star.lit { color: var(--accent); transform: scale(1.2); }

/* ══════════════════════════════════════════════════════════
   EXITS / PROJECTS SECTION
══════════════════════════════════════════════════════════ */
.exits-section {
  padding: 100px 40px;
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
}
.exits-grid {
  max-width: 1400px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.exit-card {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.exit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79,195,247,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px var(--accent-glow);
}
.exit-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.exit-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.exit-card:hover .exit-card-img { transform: scale(1.08); }
.exit-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, rgba(79,195,247,0.25), rgba(0,212,255,0.2));
  border: 1px solid rgba(79,195,247,0.5);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}
.exit-type-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-xl);
}
.exit-card-body { padding: 22px; }
.exit-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.exit-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 14px;
}
.exit-results { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.exit-results li { font-size: 0.86rem; color: var(--text-secondary); display: flex; gap: 8px; align-items: center; }
.check { color: var(--accent); font-weight: 700; }
.exit-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
}
.exit-platform { font-size: 0.75rem; color: var(--text-muted); }
.exit-time {
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(79,195,247,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(79,195,247,0.2);
}
.exits-total {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  background: rgba(79,195,247,0.04);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(79,195,247,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.exits-total-label { font-size: 0.97rem; color: var(--text-secondary); }
.exits-total-val {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--accent);
}
.exits-total-note { font-size: 0.82rem; color: var(--text-muted); }

/* Platforms note banner */
.exits-platform-note {
  max-width: 1400px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 14px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.exits-platform-note strong { color: var(--text-secondary); }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 40px;
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
}
.testi-container {
  max-width: 1100px;
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.testi-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.testi-header {
  text-align: left;
  margin-bottom: 20px;
}
.testi-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.testi-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.testi-title .accent {
  color: var(--accent); /* Light blue for "my client" and "about me" */
}

/* Small Cards */
.testi-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79,195,247,0.3);
}
.t-quote-icon {
  font-size: 4.5rem;
  line-height: 0.6;
  font-family: Georgia, serif;
  color: transparent;
  -webkit-text-stroke: 1px rgba(79,195,247,0.6);
  margin-bottom: 20px;
  display: inline-block;
}
.t-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.t-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
}
.t-info {
  display: flex;
  flex-direction: column;
}
.t-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.t-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Large Card */
.testi-card-large {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.t-large-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.t-large-info {
  padding: 36px;
  flex-grow: 1;
}
.t-large-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.t-large-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.t-large-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   TRUSTED BY
══════════════════════════════════════════════════════════ */
.trusted-section {
  padding: 80px 40px;
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
  border-top: 1px solid rgba(79,195,247,0.07);
}
.trusted-header { text-align: center; margin-bottom: 44px; }
.logos-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.logo-item {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
}
.logo-item.animated { opacity: 1; animation: logoFadeIn 0.5s var(--delay) both; }
@keyframes logoFadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.logo-item:hover {
  border-color: rgba(79,195,247,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(79,195,247,0.1);
}
.logo-item span {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.3s;
}
.logo-item:hover span { color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 40px;
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.active, .faq-item:hover {
  border-color: rgba(79,195,247,0.3);
  box-shadow: 0 4px 20px rgba(79,195,247,0.08);
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-question { font-size: 0.95rem; font-weight: 600; flex: 1; padding-right: 16px; }
.faq-icon {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
  padding: 0 24px;
}
.faq-item.active .faq-body { max-height: 200px; padding: 0 24px 22px; }
.faq-body p { font-size: 0.91rem; color: var(--text-secondary); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 100px 40px;
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-portrait-wrap {
  position: relative;
  margin-bottom: 28px;
  display: inline-block;
}
.contact-portrait-glow {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle, rgba(79,195,247,0.15) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
  filter: blur(20px);
}
.contact-portrait {
  width: 200px; height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(79,195,247,0.3);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.contact-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.contact-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; margin-bottom: 6px; }
.contact-tagline { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 22px; line-height: 1.5; }
.contact-details { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.contact-detail-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.cd-icon { font-size: 1rem; }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.cs-btn {
  padding: 8px 15px;
  background: rgba(79,195,247,0.05);
  border: 1px solid rgba(79,195,247,0.15);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cs-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79,195,247,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.cs-btn:hover::before { left: 150%; }
.cs-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(79,195,247,0.1); }
.contact-form-glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { position: relative; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(79,195,247,0.1);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.91rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--accent);
  background: rgba(79,195,247,0.03);
  box-shadow: 0 0 0 3px rgba(79,195,247,0.1);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-secondary); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 110px; }
.input-underline {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
  border-radius: 1px;
}
.form-group:focus-within .input-underline { width: 100%; }
.form-recaptcha { }
.recaptcha-mock {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(79,195,247,0.1);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
}
.rc-checkbox {
  width: 22px; height: 22px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
}
.rc-checkbox.checked { border-color: var(--accent); background: rgba(79,195,247,0.2); }
.rc-checkbox.checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent); font-size: 0.78rem; font-weight: 700;
}
.recaptcha-mock > span { flex: 1; font-size: 0.86rem; color: var(--text-secondary); }
.rc-logo { text-align: right; flex-shrink: 0; }
.rc-logo-text { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; }
.rc-logo-sub { font-size: 0.58rem; color: var(--text-muted); }
.btn-submit { width: 100%; justify-content: center; padding: 15px; font-size: 0.98rem; }
.btn-icon { font-size: 1.1rem; transition: transform 0.3s; }
.btn-submit:hover .btn-icon { transform: translateX(6px); }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.visible { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; color: var(--accent); }
.form-success p { color: var(--text-secondary); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(79,195,247,0.08);
  position: relative;
  z-index: 2;
}
.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;
  text-decoration: none;
}
.footer-logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(79, 195, 247, 0.45);
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer-logo:hover .footer-logo-circle {
  transform: scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.45);
}
.footer-logo:hover .footer-logo-name {
  color: var(--accent);
}
.footer-tagline { font-weight: 600; color: var(--text-secondary); margin-bottom: 10px; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 22px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.footer-social-link svg { width: 17px; height: 17px; }
.footer-social-link:hover {
  background: rgba(79,195,247,0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(79,195,247,0.2);
}
.footer-links-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links-group { display: flex; flex-direction: column; gap: 0; }
.footer-link {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 6px 0;
  transition: var(--transition);
  display: block;
  cursor: pointer;
}
.footer-link:hover { color: var(--accent); padding-left: 8px; }
.footer-cta-text { font-size: 0.86rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.5; }
.footer-cta-btn { margin-bottom: 14px; font-size: 0.83rem; padding: 11px 20px; }
.footer-availability { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); }
.avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 1.5s ease-in-out infinite;
}
.footer-bottom { padding: 0 40px 28px; }
.footer-divider { height: 1px; background: rgba(79,195,247,0.08); max-width: 1400px; margin: 0 auto 18px; }
.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-link-small { font-size: 0.8rem; color: var(--text-muted); transition: color 0.3s; cursor: pointer; }
.footer-link-small:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .expertise-container { grid-template-columns: 1fr; }
  .expertise-preview { position: static; }
  .stats-container { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .stats-center { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 992px) {
  .hero { padding: 0 24px; }
  .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 90px; }
  .hero-portrait-wrap { order: -1; min-height: 400px; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-metrics { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-chart-wrap { justify-content: center; }
  .portrait-hero-img-wrap { max-width: 340px; margin: 0 auto; }
  .float-card-1 { display: none; }
  .float-card-2 { left: 0; bottom: 20%; }
  .float-card-3 { right: 0; top: 22%; }
  .value-container { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .exits-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  /* Flip Flippa banner to single column on tablet */
  .flippa-feature-banner { grid-template-columns: 1fr; }
  .flippa-feature-img-wrap { max-height: 220px; }
  /* Testimonials to single column on tablet */
  .testi-grid { grid-template-columns: 1fr; }
  /* Active biz 2 cols on tablet */
  .active-biz-grid { grid-template-columns: repeat(2, 1fr); }
  /* Summary to single column on tablet */
  .summary-header, .summary-content { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 0 18px; }
  .hero-container { padding-top: 80px; gap: 16px; }
  .summary-section, .expertise-section, .exits-section,
  .testimonials-section, .trusted-section, .faq-section,
  .contact-section, .value-section, .stats-section { padding: 60px 18px; }
  .summary-title { font-size: 2.2rem; }
  .section-header { text-align: left; }
  .section-header .section-desc { margin: 0; }
  .portrait-hero-img-wrap { max-width: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-glass { padding: 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 36px 18px; }
  .footer-bottom { padding: 0 18px 18px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .exits-total { flex-direction: column; gap: 8px; padding: 22px; }
  .navbar { padding: 0 18px; }
  .nav-logo-circle { width: 34px; height: 34px; }
  .nav-logo-name { font-size: 0.88rem; }
  .footer-logo-circle { width: 38px; height: 38px; }
  .footer-logo-name { font-size: 0.95rem; }
  .hero-metrics { gap: 14px; }
  .metric-number { font-size: 1.5rem; }
  /* Stack active biz to 1 col on mobile */
  .active-biz-grid { grid-template-columns: 1fr; }
  .flippa-stats-row { gap: 16px; }
}

/* ══════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON (BOTTOM RIGHT)
══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 20px rgba(37, 211, 102, 0.25);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65), 0 0 30px rgba(37, 211, 102, 0.4);
}
.whatsapp-float:hover svg {
  transform: rotate(6deg);
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  left: auto;
  background: rgba(10, 14, 42, 0.95);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(79, 195, 247, 0.25);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    left: auto;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
