/*
Theme Name: Ahmad Jadoon
Theme URI: https://ahmadjadoon.com
Description: Bespoke child theme of Astra for Ahmad Jadoon - WordPress Designer, SEO Expert & AI Artist. Full custom design (HTML converted to PHP).
Author: Ahmad Jadoon
Author URI: https://ahmadjadoon.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ahmad-jadoon
*/

/* =========================================
   AHMAD JADOON V5 — EDITORIAL LUXURY THEME
   ========================================= */

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

:root {
  --ink: #0e0b18;
  --ink-2: #1b1733;
  --ink-3: #312a52;
  --mist: #f5f4fb;
  --mist-2: #eceaf6;
  --white: #ffffff;
  --gold: #6c5ce7;
  --gold-2: #a29bfe;
  --blue: #4834d4;
  --blue-2: #6a4dff;
  --cyan: #22d3ee;
  --text: #3a3650;
  --text-muted: #7b7795;
  --border: rgba(14,11,24,0.10);
  --border-2: rgba(14,11,24,0.06);
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(14,11,24,0.08);
  --shadow-lg: 0 16px 64px rgba(14,11,24,0.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --nav-h: 92px;
  --section-pad: clamp(60px, 8vw, 120px);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

/* ── LOADER ─────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
#loader .loader-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s 0.3s forwards;
}
#loader .loader-bar-wrap {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
#loader .loader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
  transition: width 0.1s linear;
}
#loader .loader-pct {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── NAV ────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 92px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-2);
  box-shadow: 0 2px 16px rgba(12,13,16,0.06);
  transition: box-shadow 0.3s;
}
#nav.scrolled {
  box-shadow: 0 4px 24px rgba(12,13,16,0.1);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 86px; width: auto; }
}
.nav-links {
  display: flex; align-items: center; gap: 2px; margin-top: 10px;
}
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  margin-top: 30px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > button:hover {
  background: var(--mist);
  color: var(--blue);
}
.nav-drop-arrow {
  width: 12px; height: 12px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform 0.2s;
}
.has-dropdown:hover .nav-drop-arrow { transform: rotate(225deg) translateY(-2px); }

/* ═══════════════════════════════════════════════
   MEGA DROPDOWN — 3 columns × 4 rows, premium hover
   ═══════════════════════════════════════════════ */
.mega-drop {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  box-shadow: 0 28px 70px -18px rgba(12,13,16,0.28),
              0 10px 28px rgba(12,13,16,0.08);
  width: min(700px, 94vw);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s cubic-bezier(0.16,1,0.3,1),
              transform 0.32s cubic-bezier(0.16,1,0.3,1),
              visibility 0.32s;
}
/* little caret pointing up to the trigger */
.mega-drop::before {
  content: ''; position: absolute; top: -7px; left: 50%;
  width: 14px; height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--white);
  border-left: 1px solid var(--border-2);
  border-top: 1px solid var(--border-2);
  border-radius: 4px 0 0 0;
}
.has-dropdown:hover .mega-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  position: relative;
  padding: 13px 30px 13px 13px;
  border-radius: 13px;
  display: flex; align-items: center; gap: 13px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.28s cubic-bezier(0.16,1,0.3,1);
}
/* soft gradient wash that fades in on hover */
.mega-item::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: linear-gradient(135deg, rgba(72,52,212,0.09), rgba(108,92,231,0.07));
  transition: opacity 0.28s ease;
}
/* arrow that slides in on hover */
.mega-item::after {
  content: '→';
  position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%) translateX(-7px);
  opacity: 0; color: var(--blue);
  font-size: 0.9rem; font-weight: 600;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mega-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px -12px rgba(72,52,212,0.4);
}
.mega-item:hover::before { opacity: 1; }
.mega-item:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

.mega-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.32s cubic-bezier(0.16,1,0.3,1),
              transform 0.32s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.32s cubic-bezier(0.16,1,0.3,1);
}
.mega-item:hover .mega-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 9px 20px -5px rgba(72,52,212,0.55);
}
.mega-icon svg { width: 18px; height: 18px; stroke: var(--ink-3); transition: stroke 0.32s; }
.mega-item:hover .mega-icon svg { stroke: #fff; }

.mega-label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  line-height: 1.25; transition: color 0.28s;
}
.mega-item:hover .mega-label { color: var(--blue); }
.mega-desc {
  font-size: 0.68rem; color: var(--text-muted); margin-top: 3px;
  font-family: var(--font-mono); letter-spacing: 0.01em;
}

/* tablet: collapse mega menu to 2 columns so it never overflows */
@media (max-width: 1040px) {
  .mega-drop { width: min(480px, 94vw); grid-template-columns: repeat(2, 1fr); }
}

.nav-actions {
  display: flex; align-items: center; gap: 8px;
}
.btn-ghost {
  font-size: 0.875rem; font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius);
  color: var(--ink);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-primary {
  font-size: 0.875rem; font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(72,52,212,0.3); }
.btn-gold {
  font-size: 0.875rem; font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(12,13,16,0.15);
  padding: 80px 28px 40px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12,13,16,0.5);
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%; background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--ink);
}
.drawer-link {
  font-size: 1rem; font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-2);
  color: var(--ink);
  transition: color 0.2s;
}
.drawer-link:hover { color: var(--blue); }
.drawer-sub {
  padding: 8px 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.drawer-sub a {
  display: flex; align-items: center;
  font-size: 0.78rem; font-weight: 500;
  color: var(--ink-3);
  padding: 10px 12px;
  border: 1px solid var(--border-2);
  border-radius: 11px;
  background: var(--mist);
  line-height: 1.2;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.drawer-sub a:hover, .drawer-sub a:active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* ── HERO ────────────────────────── */
/* ── HERO: Full redesign ─────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Left panel — dark ink background with content */
.hero-left {
  background: var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
  overflow: hidden;
  min-height: calc(100svh - var(--nav-h));
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(108,92,231,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(108,92,231,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-left-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero-lc { position: relative; z-index: 2; }

.hero-avail {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,92,231,0.12); border: 1px solid rgba(108,92,231,0.25);
  border-radius: 100px; padding: 6px 16px;
  margin-bottom: 32px; width: fit-content;
}
.hero-avail-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: hpulse 2s infinite;
}
@keyframes hpulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(108,92,231,0.5)} 50%{opacity:.7;box-shadow:0 0 0 5px rgba(108,92,231,0)} }
.hero-avail-text {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-name em { font-style: italic; color: var(--gold); }

.hero-role-line {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.hero-typed-span { color: rgba(255,255,255,0.7); font-style: normal; }
.hero-cursor-span { color: var(--gold); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc {
  font-size: 1rem; line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 420px; margin-bottom: 40px;
}
.hero-desc strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 52px;
}
.hcta-primary {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius);
  background: var(--gold); color: var(--ink);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.hcta-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,0.4); color: var(--ink); }
.hcta-outline {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  padding: 13px 28px; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
  transition: border-color 0.25s, color 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.hcta-outline:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* Stats row */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
}
.hstat {
  flex: 1; padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 24px;
}
.hstat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hstat-n {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.04em;
  display: block; margin-bottom: 4px;
}
.hstat-n em { color: var(--gold); font-style: normal; }
.hstat-l { font-size: 0.68rem; color: rgba(255,255,255,0.38); letter-spacing: 0.06em; text-transform: uppercase; }

/* Right panel — photo collage */
.hero-right {
  position: relative;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  min-height: calc(100svh - var(--nav-h));
}
.hero-photo-collage {
  position: absolute; inset: 0;
}

/* Main large photo */
.hpc-main {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.hpc-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 8s ease;
}
.hero-right:hover .hpc-main img { transform: scale(1.04); }

/* Dark gradient overlay on right side for readability */
.hpc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,30,0) 30%,
    rgba(10,15,30,0.75) 100%
  );
}

/* Small accent photo top-left */
.hpc-accent {
  position: absolute; top: 28px; left: 28px; z-index: 3;
  width: 130px; height: 164px;
  border-radius: 4px; overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  animation: accentFloat 5s ease-in-out infinite alternate;
}
.hpc-accent img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
@keyframes accentFloat { from{transform:translateY(0)} to{transform:translateY(-8px)} }

/* Info card bottom */
.hpc-info {
  position: absolute; bottom: 32px; left: 28px; right: 28px; z-index: 4;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.hpc-name-block {}
.hpc-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: white; line-height: 1.1; letter-spacing: -0.03em;
}
.hpc-title { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Rating pill */
.hpc-rating {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 16px; text-align: center;
  flex-shrink: 0;
}
.hpc-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.hpc-rating-n {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  color: white; display: block; line-height: 1; margin: 2px 0;
}
.hpc-rating-l { font-size: 0.62rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }

/* Experience badge — right side floating */
.hpc-exp {
  position: absolute; top: 28px; right: 28px; z-index: 3;
  background: var(--gold);
  color: var(--ink);
  border-radius: 12px;
  padding: 14px 18px; text-align: center;
  box-shadow: 0 8px 24px rgba(108,92,231,0.4);
}
.hpc-exp-n {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 900;
  line-height: 1; display: block; letter-spacing: -0.04em;
}
.hpc-exp-l { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.75; }

/* Responsive hero */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto 420px; }
  .hero-left { min-height: auto; padding: 48px 24px; }
  .hero-right { min-height: 420px; }
  .hpc-accent { width: 90px; height: 114px; }
}
@media (max-width: 600px) {
  .hero-name { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-stats { gap: 0; }
  .hstat { padding-right: 16px; margin-right: 16px; }
  .hstat-n { font-size: 1.5rem; }
}



/* ── TICKER ──────────────────────── */
.ticker {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 0 32px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 16px;
}
.ticker-item::after { content: '◆'; opacity: 0.4; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION WRAPPERS ────────────── */
.section {
  padding: var(--section-pad) clamp(20px,4vw,48px);
}
.container {
  max-width: 1320px; margin: 0 auto;
}
.section-header {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-header.center {
  text-align: center; margin-left: auto; margin-right: auto;
}
.section-header h2 { margin-top: 12px; }
.section-header p { margin-top: 16px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ── ABOUT STRIP ─────────────────── */
.about-strip {
  background: var(--mist);
  padding: var(--section-pad) clamp(20px,4vw,48px);
}
.about-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.about-photo {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.5s ease;
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo.tall { grid-row: span 2; aspect-ratio: auto; }
.about-photo.tall img { height: 100%; }
.about-text { }
.about-text h2 { margin: 12px 0 20px; }
.about-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }
.about-skills {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.skill-pill {
  font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  transition: all 0.2s;
}
.skill-pill:hover { border-color: var(--blue); color: var(--blue); background: rgba(72,52,212,0.05); }

/* ── SERVICES GRID ───────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.25s;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--mist); }
.svc-card.featured {
  background: var(--ink);
  grid-column: span 1;
}
.svc-card.featured::after { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.svc-card.featured:hover { background: var(--ink-2); }
.svc-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 28px; height: 28px; stroke: var(--blue); stroke-width: 1.5; fill: none; }
.svc-card.featured .svc-icon svg { stroke: var(--gold); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  position: absolute;
  top: 28px; right: 28px;
}
.svc-card.featured .svc-num { color: rgba(255,255,255,0.2); }
.svc-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.svc-card.featured .svc-name { color: var(--white); }
.svc-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.55); }
.svc-price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--blue);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-2);
}
.svc-card.featured .svc-price { color: var(--gold); border-color: rgba(255,255,255,0.1); }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
  transition: gap 0.2s;
}
.svc-card.featured .svc-link { color: var(--gold); }
.svc-link:hover { gap: 10px; }
.svc-link-arrow { font-size: 0.8rem; }

/* ── VENTURES ────────────────────── */
.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.venture-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.venture-card.plugnest { background: #1a0a2e; }
.venture-card.fiverr { background: var(--mist-2); border: 1px solid var(--border); }
.venture-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.venture-card.plugnest .venture-logo { color: #b788ff; }
.venture-card.fiverr .venture-logo { color: #1dbf73; }
.venture-desc { font-size: 0.9rem; line-height: 1.65; }
.venture-card.plugnest .venture-desc { color: rgba(255,255,255,0.55); }
.venture-card.fiverr .venture-desc { color: var(--text-muted); }
.venture-stat-row {
  display: flex; gap: 24px; margin: 20px 0;
}
.venture-stat-n {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.04em;
}
.venture-card.plugnest .venture-stat-n { color: white; }
.venture-card.fiverr .venture-stat-n { color: var(--ink); }
.venture-stat-l { font-size: 0.72rem; color: var(--text-muted); }
.venture-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.venture-card.plugnest .venture-btn { background: #b788ff; color: #1a0a2e; }
.venture-card.plugnest .venture-btn:hover { background: #c99fff; }
.venture-card.fiverr .venture-btn { background: #1dbf73; color: white; }
.venture-card.fiverr .venture-btn:hover { background: #19a563; }

/* ── PORTFOLIO GRID ──────────────── */
.portfolio-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-size: 0.8rem; font-weight: 500;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--ink); background: var(--ink); color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: var(--mist);
}
.portfolio-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,13,16,0.9) 0%, transparent 60%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.portfolio-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: white; }

/* ── TESTIMONIALS ────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--blue);
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.testimonial-country { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA BAND ────────────────────── */
.cta-band {
  background: var(--ink);
  padding: var(--section-pad) clamp(20px,4vw,48px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.55); margin-top: 12px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── FOOTER ──────────────────────── */
footer {
  position: relative;
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(108,92,231,0.10), transparent 70%),
    radial-gradient(700px 280px at 92% 8%, rgba(108,92,231,0.06), transparent 70%),
    #06070a;
  color: rgba(255,255,255,0.55);
  padding: 78px clamp(20px,4vw,48px) 36px;
  overflow: hidden;
}
/* animated gold shimmer line across the top */
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-2) 50%, var(--gold) 80%, transparent);
  background-size: 200% 100%;
  animation: ftrShimmer 5s linear infinite;
}
@keyframes ftrShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.footer-grid {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1.5fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 54px; width: auto; margin-bottom: 16px; border-radius: 10px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 320px; }

.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  position: relative;
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(108,92,231,0.28);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              color 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.footer-social a svg { width: 19px; height: 19px; position: relative; z-index: 1; }
.footer-social a::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  transform: scale(0); border-radius: inherit;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.footer-social a:hover {
  color: var(--ink);
  border-color: transparent;
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: 0 12px 26px -8px rgba(108,92,231,0.6);
}
.footer-social a:hover::before { transform: scale(1.05); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col h4::after {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-services ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 11px 30px;
}
.footer-col ul li a {
  position: relative;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer-col ul li a::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 0; height: 1.5px; background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.28s cubic-bezier(0.16,1,0.3,1);
}
.footer-col ul li a:hover { color: var(--gold-2); padding-left: 18px; }
.footer-col ul li a:hover::before { width: 12px; }

.footer-bottom {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--gold-2); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); text-decoration: underline; }

/* ── SERVICE PAGE ────────────────── */
.page-hero-v2 {
  background: var(--ink);
  padding: calc(var(--nav-h) + 80px) clamp(20px,4vw,48px) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-v2::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-v2-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px; align-items: end;
}
.phv2-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,92,231,0.12);
  border: 1px solid rgba(108,92,231,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.phv2-badge .eyebrow { color: var(--gold); }
.phv2-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 20px;
}
.phv2-h1 em { font-style: italic; color: var(--gold); }
.phv2-desc { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 32px; max-width: 540px; }
.phv2-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.phv2-photo-wrap { position: relative; }
.phv2-photo-main {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.phv2-photo-main img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: top center;
  border-radius: 2px;
}
.phv2-price-badge {
  position: absolute; top: 24px; right: -12px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.3;
}

.svc-layout {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  padding: 72px clamp(20px,4vw,48px);
  align-items: start;
}
.svc-main {}
.svc-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }

/* Breadcrumb */
.breadcrumb {
  max-width: 1320px; margin: 0 auto;
  padding: 16px clamp(20px,4vw,48px);
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border-2);
}
.breadcrumb a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { font-size: 0.8rem; color: var(--border); }
.breadcrumb .current { font-size: 0.8rem; color: var(--text); }

/* Service intro block */
.svc-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--mist);
  border-radius: var(--radius-lg);
}
.svc-intro-img { border-radius: var(--radius); overflow: hidden; }
.svc-intro-img img { width: 100%; height: 280px; object-fit: cover; object-position: top center; }
.svc-intro h2 { margin: 12px 0 16px; }
.svc-intro p { color: var(--text-muted); line-height: 1.75; }

/* Process steps */
.process-steps { margin: 48px 0; }
.process-steps h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600; letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; gap: 20px;
  position: relative;
  padding-bottom: 28px;
}
.step-item:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--ink);
}
.step-line {
  width: 1.5px; flex: 1;
  background: var(--border);
  margin: 6px 0;
  min-height: 20px;
}
.step-item:last-child .step-line { display: none; }
.step-content { padding-top: 8px; }
.step-title { font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* Benefits grid */
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 48px 0;
}
.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(72,52,212,0.08); }
.benefit-icon {
  width: 40px; height: 40px;
  background: var(--mist);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.benefit-title { font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 8px; }
.benefit-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq-section { margin-top: 48px; }
.faq-section h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600; letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--border-2);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.95rem; color: var(--ink);
  cursor: pointer; background: none; border: none; font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: all 0.2s;
}
.faq-item.open .faq-icon { background: var(--ink); border-color: var(--ink); color: white; transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.7;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }

/* Sidebar cards */
.sidebar-price {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.sidebar-price-tag {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.04em;
}
.sidebar-price-tag span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.4); margin-left: 4px; }
.sidebar-price-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.sidebar-features { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.sidebar-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.sidebar-feature::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.sidebar-btn {
  display: block; text-align: center;
  background: var(--gold); color: var(--ink);
  font-weight: 700; font-size: 0.9rem;
  padding: 14px; border-radius: var(--radius);
  transition: all 0.2s;
}
.sidebar-btn:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,0.3); }
.sidebar-contact {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-contact h4 { font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.sidebar-contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; color: var(--text-muted);
  margin-bottom: 10px;
}
.sidebar-contact-row a { color: var(--blue); }
.sidebar-plugnest {
  background: #1a0a2e;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-plugnest h4 { font-family: var(--font-display); font-size: 1rem; color: #b788ff; margin-bottom: 8px; }
.sidebar-plugnest p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 16px; }
.sidebar-plugnest-btn {
  display: block; text-align: center;
  background: #b788ff; color: #1a0a2e;
  font-weight: 700; font-size: 0.83rem;
  padding: 10px; border-radius: var(--radius);
  transition: background 0.2s;
}
.sidebar-plugnest-btn:hover { background: #c99fff; }

/* ── ANIMATIONS ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: repeat(2, 1fr); }
  .page-hero-v2-inner { grid-template-columns: 1fr; }
  .phv2-photo-wrap { display: none; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .svc-intro { grid-template-columns: 1fr; }
  .ventures-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   HERO V3 — Magazine / Editorial 3-Column Layout
═══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--white);
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}

/* Tagline ticker bar */
.hero-tagline-bar {
  background: var(--ink);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hero-tagline-inner {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* 3-col grid */
.hero-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.95fr;
  min-height: calc(100svh - var(--nav-h) - 38px);
  align-items: stretch;
}

/* ── LEFT COL ── */
.hero-col-left {
  position: relative;
  overflow: hidden;
}
.hero-photo-tall {
  height: 100%;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.hero-photo-tall img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 8s ease;
}
.hero-col-left:hover .hero-photo-tall img { transform: scale(1.05); }
.hero-photo-tall-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,13,20,0.88) 0%, transparent 100%);
  padding: 32px 20px 20px;
  display: flex; gap: 20px;
}
.hero-ot-stat { display: flex; flex-direction: column; }
.hero-ot-n {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--white); line-height: 1; letter-spacing: -0.04em;
}
.hero-ot-sym { color: var(--gold); font-style: normal; }
.hero-ot-l { font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

/* ── CENTRE COL ── */
.hero-col-center {
  padding: clamp(36px, 5vw, 64px) clamp(24px, 3.5vw, 52px);
  background: var(--white);
  display: flex; flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-2);
  border-right: 1px solid var(--border-2);
}

.hero-avail {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,92,231,0.1); border: 1px solid rgba(108,92,231,0.3);
  border-radius: 100px; padding: 6px 16px;
  width: fit-content; margin-bottom: 28px;
}
.hero-avail-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: hpulse 2s infinite;
}
@keyframes hpulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(108,92,231,.5)} 50%{opacity:.7;box-shadow:0 0 0 5px rgba(108,92,231,0)} }
.hero-avail-txt { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* Editorial big headline */
.hero-headline { margin: 0 0 6px; line-height: 1; }
.hero-hl-line1 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.5vw, 6.2rem);
  font-weight: 900; letter-spacing: -0.05em;
  color: var(--ink);
}
.hero-hl-line2 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.5vw, 6.2rem);
  font-weight: 900; letter-spacing: -0.05em;
  color: var(--gold);
  font-style: italic;
  line-height: 0.95;
}
.hero-hl-line3 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 400; font-style: italic;
  color: rgba(12,13,16,0.38);
  letter-spacing: -0.01em;
  margin-top: 8px; margin-bottom: 0;
}

.hero-roles-typed {
  margin: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-style: italic;
  color: var(--ink);
  opacity: 0.6;
}
.hero-cursor { color: var(--gold); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-muted);
  max-width: 400px; margin-bottom: 32px;
}
.hero-desc strong { color: var(--ink); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hcta-gold {
  font-size: 0.9rem; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius);
  background: var(--gold); color: var(--ink);
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.hcta-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,.4); color: var(--ink); }
.hcta-ghost {
  font-size: 0.9rem; font-weight: 500;
  padding: 12px 24px; border-radius: var(--radius);
  border: 1.5px solid var(--border); color: var(--ink);
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.hcta-ghost:hover { border-color: var(--ink); }

/* Bottom portrait inside centre col */
.hero-bottom-photo {
  display: flex; align-items: center; gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border-2);
  margin-top: auto;
}
.hero-bottom-photo img {
  width: 68px; height: 80px;
  object-fit: cover; object-position: top center;
  border-radius: 4px;
  flex-shrink: 0;
}
.hero-bp-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); display: block; }
.hero-bp-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em; display: block; margin-top: 3px; }

/* ── RIGHT COL ── */
.hero-col-right {
  position: relative;
  background: var(--mist);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-photo-stack {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 0;
}
.hero-ps-top, .hero-ps-bottom { flex: 1; overflow: hidden; position: relative; }
.hero-ps-top img, .hero-ps-bottom img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 6s ease;
}
.hero-ps-top:hover img, .hero-ps-bottom:hover img { transform: scale(1.06); }
.hero-ps-top { border-bottom: 2px solid white; }

/* Stats card floating over right col */
.hero-stats-card {
  position: absolute; top: 24px; right: 20px;
  background: rgba(12,13,16,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(108,92,231,0.3);
  border-radius: 12px; padding: 16px 18px;
  z-index: 3;
}
.hsc-row { display: flex; flex-direction: column; align-items: center; }
.hsc-n {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.04em;
}
.hsc-sym { color: var(--gold); font-style: normal; }
.hsc-l { font-size: 0.6rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.hsc-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.12); margin: 10px 0; }

/* Fiverr badge */
.hero-fiverr-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 100px; padding: 8px 18px;
  display: flex; align-items: center; gap: 8px;
  z-index: 3; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.hfb-stars { color: #f7b731; font-size: 0.8rem; }
.hfb-label { font-size: 0.72rem; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }

/* Responsive hero */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 0 1fr 0; }
  .hero-col-left, .hero-col-right { display: none; }
  .hero-col-center { border: none; }
}
@media (max-width: 600px) {
  .hero-hl-line1, .hero-hl-line2 { font-size: clamp(3rem, 14vw, 4.5rem); }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT V2 — Single Photo Editorial
═══════════════════════════════════════════════════════════════ */
.about-v2 {
  background: var(--white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.about-v2-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.about-v2-photo-col { position: relative; }
.about-v2-photo-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-v2-photo {
  width: 100%; height: 580px;
  object-fit: cover; object-position: top center;
  display: block;
  border-radius: 4px;
  transition: transform 6s ease;
}
.about-v2-photo-wrap:hover .about-v2-photo { transform: scale(1.04); }

/* Gold corner decoration */
.about-v2-corner {
  position: absolute; bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

/* Experience card */
.about-v2-exp-card {
  position: absolute; top: 24px; left: -20px;
  background: var(--gold);
  border-radius: 12px;
  padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 24px rgba(108,92,231,0.45);
  z-index: 2;
}
.about-exp-n {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--ink); line-height: 1; display: block; letter-spacing: -0.04em;
}
.about-exp-l { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(12,13,16,0.65); }

/* Text side */
.about-v2-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.about-v2-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.about-v2-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--ink); line-height: 1.05; margin-bottom: 24px;
}
.about-v2-heading em { font-style: italic; color: var(--gold); }
.about-v2-divider { width: 60px; height: 3px; background: var(--gold); margin-bottom: 28px; }
.about-v2-p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.about-v2-p strong { color: var(--ink); font-weight: 600; }

.about-v2-skills {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0;
}
.av2-skill {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.av2-skill:hover { border-color: var(--gold); color: var(--gold); }
.about-v2-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 900px) {
  .about-v2-inner { grid-template-columns: 1fr; }
  .about-v2-photo { height: 420px; }
  .about-v2-exp-card { left: 16px; top: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   FIVERR SECTION
═══════════════════════════════════════════════════════════════ */
.fiverr-section {}
.fiverr-layout {
  display: grid; grid-template-columns: 1fr 400px;
  gap: clamp(48px, 6vw, 80px); align-items: center;
}
.fiverr-stats { display: flex; gap: 32px; margin: 32px 0 0; }
.fv-stat { }
.fv-n {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--white); display: block; letter-spacing: -0.04em; line-height: 1;
}
.fv-n em { color: var(--gold); font-style: normal; }
.fv-l { font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }

.fiverr-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 32px;
}
.fv-card-icon { width: 56px; height: 56px; margin-bottom: 16px; }
.fv-card-icon svg { width: 100%; height: 100%; }
.fv-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); display: block; }
.fv-card-sub { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin: 4px 0 16px; display: block; }
.fv-stars { color: #f7b731; font-size: 0.9rem; margin-bottom: 20px; }
.fv-stars strong { color: var(--white); margin-left: 4px; }
.fv-services { display: flex; flex-direction: column; gap: 8px; }
.fv-services span {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fv-services span:last-child { border-bottom: none; }

/* Animated gold button */
.btn-gold-animated {
  position: relative; overflow: hidden;
  font-size: 0.9rem; font-weight: 600;
  padding: 14px 32px; border-radius: var(--radius);
  background: var(--gold); color: var(--ink);
  transition: all 0.3s;
}
.btn-gold-animated::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-gold-animated:hover::before { transform: translateX(100%); }
.btn-gold-animated:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,0.45); color: var(--ink); }

@media (max-width: 900px) {
  .fiverr-layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PLUGNEST SECTION
═══════════════════════════════════════════════════════════════ */
.plugnest-section {}
.plugnest-layout {
  display: grid; grid-template-columns: 380px 1fr;
  gap: clamp(48px, 6vw, 80px); align-items: center;
}
.plugnest-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 16px; padding: 32px;
  box-shadow: var(--shadow-md);
}
.pn-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pn-logo svg { width: 52px; height: 52px; border-radius: 10px; }
.pn-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #6B21A8; letter-spacing: -0.02em; }
.pn-card-desc { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
.pn-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pn-features span { font-size: 0.82rem; color: var(--ink); padding: 6px 0; border-bottom: 1px solid var(--border-2); }
.pn-features span:last-child { border-bottom: none; }
.pn-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius);
  background: #6B21A8; color: white;
  transition: all 0.25s;
}
.pn-btn:hover { background: #7C3AED; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,33,168,0.35); color: white; }

.pn-benefits { list-style: none; padding: 0; margin: 24px 0; }
.pn-benefits li {
  font-size: 0.9rem; color: var(--text-muted);
  padding: 8px 0; border-bottom: 1px solid var(--border-2);
}
.pn-benefits li:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .plugnest-layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND V2 — Animated buttons
═══════════════════════════════════════════════════════════════ */
.cta-band-v2 {
  background: var(--ink);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(108,92,231,0.08) 0%, transparent 70%);
}
.cta-band-v2-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-eyebrow {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--white); line-height: 1.05; margin-bottom: 16px;
}
.cta-heading em { font-style: italic; color: var(--gold); }
.cta-subtext { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.75; margin-bottom: 44px; }
.cta-band-v2-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Animated CTA buttons */
.cta-btn-animate {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.cta-btn-animate:hover { transform: translateY(-3px); }
.cta-btn-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  font-size: 0.95rem; font-weight: 700;
  position: relative; z-index: 1;
}
.cta-btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s;
  display: inline-block;
}
.cta-btn-animate:hover .cta-btn-icon { transform: translateX(4px); }
.cta-btn-glow {
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  transform: translateX(-150%);
  transition: transform 0.6s;
}
.cta-btn-animate:hover .cta-btn-glow { transform: translateX(150%); }

/* Primary (gold) variant */
.cta-btn-primary { background: var(--gold); }
.cta-btn-primary .cta-btn-inner { color: var(--ink); }
.cta-btn-primary:hover { box-shadow: 0 12px 32px rgba(108,92,231,0.5); }

/* Fiverr (green) variant */
.cta-btn-fiverr { background: #1DBF73; }
.cta-btn-fiverr .cta-btn-inner { color: white; }
.cta-btn-fiverr:hover { box-shadow: 0 12px 32px rgba(29,191,115,0.45); }

/* btn-outline-dark helper */
.btn-outline-dark {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  padding: 13px 28px; border-radius: var(--radius);
  border: 1.5px solid var(--ink); color: var(--ink);
  transition: all 0.25s;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════════
   HERO NX — Full redesign with reveal animations
═══════════════════════════════════════════════════════════════════ */

/* ── Base reveal system ────────────────────────── */
.hnx-reveal,
.hnx-reveal-img {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.hnx-reveal-img { transform: translateY(40px) scale(0.97); }
.hnx-reveal.visible, .hnx-reveal-img.visible {
  opacity: 1; transform: translateY(0) scale(1);
}

/* anx / fnx reveal */
.anx-reveal, .fnx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.anx-reveal.visible, .fnx-reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ── Section layout ──────────────────────────── */
.hero-nx {
  min-height: 100svh;
  background: var(--ink);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Ambient background ──────────────────────── */
.hnx-bg { position: absolute; inset: 0; pointer-events: none; }

.hnx-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(108,92,231,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,92,231,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 20%, black 0%, transparent 80%);
}

.hnx-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  animation: hnxGlowDrift 8s ease-in-out infinite alternate;
}
.hnx-glow-1 {
  width: 600px; height: 600px;
  top: -200px; right: 0;
  background: radial-gradient(circle, rgba(108,92,231,0.12) 0%, transparent 70%);
}
.hnx-glow-2 {
  width: 400px; height: 400px;
  bottom: 10%; left: 5%;
  background: radial-gradient(circle, rgba(72,52,212,0.08) 0%, transparent 70%);
  animation-delay: -4s;
}
@keyframes hnxGlowDrift {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(20px,-30px) scale(1.1); }
}

.hnx-bg-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── Inner grid ──────────────────────────────── */
.hnx-inner {
  flex: 1;
  max-width: 1380px; margin: 0 auto;
  width: 100%;
  padding: clamp(48px,6vw,80px) clamp(20px,4vw,60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px);
  align-items: center;
  position: relative; z-index: 2;
}

/* ── Text column ─────────────────────────────── */
.hnx-text-col { display: flex; flex-direction: column; gap: 0; }

/* Pill */
.hnx-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(108,92,231,0.1);
  border: 1px solid rgba(108,92,231,0.28);
  border-radius: 100px; padding: 7px 18px;
  width: fit-content; margin-bottom: 28px;
}
.hnx-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(108,92,231,0.6);
  animation: hnxPing 2s infinite;
}
@keyframes hnxPing {
  0% { box-shadow: 0 0 0 0 rgba(108,92,231,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(108,92,231,0); }
  100% { box-shadow: 0 0 0 0 rgba(108,92,231,0); }
}
.hnx-pill-txt {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}

/* Heading with clip reveal */
.hnx-heading { margin-bottom: 14px; overflow: visible; }
.hnx-h-line { display: block; overflow: hidden; }
.hnx-h-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem,8vw,7.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--white);
}
.hnx-h-gold { color: var(--gold) !important; font-style: italic; }

/* Typed role */
.hnx-role {
  font-family: var(--font-display);
  font-size: clamp(1rem,1.6vw,1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.42);
  margin-bottom: 28px; display: flex; align-items: center; gap: 6px;
}
.hnx-role-typed { color: rgba(255,255,255,0.7); }
.hnx-role-cursor { color: var(--gold); animation: hnxBlink 1s step-end infinite; }
@keyframes hnxBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Description */
.hnx-desc {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255,255,255,0.52);
  max-width: 460px; margin-bottom: 36px;
}
.hnx-desc strong { color: rgba(255,255,255,0.82); font-weight: 600; }

/* CTAs */
.hnx-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hnx-btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  background: var(--gold); color: var(--ink);
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hnx-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(108,92,231,0.45); color: var(--ink); }
.hnx-btn-arrow { font-size: 1.1rem; transition: transform 0.3s; }
.hnx-btn-primary:hover .hnx-btn-arrow { transform: translateX(4px); }
.hnx-btn-shine {
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.22) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform 0.55s;
}
.hnx-btn-primary:hover .hnx-btn-shine { transform: translateX(150%); }

.hnx-btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.hnx-btn-ghost:hover { border-color: rgba(255,255,255,0.55); color: white; }

.hnx-btn-fiverr {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  background: rgba(29,191,115,0.12);
  border: 1.5px solid rgba(29,191,115,0.35);
  color: #1DBF73;
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.hnx-btn-fiverr:hover { background: rgba(29,191,115,0.22); border-color: rgba(29,191,115,0.6); color: #1DBF73; }
.hnx-fiverr-dot { width: 8px; height: 8px; border-radius: 50%; background: #1DBF73; flex-shrink: 0; }

/* Stats */
.hnx-stats {
  display: flex; align-items: center; gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hnx-stat { text-align: center; }
.hnx-stat-n {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.04em;
  line-height: 1; display: inline;
}
.hnx-stat-sym { color: var(--gold); font-family: var(--font-display); font-size: 1.2rem; font-style: italic; }
.hnx-stat-l { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.38); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.hnx-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── Photo column ────────────────────────────── */
.hnx-photo-col {
  position: relative;
  min-height: 560px;
}

/* Main photo */
.hnx-photo-main {
  position: absolute;
  top: 0; right: 0;
  width: 72%; height: 88%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.hnx-img-main {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 8s ease;
}
.hnx-photo-main:hover .hnx-img-main { transform: scale(1.05); }
.hnx-photo-main-frame {
  position: absolute; inset: 0;
  border: 1px solid rgba(108,92,231,0.3);
  border-radius: 8px; pointer-events: none;
}

/* Accent top-right */
.hnx-photo-accent {
  position: absolute;
  top: -16px; left: 0;
  width: 36%; height: 46%;
  border-radius: 6px; overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 2;
  animation: hnxAccFloat 5s ease-in-out infinite alternate;
}
@keyframes hnxAccFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}
.hnx-img-accent {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hnx-accent-badge {
  position: absolute; bottom: 8px; right: 8px;
  background: var(--gold); border-radius: 8px;
  padding: 8px 10px; text-align: center;
}
.hnx-ab-n { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; color: var(--ink); display: block; line-height: 1; }
.hnx-ab-l { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(12,13,16,0.65); }

/* Bottom photo */
.hnx-photo-btm {
  position: absolute;
  bottom: -8px; left: 0;
  width: 44%; height: 36%;
  border-radius: 6px; overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  z-index: 2;
  animation: hnxBtmFloat 6s ease-in-out infinite alternate;
}
@keyframes hnxBtmFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}
.hnx-img-btm {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

/* Fiverr floating card */
.hnx-fiverr-card {
  position: absolute;
  bottom: 30px; right: -10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 14px 20px;
  z-index: 4;
  animation: hnxCardFloat 4s ease-in-out infinite alternate;
}
@keyframes hnxCardFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}
.hnx-fc-stars { color: #f7b731; font-size: 0.85rem; letter-spacing: 2px; }
.hnx-fc-label { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: white; }
.hnx-fc-sub { font-size: 0.62rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

/* Decoration line */
.hnx-deco-line {
  position: absolute; top: 20%; left: 35%;
  width: 1px; height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(108,92,231,0.4), transparent);
  pointer-events: none;
}

/* Scroll indicator */
.hnx-scroll-indicator {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 28px;
  color: rgba(255,255,255,0.3);
}
.hnx-scroll-line {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(108,92,231,0.5));
  animation: hnxScrollPulse 2s ease-in-out infinite;
}
@keyframes hnxScrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }
.hnx-scroll-txt { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 960px) {
  .hnx-inner { grid-template-columns: 1fr; }
  .hnx-photo-col { min-height: 380px; margin-top: 40px; }
  .hnx-photo-main { width: 80%; height: 100%; position: relative; top: auto; right: auto; margin-left: auto; }
  .hnx-photo-accent, .hnx-photo-btm { display: none; }
  .hnx-fiverr-card { bottom: 16px; right: 16px; }
}
@media (max-width: 600px) {
  .hnx-h-label { font-size: clamp(3rem,16vw,4.5rem); }
  .hnx-stats { gap: 16px; }
  .hnx-stat-n { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT NX — Editorial single-photo with animated reveals
═══════════════════════════════════════════════════════════════════ */
.about-nx {
  background: var(--mist);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}
.anx-bg-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(108,92,231,0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(12,13,16,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.anx-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(48px,7vw,88px);
  align-items: center;
  position: relative; z-index: 1;
}

/* ── Photo side ──────────────────────────────── */
.anx-photo-side { position: relative; }

.anx-frame-accent {
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 2px solid rgba(108,92,231,0.35);
  border-radius: 6px;
  pointer-events: none;
  transition: transform 0.4s ease;
}
.anx-photo-side:hover .anx-frame-accent { transform: translate(-4px,-4px); }

.anx-portrait-wrap {
  position: relative; border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12,13,16,0.2);
}
.anx-portrait {
  width: 100%; height: 620px;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform 7s ease;
}
.anx-portrait-wrap:hover .anx-portrait { transform: scale(1.04); }
.anx-portrait-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,13,16,0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating experience card */
.anx-exp-card {
  position: absolute; top: 32px; left: -24px;
  background: var(--gold);
  border-radius: 14px; padding: 18px 22px; text-align: center;
  box-shadow: 0 10px 32px rgba(108,92,231,0.5);
  z-index: 3;
}
.anx-float { animation: anxFloat 5s ease-in-out infinite alternate; }
.anx-float-2 { animation: anxFloat 6.5s ease-in-out infinite alternate-reverse; }
@keyframes anxFloat { from{transform:translateY(0)} to{transform:translateY(-10px)} }
.anx-exp-n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--ink); display: block; line-height: 1; letter-spacing: -0.04em; }
.anx-exp-l { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(12,13,16,0.65); }

/* Floating skills card */
.anx-skills-card {
  position: absolute; bottom: 32px; right: -28px;
  background: var(--ink);
  border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 10px 32px rgba(12,13,16,0.35);
  z-index: 3; min-width: 140px;
}
.anx-sc-row {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.75); font-size: 0.82rem;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.anx-sc-row:last-child { border-bottom: none; }
.anx-sc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── Text side ───────────────────────────────── */
.anx-text-side { padding-right: clamp(0px,2vw,32px); }

.anx-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.anx-ew-line { display: block; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.anx-ew-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.anx-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,5vw,4.5rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.0; color: var(--ink); margin-bottom: 28px;
}
.anx-heading em { font-style: italic; color: var(--gold); }

/* Animated divider line */
.anx-divider {
  height: 3px; width: 0; background: var(--gold);
  margin-bottom: 28px;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.anx-divider.visible { width: 64px; }

.anx-p { font-size: 1rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px; }
.anx-p strong { color: var(--ink); font-weight: 600; }

.anx-skills-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 32px;
}
.anx-skill {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted); background: var(--white);
  transition: all 0.2s; cursor: default;
}
.anx-skill:hover { border-color: var(--gold); color: var(--gold); background: rgba(108,92,231,0.06); }

.anx-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.anx-btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--radius);
  background: var(--ink); color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.anx-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(12,13,16,0.3); color: var(--white); }
.anx-btn-arr { font-size: 1.05rem; transition: transform 0.3s; }
.anx-btn-primary:hover .anx-btn-arr { transform: translateX(4px); }
.anx-btn-glow {
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.55s;
}
.anx-btn-primary:hover .anx-btn-glow { transform: translateX(120%); }

.anx-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  border: 1.5px solid var(--ink); color: var(--ink);
  font-size: 0.9rem; font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.anx-btn-outline:hover { background: var(--ink); color: var(--white); }

@media (max-width: 960px) {
  .anx-inner { grid-template-columns: 1fr; }
  .anx-portrait { height: 440px; }
  .anx-exp-card { left: 16px; top: 16px; }
  .anx-skills-card { right: 16px; bottom: 16px; }
  .anx-frame-accent { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   FIVERR NX — Dark editorial with animated card
═══════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   GO HIGH LEVEL SECTION
   ═══════════════════════════════════════════════════════════ */
.ghl-nx {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
  overflow: hidden;
}
.ghl-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ghl-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(12,13,16,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,13,16,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
}
.ghl-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.ghl-orb-1 {
  width: 520px; height: 520px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(108,92,231,0.22) 0%, transparent 70%);
}
.ghl-orb-2 {
  width: 420px; height: 420px; bottom: -140px; left: -100px;
  background: radial-gradient(circle, rgba(12,13,16,0.16) 0%, transparent 70%);
}

.ghl-inner { position: relative; z-index: 1; padding: 0 clamp(20px, 5vw, 48px); }

/* Header */
.ghl-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.ghl-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #5a3fd6; margin-bottom: 20px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(108,92,231,0.12);
  border: 1px solid rgba(108,92,231,0.32);
}
.ghl-ew-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: hnxPing 2s infinite; }
.ghl-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.0; color: var(--ink); margin-bottom: 22px;
}
.ghl-heading em { font-style: italic; color: #5a3fd6; }
.ghl-desc {
  font-size: 1.02rem; line-height: 1.8; color: var(--text);
  max-width: 640px; margin: 0 auto 26px;
}
.ghl-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.ghl-chip {
  font-size: 0.74rem; font-weight: 600; color: var(--ink-3);
  padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(12,13,16,0.04);
  transition: transform 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
}
.ghl-chip:hover {
  transform: translateY(-2px); color: #5a3fd6;
  border-color: rgba(108,92,231,0.5);
  box-shadow: 0 8px 20px -6px rgba(108,92,231,0.35);
}

/* 2 × 2 gallery */
.ghl-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.ghl-feature, .ghl-a, .ghl-b, .ghl-c { grid-column: span 1; }

.ghl-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px -14px rgba(12,13,16,0.2);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s cubic-bezier(0.16,1,0.3,1),
              border-color 0.45s;
}
.ghl-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 26px 50px -18px rgba(108,92,231,0.45),
              0 0 0 2px rgba(108,92,231,0.4),
              0 10px 24px -12px rgba(12,13,16,0.25);
  z-index: 3;
}

/* browser frame */
.ghl-frame { display: flex; flex-direction: column; }
.ghl-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px; height: 34px; flex-shrink: 0;
  background: #f3f3ef;
  border-bottom: 1px solid var(--border-2);
}
.ghl-dot { width: 10px; height: 10px; border-radius: 50%; }
.ghl-dot-r { background: #ff5f57; }
.ghl-dot-y { background: #febc2e; }
.ghl-dot-g { background: #28c840; }
.ghl-url {
  margin-left: 10px;
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--text-muted); letter-spacing: 0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background: var(--white); padding: 3px 12px; border-radius: 6px;
  border: 1px solid var(--border-2); flex: 1; max-width: 280px;
}
.ghl-shot { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.ghl-shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.ghl-card:hover .ghl-shot img { transform: scale(1.06); }

/* shine sweep on hover */
.ghl-shot::after {
  content: ''; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  pointer-events: none;
}
.ghl-card:hover .ghl-shot::after { left: 130%; }

/* caption overlay */
.ghl-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 18px 16px;
  display: flex; flex-direction: column; gap: 3px;
  background: linear-gradient(to top, rgba(12,13,16,0.88) 0%, rgba(12,13,16,0.45) 55%, transparent 100%);
  transform: translateY(8px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
  pointer-events: none;
}
.ghl-card:hover .ghl-cap { transform: translateY(0); opacity: 1; }
.ghl-cap strong { font-size: 0.92rem; font-weight: 700; color: var(--gold-2); letter-spacing: -0.01em; }
.ghl-cap span { font-size: 0.74rem; color: rgba(255,255,255,0.75); }

/* floating badge on feature card */
.ghl-badge {
  position: absolute; top: 44px; right: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink);
  padding: 7px 13px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 8px 20px -5px rgba(108,92,231,0.6);
  animation: ghlFloat 3.4s ease-in-out infinite;
}
@keyframes ghlFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Stats */
.ghl-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; max-width: 1080px; margin: 44px auto 0;
}
.ghl-stat {
  text-align: center; padding: 26px 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 6px 20px -10px rgba(12,13,16,0.12);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ghl-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(108,92,231,0.5);
  box-shadow: 0 16px 32px -14px rgba(108,92,231,0.4);
}
.ghl-stat-n {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900;
  line-height: 1; color: var(--ink);
  background: linear-gradient(135deg, #5a3fd6, var(--ink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ghl-stat-l {
  display: block; margin-top: 8px;
  font-size: 0.74rem; color: var(--text-muted);
  font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase;
}

/* Responsive */
@media (max-width: 920px) {
  /* captions always visible on touch devices */
  .ghl-cap { opacity: 1; transform: translateY(0); }
  .ghl-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ghl-gallery { grid-template-columns: 1fr; }
  .ghl-badge { top: 42px; }
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO FILTER GALLERY  (gold / black accents)
   ═══════════════════════════════════════════════════════════ */
.pf-filter {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin: 34px 0 46px;
}
.pf-btn {
  background: transparent;
  border: 1.5px solid rgba(12,13,16,0.16);
  color: var(--ink);
  padding: 11px 26px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pf-btn:hover {
  background: var(--ink); color: var(--gold-2);
  border-color: var(--ink); transform: translateY(-2px);
}
.pf-btn.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--ink); border-color: transparent;
  box-shadow: 0 10px 24px -8px rgba(108,92,231,0.65);
}

.pf-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px; margin: 0 auto;
}
.pf-item {
  position: relative;
  border-radius: 18px; overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px -16px rgba(12,13,16,0.45);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s cubic-bezier(0.16,1,0.3,1),
              border-color 0.45s;
}
.pf-item.hide { display: none; }
.pf-inner { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; }
.pf-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.5s;
}
.pf-item:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 26px 50px -18px rgba(12,13,16,0.55),
              0 0 0 2px rgba(108,92,231,0.55),
              0 16px 42px -10px rgba(108,92,231,0.42);
  z-index: 5;
}
.pf-item:hover img { transform: scale(1.09); filter: brightness(0.82); }

.pf-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 42px 18px 18px;
  display: flex; flex-direction: column; gap: 3px;
  text-align: left; text-decoration: none;
  background: linear-gradient(to top, rgba(12,13,16,0.95) 0%, rgba(12,13,16,0.55) 55%, transparent 100%);
  transform: translateY(101%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.pf-overlay::before {
  content: ''; width: 34px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  margin-bottom: 9px;
}
.pf-item:hover .pf-overlay { transform: translateY(0); }
.pf-overlay h4 {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: 1.14rem; color: var(--gold-2); letter-spacing: -0.01em; line-height: 1.2;
}
.pf-overlay p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.72); }
a.pf-overlay:hover h4 { text-decoration: underline; }

.pf-anim { animation: pfIn 0.5s both; }
@keyframes pfIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .pf-gallery { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .pf-gallery { grid-template-columns: 1fr; }
  .pf-overlay { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING REVIEWS  (authentic Fiverr · gold/black accents)
   ═══════════════════════════════════════════════════════════ */
.rev-badge {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 16px auto 0;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
  padding: 9px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 26px -8px rgba(108,92,231,0.6);
  position: relative; overflow: hidden;
}
.rev-badge::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-20deg);
  animation: revShine 3.6s ease-in-out infinite;
}
@keyframes revShine { 0%,60%{left:-120%} 100%{left:160%} }
.rev-badge svg { width: 15px; height: 15px; }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 26px;
  max-width: 1140px; margin: 14px auto 0;
  align-items: stretch;
}
.rev-item {
  display: flex;
  animation: revFloat 6s ease-in-out infinite; animation-delay: var(--d, 0s);
}
@keyframes revFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

.rev-card {
  display: flex; flex-direction: column; width: 100%; height: 100%;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px 22px;
  box-shadow: 0 16px 40px -22px rgba(12,13,16,0.4);
  text-decoration: none; color: var(--ink);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s;
}
/* gold top accent bar */
.rev-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
/* big watermark quote */
.rev-card::after {
  content: '\201C';
  position: absolute; top: 6px; right: 20px;
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: rgba(108,92,231,0.16);
  transition: color 0.4s;
  pointer-events: none;
}
.rev-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 54px -24px rgba(108,92,231,0.5),
              0 0 0 2px rgba(108,92,231,0.45);
}
.rev-card:hover::before { transform: scaleX(1); }
.rev-card:hover::after { color: rgba(108,92,231,0.32); }

.rev-top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.rev-avatar {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--gold-2);
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
  box-shadow: 0 6px 16px -6px rgba(12,13,16,0.5);
  border: 1.5px solid rgba(108,92,231,0.5);
}
.rev-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rev-name { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.rev-country {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; color: var(--text-muted);
}
.rev-flag { font-size: 0.95rem; line-height: 1; }
.rev-repeat {
  margin-left: auto; align-self: flex-start;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: #5a3fd6;
  background: rgba(108,92,231,0.16);
  border: 1px solid rgba(108,92,231,0.4);
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.rev-stars {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  color: var(--gold); font-size: 0.95rem; letter-spacing: 1px;
}
.rev-score { color: var(--ink); font-weight: 700; font-size: 0.82rem; letter-spacing: 0; }
.rev-text {
  flex: 1 1 auto;
  font-size: 0.9rem; line-height: 1.7; color: var(--text);
  position: relative; z-index: 1; margin-bottom: 18px;
}
.rev-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border-2);
}
.rev-verified {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; color: #1DBF73;
}
.rev-verified svg { width: 14px; height: 14px; }
.rev-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.74rem; font-weight: 600; color: var(--ink);
  transition: color 0.3s, gap 0.3s;
}
.rev-card:hover .rev-link { color: #5a3fd6; gap: 9px; }

@media (max-width: 900px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .rev-grid { grid-template-columns: 1fr; }
  .rev-item { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST PAGE  (single article + permalink)
   ═══════════════════════════════════════════════════════════ */
.post-hero {
  background: linear-gradient(180deg, var(--white), var(--mist));
  padding: calc(var(--nav-h) + 54px) clamp(20px,4vw,48px) 44px;
  text-align: center;
}
.post-hero-inner { max-width: 840px; margin: 0 auto; }
.post-cat {
  display: inline-block; font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); background: linear-gradient(135deg, var(--gold-2), var(--gold));
  padding: 6px 15px; border-radius: 999px; margin-bottom: 20px;
  box-shadow: 0 8px 20px -8px rgba(108,92,231,0.6);
}
.post-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.1;
  letter-spacing: -0.03em; color: var(--ink); margin-bottom: 20px;
}
.post-meta {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 16px; color: var(--text-muted); font-size: 0.85rem;
}
.post-meta .pm-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.post-meta strong { color: var(--ink); font-weight: 600; }
.post-hero-img {
  max-width: 1000px; margin: 38px auto 0; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(12,13,16,0.45); border: 1px solid var(--border);
  aspect-ratio: 16 / 8;
}
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-back { max-width: 760px; margin: 0 auto; padding: 30px clamp(20px,4vw,24px) 0; }
.post-back a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
  transition: gap 0.25s, color 0.25s;
}
.post-back a:hover { gap: 12px; color: #5a3fd6; }

.post-body {
  max-width: 760px; margin: 0 auto; padding: 18px clamp(20px,4vw,24px) 10px;
  font-size: 1.05rem; line-height: 1.85; color: var(--text);
}
.post-body > p { margin-bottom: 26px; }
.post-body > p:first-of-type { font-size: 1.15rem; color: var(--ink-2); line-height: 1.7; }
.post-body h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; color: var(--ink); letter-spacing: -0.02em;
  margin: 46px 0 16px; padding-left: 16px; border-left: 4px solid var(--gold);
}
.post-body h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem; color: var(--ink); margin: 34px 0 12px;
}
.post-body ul, .post-body ol { margin: 0 0 26px; padding-left: 22px; }
.post-body li { margin-bottom: 10px; }
.post-body li::marker { color: var(--gold); }
.post-body a { color: #5a3fd6; text-decoration: underline; }
.post-body strong { color: var(--ink); }
.post-body blockquote {
  margin: 34px 0; padding: 18px 26px;
  border-left: 4px solid var(--gold);
  background: var(--mist); border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--ink-2);
}
/* in-content image — generous gaps before & after */
.post-figure { margin: 44px 0; }
.post-figure img {
  width: 100%; border-radius: 16px; display: block;
  box-shadow: 0 24px 50px -28px rgba(12,13,16,0.42);
  border: 1px solid var(--border);
}
.post-figure figcaption {
  margin-top: 14px; text-align: center;
  font-size: 0.82rem; color: var(--text-muted); font-style: italic;
}

.post-cta { max-width: 760px; margin: 46px auto 0; padding: 0 clamp(20px,4vw,24px); }
.post-cta-inner {
  background:
    radial-gradient(600px 200px at 80% 0%, rgba(108,92,231,0.16), transparent 70%),
    var(--ink);
  border-radius: 20px; padding: 40px 36px; text-align: center;
  border: 1px solid rgba(108,92,231,0.3);
}
.post-cta-inner h3 { font-family: var(--font-display); color: #fff; font-size: 1.55rem; margin-bottom: 10px; }
.post-cta-inner p { color: rgba(255,255,255,0.6); margin-bottom: 24px; font-size: 0.92rem; }
.post-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--ink); font-weight: 700; font-size: 0.9rem;
  padding: 14px 30px; border-radius: 999px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.post-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -8px rgba(108,92,231,0.6); }

@media (max-width: 600px) {
  .post-body { font-size: 1rem; }
  .post-body > p:first-of-type { font-size: 1.08rem; }
  .post-hero-img { aspect-ratio: 16 / 10; }
  .post-figure { margin: 32px 0; }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING CV DOWNLOAD BUTTON
   ═══════════════════════════════════════════════════════════ */
.cv-fab-wrap {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  animation: cvFloat 3.6s ease-in-out infinite;
}
.cv-fab {
  position: relative;
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  color: #fff; text-decoration: none;
  box-shadow: 0 14px 34px -8px rgba(108,92,231,0.65);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.cv-fab::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid var(--gold-2); opacity: 0.6; pointer-events: none;
  animation: cvPulse 2.6s ease-out infinite;
}
.cv-fab:hover { transform: scale(1.09); box-shadow: 0 22px 46px -8px rgba(108,92,231,0.85); }
.cv-fab-txt { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; line-height: 1; letter-spacing: 0.02em; }
.cv-fab-dl { width: 15px; height: 15px; }
.cv-fab-tip {
  position: absolute; right: 86px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 600;
  padding: 8px 13px; border-radius: 9px; white-space: nowrap;
  opacity: 0; pointer-events: none; box-shadow: var(--shadow-lg);
  transition: opacity 0.3s, transform 0.3s;
}
.cv-fab-tip::after {
  content: ''; position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 9px; height: 9px; background: var(--ink);
}
.cv-fab:hover .cv-fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes cvPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes cvFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.cv-drawer-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  color: #fff !important;
}
.cv-drawer-btn svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .cv-fab-wrap { right: 16px; bottom: 18px; }
  .cv-fab { width: 60px; height: 60px; }
  .cv-fab-txt { font-size: 0.98rem; }
}

.fiverr-nx {
  background: var(--ink);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}

.fnx-bg { position: absolute; inset: 0; pointer-events: none; }
.fnx-bg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.fnx-orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
}
.fnx-orb-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(29,191,115,0.07) 0%, transparent 70%);
}
.fnx-orb-2 {
  width: 350px; height: 350px;
  bottom: -80px; left: 20%;
  background: radial-gradient(circle, rgba(108,92,231,0.06) 0%, transparent 70%);
}

.fnx-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(48px,6vw,80px);
  align-items: center;
  position: relative; z-index: 1;
}

/* Eyebrow */
.fnx-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #1DBF73; margin-bottom: 20px;
}
.fnx-ew-dot { width: 7px; height: 7px; border-radius: 50%; background: #1DBF73; animation: hnxPing 2s infinite; }

/* Heading */
.fnx-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem,5vw,4.2rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.0; color: var(--white); margin-bottom: 24px;
}
.fnx-heading em { font-style: italic; color: var(--gold); }

.fnx-desc {
  font-size: 1rem; line-height: 1.85;
  color: rgba(255,255,255,0.52); max-width: 480px; margin-bottom: 36px;
}
.fnx-desc strong { color: var(--white); font-weight: 600; }

/* Stats */
.fnx-stats {
  display: flex; align-items: center; gap: 28px; margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fnx-sn {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.04em; display: block; line-height: 1;
}
.fnx-ss { font-size: 0.65rem; color: rgba(255,255,255,0.42); letter-spacing: 0.1em; text-transform: uppercase; }
.fnx-sdiv { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* Services list */
.fnx-services { margin-bottom: 36px; }
.fnx-service-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65); font-size: 0.95rem;
  transition: color 0.2s, gap 0.2s;
}
.fnx-service-item:hover { color: rgba(255,255,255,0.9); gap: 20px; }
.fnx-service-item:last-child { border-bottom: none; }
.fnx-svc-num { font-family: var(--font-mono); font-size: 0.62rem; color: var(--gold); letter-spacing: 0.1em; flex-shrink: 0; }

/* CTA button */
.fnx-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 32px; border-radius: var(--radius);
  background: transparent;
  border: 1.5px solid rgba(29,191,115,0.5);
  color: #1DBF73;
  font-size: 0.92rem; font-weight: 600;
  transition: border-color 0.3s, color 0.3s, transform 0.25s;
}
.fnx-btn:hover { border-color: #1DBF73; transform: translateY(-2px); color: var(--ink); }
.fnx-btn-fill {
  position: absolute; inset: 0;
  background: #1DBF73;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  z-index: -1;
}
.fnx-btn:hover .fnx-btn-fill { transform: scaleX(1); }
.fnx-btn-txt { position: relative; z-index: 1; }
.fnx-btn-icon { position: relative; z-index: 1; font-size: 1.1rem; transition: transform 0.3s; }
.fnx-btn:hover .fnx-btn-icon { transform: translate(3px,-3px); }

/* Profile card */
.fnx-card-side { position: relative; }
.fnx-profile-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.fnx-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(0,0,0,0.5);
}

.fnx-card-header {
  position: relative;
  background: linear-gradient(135deg, rgba(29,191,115,0.15) 0%, rgba(12,13,16,0.4) 100%);
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fnx-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 0%, rgba(29,191,115,0.15) 0%, transparent 70%);
}
.fnx-fv-logo { margin-bottom: 16px; }
.fnx-fv-logo svg { height: 28px; width: auto; }
.fnx-card-stars { display: flex; align-items: center; gap: 8px; }
.fnx-card-stars span { color: #f7b731; font-size: 1rem; letter-spacing: 2px; }
.fnx-card-stars strong { color: white; font-family: var(--font-display); font-size: 1.2rem; }

.fnx-card-body { padding: 22px 28px 28px; }
.fnx-card-badge {
  display: inline-block;
  background: rgba(29,191,115,0.15); border: 1px solid rgba(29,191,115,0.4);
  border-radius: 100px; padding: 4px 14px;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: #1DBF73;
  margin-bottom: 12px;
}
.fnx-card-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 4px; }
.fnx-card-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.fnx-card-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 18px; }

.fnx-mini-services { display: flex; flex-direction: column; gap: 0; margin-bottom: 18px; }
.fnx-ms-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
}
.fnx-ms-item:last-child { border-bottom: none; }
.fnx-ms-icon { font-size: 1rem; flex-shrink: 0; }
.fnx-ms-from { margin-left: auto; font-family: var(--font-mono); font-size: 0.68rem; color: var(--gold); }

.fnx-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.07);
}
.fnx-cf-orders { font-size: 0.75rem; color: rgba(255,255,255,0.38); }
.fnx-cf-online { font-size: 0.75rem; color: #1DBF73; font-weight: 600; }

/* Float tag */
.fnx-float-tag {
  position: absolute; top: -14px; right: 24px;
  background: var(--gold); color: var(--ink);
  border-radius: 100px; padding: 7px 18px;
  font-size: 0.78rem; font-weight: 700;
  box-shadow: 0 6px 20px rgba(108,92,231,0.45);
  animation: anxFloat 4s ease-in-out infinite alternate;
}

@media (max-width: 960px) {
  .fnx-inner { grid-template-columns: 1fr; }
  .fnx-card-side { order: -1; }
}


/* ═══════════════════════════════════════════════════════════════════
   SERVICES NX — Grid with animated hover cards
═══════════════════════════════════════════════════════════════════ */

.svx-section {
  background: var(--white);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}

/* Background decorative lines */
.svx-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.svx-bg-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(108,92,231,0.15), transparent);
}
.svx-line-1 { height: 80%; top: 10%; left: 8%; }
.svx-line-2 { height: 60%; top: 20%; right: 8%; }

.svx-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}

/* ── Section header ─────────────────────────── */
.svx-header { text-align: center; margin-bottom: clamp(48px,6vw,72px); }

.svx-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.svx-ew-dash { display: block; width: 32px; height: 1px; background: var(--gold); }

.svx-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.05; color: var(--ink); margin-bottom: 18px;
}
.svx-heading em { font-style: italic; color: var(--gold); }

.svx-subtext {
  font-size: 1rem; color: var(--text-muted);
  max-width: 480px; margin: 0 auto; line-height: 1.75;
}

/* ── Grid layout ────────────────────────────── */
.svx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* ── Base card ──────────────────────────────── */
.svx-card {
  position: relative;
  background: var(--white);
  padding: 32px 28px 28px;
  display: block;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}

/* Hover background fill that sweeps up */
.svx-card-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.svx-card:hover .svx-card-bg { transform: translateY(0); }

/* Gold bottom line that grows */
.svx-card-line {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--gold);
  transition: width 0.42s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.svx-card:hover .svx-card-line { width: 100%; }

.svx-card-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; height: 100%;
  min-height: 220px;
}

/* Card top: number + icon */
.svx-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}
.svx-num {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.12em; color: var(--gold);
  transition: color 0.3s;
}
.svx-card:hover .svx-num { color: rgba(108,92,231,0.7); }

.svx-icon {
  width: 36px; height: 36px;
  background: rgba(108,92,231,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.svx-icon svg { width: 18px; height: 18px; stroke: var(--gold); transition: stroke 0.3s; }
.svx-card:hover .svx-icon { background: rgba(108,92,231,0.2); transform: rotate(10deg) scale(1.1); }

/* Card body */
.svx-card-body { flex: 1; }

.svx-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  line-height: 1.2; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 12px;
  transition: color 0.3s;
}
.svx-card:hover .svx-name { color: var(--white); }

.svx-desc {
  font-size: 0.82rem; line-height: 1.65;
  color: var(--text-muted);
  transition: color 0.3s;
}
.svx-card:hover .svx-desc { color: rgba(255,255,255,0.6); }

/* Card footer */
.svx-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-2);
  transition: border-color 0.3s;
}
.svx-card:hover .svx-card-foot { border-top-color: rgba(255,255,255,0.1); }

.svx-price {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}
.svx-card:hover .svx-price { color: var(--gold-2); }

.svx-arr {
  font-size: 1rem; color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
  display: inline-block;
}
.svx-card:hover .svx-arr { transform: translate(5px,-5px); color: var(--gold); }


/* ── Bottom CTA ─────────────────────────────── */
.svx-bottom-cta {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.svx-cta-txt { font-size: 1rem; color: var(--text-muted); }

.svx-cta-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; border-radius: var(--radius);
  border: 1.5px solid var(--ink); color: var(--ink);
  font-size: 0.9rem; font-weight: 600;
  transition: color 0.3s, transform 0.25s;
}
.svx-cta-btn:hover { transform: translateY(-2px); color: var(--white); }
.svx-cta-fill {
  position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  z-index: -1;
}
.svx-cta-btn:hover .svx-cta-fill { transform: scaleX(1); }
.svx-cta-arr { font-size: 1.05rem; transition: transform 0.3s; position: relative; z-index: 1; }
.svx-cta-btn span:first-child { position: relative; z-index: 1; }
.svx-cta-btn:hover .svx-cta-arr { transform: translateX(4px); }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .svx-grid { grid-template-columns: repeat(3, 1fr); }

}
@media (max-width: 720px) {
  .svx-grid { grid-template-columns: repeat(2, 1fr); }

}
@media (max-width: 480px) {
  .svx-grid { grid-template-columns: 1fr; }

}


/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGE HERO BUTTONS — premium animated
═══════════════════════════════════════════════════════════════ */
.hero-btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--ink) !important;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer; text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.28s,
              background 0.28s;
  white-space: nowrap;
}
.hero-btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.hero-btn-primary::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1);
  margin-left: 2px;
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(108,92,231,0.5);
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--ink) !important;
}
.hero-btn-primary:hover::before { transform: translateX(150%); }
.hero-btn-primary:hover::after { transform: translateX(6px); }

.hero-btn-outline {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
  padding: 13px 34px;
  background: transparent;
  color: white !important;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer; text-decoration: none;
  transition: color 0.3s, border-color 0.3s, transform 0.28s;
  white-space: nowrap;
  z-index: 0;
}
.hero-btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: #1DBF73;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  z-index: -1;
}
.hero-btn-outline::after {
  content: ' ↗';
  display: inline-block;
  margin-left: 2px;
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1);
}
.hero-btn-outline:hover {
  color: white !important;
  border-color: #1DBF73;
  transform: translateY(-3px);
}
.hero-btn-outline:hover::before { transform: scaleX(1); }
.hero-btn-outline:hover::after { transform: translate(4px,-4px); }

/* ── Service page hero section — light bg context ── */
/* page-hero-v2 is dark (ink bg) — outline btn stays white/green, no override needed */
.page-hero-v2 .hero-btn-outline {
  color: white !important;
  border-color: rgba(29,191,115,0.6);
}
.page-hero-v2 .hero-btn-outline:hover {
  color: white !important;
  border-color: #1DBF73;
}

/* ── Sidebar buttons on service pages */
/* Sidebar buttons on service pages */
.sidebar-price-card .btn-primary,
.sidebar-price-card .btn-outline {
  display: block; text-align: center;
  padding: 13px 20px;
  font-size: 0.88rem; font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.25s;
}
.sidebar-price-card .btn-primary {
  background: var(--ink); color: white;
  margin-top: 16px;
}
.sidebar-price-card .btn-primary:hover {
  background: var(--gold); color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108,92,231,0.35);
}
.sidebar-price-card .btn-outline {
  border: 1.5px solid rgba(29,191,115,0.5);
  color: #1DBF73; margin-top: 10px;
}
.sidebar-price-card .btn-outline:hover {
  background: #1DBF73; color: white;
  border-color: #1DBF73;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICE SIDEBAR BUTTONS — Premium animated
═══════════════════════════════════════════════════════════════════ */
.svc-sidebar-btn {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  margin-top: 12px;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.25s;
  letter-spacing: 0.01em;
}
.svc-sidebar-btn:first-child { margin-top: 16px; }

/* Gold primary */
.svc-sidebar-primary {
  background: var(--gold);
  color: var(--ink) !important;
  border: 2px solid var(--gold);
}
.svc-sidebar-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(108,92,231,0.45);
  color: var(--ink) !important;
  background: var(--gold-2);
  border-color: var(--gold-2);
}
.svc-sbtn-glow {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.svc-sidebar-primary:hover .svc-sbtn-glow { transform: translateX(150%); }

/* Fiverr green outline fill */
.svc-sidebar-fiverr {
  background: transparent;
  color: #1DBF73 !important;
  border: 2px solid rgba(29,191,115,0.45);
  z-index: 0;
}
.svc-sidebar-fiverr:hover {
  transform: translateY(-2px);
  color: white !important;
  border-color: #1DBF73;
  box-shadow: 0 8px 24px rgba(29,191,115,0.3);
}
.svc-sbtn-fill {
  position: absolute; inset: 0;
  background: #1DBF73;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  z-index: -1;
  pointer-events: none;
}
.svc-sidebar-fiverr:hover .svc-sbtn-fill { transform: scaleX(1); }
.svc-sbtn-arr {
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.svc-sidebar-primary:hover .svc-sbtn-arr { transform: translateX(4px); }
.svc-sidebar-fiverr:hover .svc-sbtn-arr { transform: translate(3px,-3px); }

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS GRID (responsive)
   ═══════════════════════════════════════════════════════════ */
.blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1000px) { .blog-cards { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 640px)  { .blog-cards { grid-template-columns: 1fr; gap: 22px; } }

/* ═══════════════════════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVENESS  (header · footer · grids)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  /* Any inline multi-column grid stacks on phones (contact, about rows, etc.) */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  [style*="gap:60px"]  { gap: 32px !important; }
  [style*="gap:48px"]  { gap: 28px !important; }
  [style*="gap: 60px"] { gap: 32px !important; }
}

/* ── Header / nav ── */
@media (max-width: 900px) {
  .nav-drawer { width: min(320px, 86vw); }
}
@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .nav-inner { padding: 0 16px; }
  .nav-logo-text { font-size: 1.02rem; }
  .nav-logo img, .nav-logo svg { height: 32px; width: auto; }
  .nav-burger { display: flex; }
}

/* ── Footer ── */
@media (max-width: 760px) {
  footer { padding: 56px 20px 30px; }
  .footer-services ul { grid-template-columns: 1fr; grid-auto-flow: row; grid-template-rows: none; gap: 11px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}
@media (max-width: 600px) {
  .footer-brand p { max-width: 100%; }
  .footer-social { flex-wrap: wrap; }
}

/* ── Reviews / cards keep tidy on phones ── */
@media (max-width: 600px) {
  .rev-grid, .ghl-gallery, .pf-gallery { gap: 18px; }
}

/* ── Headline overflow safety ── */
@media (max-width: 600px) {
  h1, h2, h3, .display-xl, .display-lg, .display-md, .post-title, .hnx-heading { word-break: break-word; overflow-wrap: anywhere; }
}

