/* ====================================================================
   Malik Hasnain — CodeCanyon Launch Expert Portfolio v2
   Real photos, real tech logos, particle effects, full conversion focus
   ==================================================================== */

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

:root {
  --primary-50:  #F3F0FF;
  --primary-100: #E9E2FF;
  --primary-200: #D4C5FF;
  --primary-300: #B69BFF;
  --primary-400: #9774FF;
  --primary-500: #7B4FED;
  --primary-600: #6C3CE1;
  --primary-700: #5B2BC4;
  --primary-800: #46209A;
  --primary-900: #2E1463;

  --ink-900: #0B0B14;
  --ink-800: #15172A;
  --ink-700: #1F2237;
  --ink-600: #2A2D45;
  --ink-500: #3B3F5C;
  --ink-400: #5A5F7A;
  --ink-300: #8E92A8;
  --ink-200: #C5C8D6;
  --ink-100: #E6E8EF;
  --ink-50:  #F4F5FA;

  --bg: #FFFFFF;
  --bg-soft: #F7F8FC;
  --bg-card: #FFFFFF;

  --green: #10B981;
  --teal: #14B8A6;
  --blue: #3B82F6;
  --indigo: #6366F1;
  --orange: #F59E0B;
  --red: #EF4444;
  --pink: #EC4899;
  --cyan: #06B6D4;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 12px rgba(20, 20, 50, 0.06);
  --shadow:    0 10px 30px rgba(20, 20, 50, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 20, 50, 0.14);
  --shadow-purple: 0 18px 40px rgba(108, 60, 225, 0.25);
  --shadow-purple-strong: 0 20px 50px rgba(108, 60, 225, 0.5);

  --container: 1200px;
  --gutter: 24px;

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;

  --ease: cubic-bezier(.2,.7,.2,1);
  --transition: 240ms var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink-800);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0B0B14 0%, #2E1463 50%, #5B2BC4 100%);
  display: grid; place-items: center;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-mark {
  width: 100px; height: 100px;
  margin: 0 auto 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: preloaderPulse 1.6s ease-in-out infinite;
}
.preloader-mark svg { width: 60px; height: 60px; }
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 30px 80px rgba(124, 58, 237, 0.5); }
}
.preloader-text {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 22px;
}
.preloader-text span { color: #B69BFF; display: block; font-size: 11px; margin-top: 4px; letter-spacing: 4px; }
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #7B4FED, #06B6D4);
  border-radius: 99px;
  animation: preloaderBar 1.4s ease-in-out infinite;
}
@keyframes preloaderBar {
  0% { transform: translateX(-100%); width: 40%; }
  50% { width: 70%; }
  100% { transform: translateX(250%); width: 40%; }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #7B4FED, #06B6D4, #10B981);
  z-index: 100;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
  transition: width 80ms linear;
}

/* ============================================================
   PARTICLE CANVAS
   ============================================================ */
.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.6;
}

/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
  will-change: transform;
  mix-blend-mode: screen;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(20, 20, 50, 0.06);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: #cfe8ff;
  display: block;
  box-shadow: 0 6px 18px rgba(108, 60, 225, 0.18);
  overflow: hidden;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.brand-mark-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line1 { font-size: 18px; color: var(--ink-900); }
.brand-accent { color: var(--primary-600); }
.brand-line2 { font-size: 10px; color: var(--ink-400); letter-spacing: 1.6px; margin-top: 4px; }

.nav { display: flex; gap: 26px; }
.nav a {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-600);
  position: relative;
  transition: color var(--transition);
}
.nav a:hover { color: var(--primary-600); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--primary-600);
  transition: width var(--transition);
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn i { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(108, 60, 225, 0.4);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary.glow {
  box-shadow: 0 18px 40px rgba(108, 60, 225, 0.45), 0 0 0 0 rgba(124, 58, 237, 0.5);
  animation: btnGlow 2.4s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 18px 40px rgba(108, 60, 225, 0.45), 0 0 0 0 rgba(124, 58, 237, 0.5); }
  50% { box-shadow: 0 18px 40px rgba(108, 60, 225, 0.45), 0 0 0 16px rgba(124, 58, 237, 0); }
}

.btn-ghost {
  background: transparent;
  color: var(--ink-800);
  border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover {
  border-color: var(--primary-500);
  color: var(--primary-600);
  background: var(--primary-50);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink-800);
  border: 1.5px solid var(--ink-200);
}
.btn-outline:hover {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
  transform: translateY(-2px);
}

.btn-on-dark {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: #fff;
  text-align: center;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
  flex-direction: column;
  line-height: 1.2;
  gap: 4px;
}
.btn-on-dark i { width: 22px; height: 22px; }
.btn-on-dark small { font-weight: 500; font-size: 11px; letter-spacing: 1.4px; opacity: 0.85; }
.btn-on-dark:hover { transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('assets/bg-mesh.jpg') center / cover no-repeat;
  opacity: 0.4;
  filter: saturate(1.2) hue-rotate(-10deg);
  animation: heroBgZoom 30s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(255,255,255,0.9) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(243, 240, 255, 0.6) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.9) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left { position: relative; }

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.rating-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.rating-pill-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  border-radius: 10px;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(108, 60, 225, 0.3);
}
.rating-pill-icon i { width: 20px; height: 20px; }
.rating-pill-text { font-weight: 800; font-size: 13px; letter-spacing: 1px; color: var(--ink-900); }
.rating-pill-sub { font-size: 10px; color: var(--ink-400); letter-spacing: 1.6px; margin-top: 2px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: statusPulse 1.8s ease-in-out infinite;
}
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.rating-stars {
  display: flex; gap: 2px; color: #F59E0B;
  padding-left: 8px;
  border-left: 1px solid var(--ink-100);
}
.rating-stars i { width: 14px; height: 14px; fill: currentColor; }
.rating-stars.big i { width: 22px; height: 22px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title .line { display: block; }
.hero-title .line-1 { font-size: clamp(38px, 4.8vw, 64px); color: var(--ink-900); }
.hero-title .line-2 {
  font-size: clamp(48px, 6.4vw, 88px);
  background: linear-gradient(135deg, #7B4FED 0%, #5B2BC4 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-title .line-3 { font-size: clamp(48px, 6.4vw, 88px); color: var(--ink-900); }
.hero-title .line-4 {
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-top: 18px;
  background: linear-gradient(135deg, #0B0B14 0%, #1F2237 50%, #2E1463 100%);
  padding: 14px 28px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(11, 11, 20, 0.25);
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero-title .hl-green { color: var(--green); }
.hero-title .hl-underline {
  background: linear-gradient(180deg, transparent 60%, rgba(245, 158, 11, 0.45) 60%);
  padding: 0 6px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-40deg);
  animation: wordReveal 800ms var(--ease) forwards;
}
.hero-title .line-1 .word:nth-child(1) { animation-delay: 100ms; }
.hero-title .line-1 .word:nth-child(2) { animation-delay: 200ms; }
.hero-title .line-2 { animation-delay: 300ms; opacity: 0; transform: translateY(40px); animation: lineReveal 800ms var(--ease) 300ms forwards; }
.hero-title .line-3 .word:nth-child(1) { animation-delay: 500ms; }
.hero-title .line-3 .word:nth-child(2) { animation-delay: 600ms; }
.hero-title .line-4 .word:nth-child(1) { animation-delay: 700ms; }
.hero-title .line-4 .word:nth-child(2) { animation-delay: 800ms; }
.hero-title .line-4 .word:nth-child(3) { animation-delay: 900ms; }
.hero-title .line-4 .word:nth-child(4) { animation-delay: 1000ms; }
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 700ms var(--ease) 1000ms forwards;
}
.hl-text {
  font-weight: 700;
  color: var(--ink-800);
}
.kw {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub, .hero-ctas, .hero-trust { transform: translateY(20px); }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 700ms var(--ease) 1100ms forwards;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 22px;
  color: var(--ink-500);
  font-size: 14px; font-weight: 500;
  opacity: 0;
  animation: fadeUp 700ms var(--ease) 1200ms forwards;
}
.hero-trust li { display: flex; align-items: center; gap: 6px; }
.hero-trust i { width: 16px; height: 16px; color: var(--primary-600); }

/* Magnetic buttons */
.magnetic { transition: transform 200ms var(--ease); will-change: transform; }

/* ============================================================
   HERO RIGHT (photo + why sidebar)
   ============================================================ */
.hero-right {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 400px;
  margin-left: auto;
  width: 100%;
}
.photo-glow {
  position: absolute;
  inset: -20px;
  background: conic-gradient(from 0deg, #7B4FED, #06B6D4, #10B981, #F59E0B, #EC4899, #7B4FED);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  z-index: -1;
  animation: photoGlow 8s linear infinite;
}
@keyframes photoGlow {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
.avatar-card {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.avatar-photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  background: linear-gradient(135deg, #A78BFA, #6366F1);
}
.avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 600ms var(--ease);
}
.avatar-card:hover .avatar-photo img { transform: scale(1.04); }

.quote-card {
  position: absolute;
  right: -10px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(11, 11, 20, 0.25);
  z-index: 3;
  max-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: quoteBob 5s ease-in-out infinite;
}
@keyframes quoteBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.quote-card::before {
  content: "";
  position: absolute;
  top: -10px; left: 30px;
  width: 20px; height: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
}
.quote-mark {
  position: absolute; top: 8px; left: 14px;
  width: 30px; height: 30px;
  color: var(--primary-500);
  opacity: 0.25;
}
.quote-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink-800);
  line-height: 1.25;
  margin-bottom: 12px;
  position: relative;
}
.quote-text .hl {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote-author { display: flex; flex-direction: column; }
.signature {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--primary-700);
  font-weight: 700;
  line-height: 1;
}
.quote-role { font-size: 11px; color: var(--ink-400); margin-top: 4px; }

.float-badge {
  position: absolute;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-800);
  box-shadow: 0 10px 30px rgba(11, 11, 20, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: badgeBob 4s ease-in-out infinite;
}
.float-badge i { width: 14px; height: 14px; color: var(--primary-600); }
.fb-1 { top: 8%; left: -10px; animation-delay: 0s; }
.fb-2 { bottom: 38%; left: -10px; animation-delay: 0.7s; }
.fb-3 { bottom: 12%; right: -8px; animation-delay: 1.4s; }
@keyframes badgeBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Why card (sidebar) */
.why-card {
  background: linear-gradient(160deg, #0F1226 0%, #1A1F3A 60%, #2E1463 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: 0 24px 60px rgba(11, 11, 20, 0.4);
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-width: 240px;
}
.why-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5) 0%, transparent 60%);
  pointer-events: none;
  animation: whyGlow 4s ease-in-out infinite;
}
@keyframes whyGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
.why-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.why-title span { color: var(--primary-300); }
.why-list { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.why-list strong { display: block; font-weight: 700; color: #fff; }
.why-list span { color: var(--ink-200); font-size: 12.5px; }
.why-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(108, 60, 225, 0.4);
  transition: transform var(--transition);
}
.why-list li:hover .why-ico { transform: rotate(360deg) scale(1.1); }
.why-ico i { width: 18px; height: 18px; }
.why-pct {
  display: inline-block;
  margin-top: 2px;
  font-weight: 800;
  color: var(--green) !important;
  font-size: 13px !important;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 50px 0 70px;
  background: var(--bg-soft);
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.stat-card:hover::before { opacity: 1; }
.stat-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin: 0 auto 12px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition);
}
.stat-card:hover .stat-ico { transform: rotate(360deg) scale(1.05); }
.stat-ico i { width: 24px; height: 24px; }
.ico-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.ico-teal   { background: linear-gradient(135deg, #14B8A6, #0F766E); }
.ico-orange { background: linear-gradient(135deg, #F59E0B, #D97706); }
.ico-blue   { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.ico-red    { background: linear-gradient(135deg, #EF4444, #B91C1C); }
.ico-indigo { background: linear-gradient(135deg, #6366F1, #4338CA); }
.ico-green  { background: linear-gradient(135deg, #10B981, #059669); }

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--ink-900);
  margin-bottom: 4px;
  position: relative;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================================
   PANELS / Two-col layout (Services + Tech)
   ============================================================ */
.what-tech { padding: 70px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.panel {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.panel-head { margin-bottom: 24px; }
.panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--primary-600);
  letter-spacing: 2px;
  padding: 5px 10px;
  background: var(--primary-50);
  border-radius: 99px;
  border: 1px solid var(--primary-100);
  margin-bottom: 12px;
  align-self: flex-start;
}
.panel-eyebrow i { width: 12px; height: 12px; }
.panel-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  line-height: 1.1;
}
.panel-sub { color: var(--ink-500); font-size: 14px; }

/* ============================================================
   SERVICES — Journey / 4 Phases
   ============================================================ */
.services-panel {
  background:
    radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
    #fff;
}
.services-head .panel-eyebrow {
  background: linear-gradient(135deg, #EDE9FE, #F3E8FF);
  border-color: #DDD6FE;
  color: var(--primary-700);
}
.services-head .panel-title {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--primary-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.journey {
  position: relative;
  padding: 8px 0;
  flex: 1;
}
.journey-track {
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: var(--ink-100);
  border-radius: 99px;
  z-index: 0;
  overflow: hidden;
}
.journey-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #7B4FED 0%, #06B6D4 50%, #10B981 100%);
  border-radius: 99px;
  animation: journeyFill 1.6s var(--ease) forwards;
  transform-origin: top;
  transform: scaleY(0);
}
@keyframes journeyFill {
  to { transform: scaleY(1); }
}

.phase {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 10px 0;
  z-index: 1;
}
.phase-marker {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 60px;
}
.phase-num {
  position: absolute;
  top: -6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-400);
  background: #fff;
  padding: 0 4px;
  z-index: 2;
}
.phase-ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition);
  border: 4px solid #fff;
}
.phase-ico i { width: 24px; height: 24px; }
.phase:hover .phase-ico { transform: scale(1.08); }
.phase-1 .phase-ico { background: linear-gradient(135deg, #7B4FED, #5B2BC4); }
.phase-2 .phase-ico { background: linear-gradient(135deg, #EC4899, #DB2777); }
.phase-3 .phase-ico { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.phase-4 .phase-ico { background: linear-gradient(135deg, #10B981, #059669); }

.phase-body {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: all var(--transition);
  position: relative;
}
.phase-body::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 20px;
  width: 12px; height: 12px;
  background: var(--bg-soft);
  border-left: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  transform: rotate(45deg);
}
.phase:hover .phase-body {
  background: #fff;
  box-shadow: var(--shadow);
  border-color: var(--primary-200);
}
.phase-body h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--ink-900);
  margin-bottom: 1px;
  display: inline-block;
  margin-right: 6px;
}
.phase-body > p {
  font-size: 11.5px;
  color: var(--ink-500);
  margin-bottom: 6px;
  display: inline-block;
}
.phase-services {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 6px;
}
.phase-services li {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-700);
  padding: 2px 7px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 99px;
}
.phase-services i {
  width: 10px; height: 10px;
  color: var(--green);
  flex-shrink: 0;
}
.phase-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 10.5px;
  color: var(--ink-500);
  padding-top: 4px;
  border-top: 1px dashed var(--ink-200);
  width: 100%;
  margin-top: 2px;
}
.phase-stat strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  color: var(--primary-700);
}

/* Outcome panel — bridges gap between phases and stats footer */
.journey-outcome {
  margin: 18px 0 14px;
  padding: 16px 16px 18px;
  background: linear-gradient(135deg, #FAF5FF 0%, #F0F9FF 50%, #ECFDF5 100%);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.journey-outcome::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.journey-outcome::after {
  content: "";
  position: absolute;
  bottom: -30px; left: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.outcome-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.outcome-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F59E0B, #EC4899);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
  animation: outcomeBounce 2.5s ease-in-out infinite;
}
@keyframes outcomeBounce {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50% { transform: rotate(6deg) scale(1.08); }
}
.outcome-ico i { width: 18px; height: 18px; }
.outcome-head strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--ink-900);
  line-height: 1.1;
}
.outcome-head small {
  display: block;
  font-size: 10.5px;
  color: var(--ink-500);
  line-height: 1.2;
  margin-top: 1px;
}
.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.outcome-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
  line-height: 1.3;
}
.outcome-list i {
  width: 14px; height: 14px;
  color: var(--green);
  flex-shrink: 0;
}
.outcome-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  font-family: var(--font-display);
  border-radius: 99px;
  box-shadow: 0 6px 16px rgba(108, 60, 225, 0.3);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.outcome-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.outcome-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(108, 60, 225, 0.45);
}
.outcome-cta:hover::before { transform: translateX(100%); }
.outcome-cta i {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}
.outcome-cta:hover i { transform: translateX(3px); }

.journey-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding: 14px 12px;
  background: linear-gradient(135deg, #0B0B14 0%, #1A1F3A 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.journey-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.journey-foot-stat {
  text-align: center;
  position: relative;
  z-index: 1;
}
.journey-foot-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, #06B6D4, #10B981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.journey-foot-stat span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

/* ============================================================
   TECH STACK
   ============================================================ */
.tech-panel {
  background:
    radial-gradient(ellipse at top left, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
    #fff;
}
.tech-head .panel-eyebrow {
  background: linear-gradient(135deg, #CFFAFE, #E0F2FE);
  border-color: #BAE6FD;
  color: #0E7490;
}
.tech-head .panel-title {
  background: linear-gradient(135deg, var(--ink-900) 0%, #0891B2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tech-category {
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 12px;
  transition: all var(--transition);
}
.tech-category:hover {
  background: #fff;
  border-color: var(--primary-200);
  box-shadow: var(--shadow-sm);
}
.tech-cat-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.tech-cat-head > i {
  width: 16px; height: 16px;
  color: var(--primary-600);
  flex-shrink: 0;
}
.tech-cat-head > span:not(.tech-cat-meta) {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11.5px;
  color: var(--ink-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tech-cat-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--ink-200), transparent);
  margin: 0 4px;
  min-width: 8px;
}
.tech-cat-meta {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-400);
  text-transform: lowercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.tech-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

/* New tech-mini card design */
.tech-mini {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  transition: all var(--transition);
  cursor: default;
  overflow: hidden;
}
.tech-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.tech-mini:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand) 18%, transparent);
}
.tech-mini:hover::before { opacity: 1; }

.tech-mini-top {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.tech-mini-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  transition: transform var(--transition);
}
.tech-mini:hover .tech-mini-logo { transform: scale(1.1) rotate(8deg); }
.tech-mini-logo img { width: 18px; height: 18px; object-fit: contain; }

.tech-mini-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tech-mini-info strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
  font-family: var(--font-display);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tech-mini-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-500);
  line-height: 1;
  letter-spacing: 0.2px;
}

.tech-mini-top-badge {
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tech-mini-top-badge.top {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: #fff;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.4);
  animation: topBadgePulse 2.5s ease-in-out infinite;
}
@keyframes topBadgePulse {
  0%, 100% { box-shadow: 0 2px 6px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 2px 12px rgba(245, 158, 11, 0.7); }
}

.tech-mini-bot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.tech-mini-prog {
  height: 5px;
  background: var(--ink-100);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.tech-mini-prog span {
  display: block;
  height: 100%;
  border-radius: 99px;
  transform-origin: left;
  animation: progFill 1.4s var(--ease) 0.4s backwards;
  position: relative;
}
.tech-mini-prog span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  animation: progShine 2.4s ease-in-out infinite;
  border-radius: 99px;
}
@keyframes progShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes progFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.tech-mini-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.tech-mini-count {
  font-size: 10px;
  color: var(--ink-500);
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.tech-mini-count strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--ink-900);
  line-height: 1;
}
.tech-mini-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10.5px;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 1px 6px;
  border-radius: 99px;
  line-height: 1.4;
}

.tech-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px dashed var(--ink-200);
  border-radius: 99px;
}
.tech-foot-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.tech-foot-tag {
  font-size: 11.5px;
  color: var(--ink-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tech-foot-tag i { width: 12px; height: 12px; color: var(--primary-500); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  overflow: hidden;
  position: relative;
}
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-400);
  letter-spacing: 3px;
  margin-bottom: 30px;
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-700);
  font-family: var(--font-display);
  flex-shrink: 0;
  padding: 8px 16px;
  background: #fff;
  border-radius: 99px;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.marquee-item:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow);
  border-color: var(--primary-300);
}
.marquee-item img {
  width: 28px; height: 28px;
  object-fit: contain;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 70px 0 50px;
  background: var(--bg-soft);
  position: relative;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--primary-700);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 38px;
  position: relative;
}
.section-title::before, .section-title::after {
  content: "";
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--primary-300);
  vertical-align: middle;
  margin: 0 14px;
}
.section-title.light { color: #fff; }
.section-title.light::before, .section-title.light::after { background: rgba(255,255,255,0.3); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-600);
  letter-spacing: 3px;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: var(--primary-50);
  border-radius: 99px;
  border: 1px solid var(--primary-100);
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .section-title { margin-bottom: 12px; }
.section-head .section-title::before, .section-head .section-title::after { display: none; }
.section-sub {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.6;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 30px 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 70px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-200), var(--primary-200), transparent);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 8px;
}
.step-ico {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 12px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
  transition: transform var(--transition);
}
.step:hover .step-ico { transform: translateY(-4px) scale(1.08); }
.step-ico i { width: 24px; height: 24px; }
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.step-text {
  font-size: 12.5px;
  color: var(--ink-500);
  font-weight: 500;
  line-height: 1.35;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(160deg, #0B0B14 0%, #15172A 50%, #1A1F3A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials .eyebrow { background: rgba(124, 58, 237, 0.2); border-color: rgba(124, 58, 237, 0.4); color: var(--primary-200); }
.testimonials .section-sub { color: rgba(255, 255, 255, 0.7); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
  perspective: 1000px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
  transform-style: preserve-3d;
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}
.testi-card.featured {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-color: rgba(124, 58, 237, 0.4);
}
.testi-badge {
  position: absolute;
  top: -10px; right: 20px;
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 4px;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}
.testi-badge i { width: 12px; height: 12px; }
.testi-stars { display: flex; gap: 2px; color: #F59E0B; margin-bottom: 16px; }
.testi-stars i { width: 16px; height: 16px; fill: currentColor; }
.testi-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 22px;
  min-height: 110px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font-display);
}
.testi-author strong { display: block; color: #fff; font-size: 14px; font-weight: 700; }
.testi-author span { font-size: 12px; color: rgba(255, 255, 255, 0.55); }

/* ============================================================
   PRICING — Fiverr-driven
   ============================================================ */
.pricing {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  perspective: 1000px;
  margin-bottom: 50px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}
.price-card.featured {
  background: linear-gradient(160deg, #0B0B14 0%, #15172A 50%, #2E1463 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(11, 11, 20, 0.3);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 99px;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
  animation: priceBadgePulse 2s ease-in-out infinite;
  display: inline-flex; align-items: center; gap: 4px;
  z-index: 2;
}
.price-badge i { width: 12px; height: 12px; }
@keyframes priceBadgePulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 8px 30px rgba(239, 68, 68, 0.7); }
}

.price-tier-head { margin-bottom: 12px; }
.price-tier-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--primary-50);
  color: var(--primary-700);
  border: 1px solid var(--primary-100);
}
.price-tier-tag i { width: 12px; height: 12px; }
.price-card.featured .price-tier-tag.tag-pop {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
  color: #FCD34D;
  border-color: rgba(245, 158, 11, 0.4);
}

.price-head { margin-bottom: 18px; }
.price-head h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 4px;
  color: inherit;
}
.price-head p { font-size: 13px; color: var(--ink-500); }
.price-card.featured .price-head p { color: rgba(255, 255, 255, 0.7); }

.price-pill {
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 16px;
  border: 1px solid var(--ink-100);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.price-pill.highlight {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
  border-color: rgba(124, 58, 237, 0.3);
}
.price-card.featured .price-pill { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); }
.price-card.featured .price-pill.highlight { background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3)); }
.price-from {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.price-card.featured .price-from { color: rgba(255, 255, 255, 0.7); }
.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card.featured .price-pill.highlight .price-amount {
  background: linear-gradient(135deg, #06B6D4, #7B4FED);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-currency {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-500);
}
.price-card.featured .price-currency { color: rgba(255, 255, 255, 0.6); }
.price-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #1DBF73;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-live-tag i { width: 8px; height: 8px; fill: currentColor; color: #1DBF73; }
.price-card.featured .price-live-tag { color: #6EE7B7; }
.price-card.featured .price-live-tag i { color: #6EE7B7; }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-700);
}
.price-card.featured .price-features li { color: rgba(255, 255, 255, 0.85); }
.price-features i {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  padding: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card.featured .price-features i { background: rgba(110, 231, 183, 0.2); color: #6EE7B7; }

.fiverr-mark { color: #1DBF73; }
.price-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  padding: 13px 18px;
  font-weight: 700;
}
.price-card .btn .fiverr-mark { transition: transform var(--transition); }
.price-card .btn:hover .fiverr-mark { transform: rotate(-12deg) scale(1.1); }

.price-fallback {
  display: block;
  text-align: center;
  font-size: 10.5px;
  color: var(--ink-400);
  margin-top: 8px;
}
.price-card.featured .price-fallback { color: rgba(255, 255, 255, 0.5); }
.price-fallback a {
  color: var(--primary-600);
  text-decoration: underline;
  font-weight: 600;
}
.price-card.featured .price-fallback a { color: #B69BFF; }

/* ===== Why me vs agencies comparison ===== */
.pricing-compare {
  background: linear-gradient(160deg, #FAF5FF 0%, #F0F9FF 100%);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.pricing-compare::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-compare-head { text-align: center; margin-bottom: 24px; position: relative; z-index: 1; }
.pricing-compare-head .eyebrow { display: inline-block; }
.pricing-compare-head h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink-900);
  margin-top: 8px;
}
.pricing-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.compare-col {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  padding: 22px 20px;
  position: relative;
  transition: all var(--transition);
}
.compare-col:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.compare-bad { border-color: rgba(239, 68, 68, 0.2); }
.compare-good {
  background: linear-gradient(160deg, #ECFDF5 0%, #F0FDF4 100%);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.1);
}
.compare-col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--ink-100);
}
.compare-col-head i {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.compare-bad .compare-col-head i { color: var(--red); }
.compare-good .compare-col-head i { color: var(--green); }
.compare-col-head span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-800);
}
.compare-col-price {
  margin-bottom: 14px;
}
.compare-amount {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink-900);
  line-height: 1.1;
  margin-bottom: 2px;
}
.compare-amount strong {
  background: linear-gradient(135deg, var(--green), #059669);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare-bad .compare-amount { color: var(--ink-700); }
.compare-col-price small { font-size: 11px; color: var(--ink-500); }
.compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-600);
  line-height: 1.35;
}
.compare-col li i {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare-bad li i { color: var(--red); }
.compare-good li i { color: var(--green); }

/* ===== Fiverr CTA banner ===== */
.pricing-fiverr {
  position: relative;
  background: linear-gradient(135deg, #0B0B14 0%, #15172A 50%, #1A1F3A 100%);
  border-radius: var(--radius-lg);
  padding: 40px 40px 44px;
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing-fiverr-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  background:
    radial-gradient(circle at 80% 30%, rgba(29, 191, 115, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.pricing-fiverr-bg::after {
  content: "";
  position: absolute;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  border: 1px solid rgba(29, 191, 115, 0.15);
  border-radius: 50%;
  pointer-events: none;
  animation: fiverrRingPulse 3s ease-in-out infinite;
}
@keyframes fiverrRingPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}
.pricing-fiverr-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.pricing-fiverr-content > .pricing-fiverr-text { min-width: 0; }
.pricing-fiverr-content > .pricing-fiverr-chat { min-width: 0; }
@media (max-width: 860px) {
  .pricing-fiverr-content { grid-template-columns: 1fr; gap: 32px; }
}
.pricing-fiverr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(29, 191, 115, 0.15);
  border: 1px solid rgba(29, 191, 115, 0.4);
  border-radius: 99px;
  color: #6EE7B7;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.pricing-fiverr-badge svg { color: #1DBF73; width: 18px; height: 18px; }
.pricing-fiverr h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pricing-fiverr p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 540px;
}
.pricing-fiverr-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-fiverr-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-fiverr-stat strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: #1DBF73;
  line-height: 1;
}
.pricing-fiverr-stat span {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-fiverr-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pricing-fiverr-btn {
  background: #1DBF73 !important;
  color: #fff !important;
  font-weight: 800;
}
.pricing-fiverr-btn:hover {
  background: #19A463 !important;
}
.pricing-fiverr-btn svg { color: #fff; }
.pricing-fiverr-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
}
.pricing-fiverr-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pricing-fiverr-trust i { width: 13px; height: 13px; color: #6EE7B7; }

/* === Chat preview (right side of banner) === */
.pricing-fiverr-chat {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-chat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px 16px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}
.pricing-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-chat-platform {
  margin-left: auto;
  width: 28px; height: 28px;
  background: #1DBF73;
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pricing-chat-platform svg { width: 16px; height: 16px; color: #fff; }
.pricing-chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1DBF73, #14A85F);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  position: relative;
  flex-shrink: 0;
}
.pricing-chat-avatar::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  background: #22C55E;
  border: 2px solid #0B0B14;
  border-radius: 50%;
}
.pricing-chat-info { flex: 1; min-width: 0; }
.pricing-chat-name {
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-chat-name .toprated-tick {
  width: 14px; height: 14px;
  background: #FFB400;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}
.pricing-chat-status {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}
.pricing-chat-status::before {
  content: "";
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
}
.pricing-chat-msgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}
.chat-bubble {
  max-width: 88%;
  padding: 9px 13px;
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.4;
  position: relative;
  animation: chatFade 0.5s ease-out both;
}
.chat-bubble.them {
  background: rgba(29, 191, 115, 0.15);
  border: 1px solid rgba(29, 191, 115, 0.3);
  color: #E5E7EB;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.you {
  background: linear-gradient(135deg, #1DBF73, #14A85F);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 14px rgba(29, 191, 115, 0.3);
}
.chat-bubble.them:nth-child(1) { animation-delay: 0.3s; }
.chat-bubble.you:nth-child(2) { animation-delay: 1.1s; }
.chat-bubble.them:nth-child(3) { animation-delay: 1.9s; }
@keyframes chatFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.pricing-chat-cta {
  margin-top: 12px;
  align-self: stretch;
  background: #1DBF73;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(29, 191, 115, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-chat-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(29, 191, 115, 0.55); background: #19A564; }
.pricing-chat-cta svg { width: 14px; height: 14px; color: #fff; flex-shrink: 0; }
.pricing-chat-cta i { width: 14px; height: 14px; }

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin: 40px auto 0;
  font-size: 14px;
  font-weight: 500;
  color: #18181B;
  padding: 14px 24px;
  background: #fff;
  border-radius: 99px;
  border: 1px solid #DDD6FE;
  box-shadow: 0 4px 14px rgba(108, 60, 225, 0.1);
  max-width: max-content;
}
.pricing-note i { width: 16px; height: 16px; color: #6C3CE1; flex-shrink: 0; }
.pricing-note strong { color: #6C3CE1; font-weight: 800; }
.pricing > .container { text-align: center; }

/* ============================================================
   FAQ — Redesigned
   ============================================================ */
.faq {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
    var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.faq-shell {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

/* ===== Sidebar ===== */
.faq-side {
  position: sticky;
  top: 90px;
  background: linear-gradient(160deg, #0B0B14 0%, #15172A 60%, #2E1463 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(11, 11, 20, 0.3);
  position: sticky;
  top: 90px;
  overflow: hidden;
}
.faq-side::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 60%);
  pointer-events: none;
  animation: faqSideGlow 6s ease-in-out infinite;
}
@keyframes faqSideGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
.faq-side .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 14px;
}
.faq-side .eyebrow i { color: var(--primary-300); }
.faq-side h2 {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.faq-side h2::before, .faq-side h2::after { display: none; }
.faq-side-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.faq-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.faq-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.faq-stat:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.faq-stat-ico {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  margin: 0 auto 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.faq-stat-ico i { width: 14px; height: 14px; }
.fq-purple { background: linear-gradient(135deg, #7B4FED, #5B2BC4); }
.fq-green { background: linear-gradient(135deg, #10B981, #059669); }
.faq-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  background: linear-gradient(135deg, #06B6D4, #10B981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 3px;
}
.faq-stat-label {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.2;
  font-weight: 500;
}

.faq-side-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.faq-cta-label {
  font-size: 10.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.faq-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.faq-cta-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(3px);
}
.faq-cta-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
}
.faq-cta-ico i, .faq-cta-ico svg { width: 16px; height: 16px; }
.faq-cta-fiverr:hover .faq-cta-ico { background: #1DBF73; }
.faq-cta-email:hover .faq-cta-ico { background: var(--cyan); }
.faq-cta-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.faq-cta-text strong {
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--font-display);
}
.faq-cta-text small {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.faq-cta-arrow {
  width: 16px; height: 16px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-cta-btn:hover .faq-cta-arrow {
  color: #fff;
  transform: translate(2px, -2px);
}

.faq-side-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}
.faq-side-foot i { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* ===== Main FAQ area ===== */
.faq-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
}
.faq-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  border-radius: 99px;
  transition: all var(--transition);
}
.faq-search:focus-within {
  background: #fff;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.faq-search i {
  width: 16px; height: 16px;
  color: var(--ink-400);
  flex-shrink: 0;
}
.faq-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  font-size: 13.5px;
  color: var(--ink-800);
  min-width: 0;
}
.faq-search input::placeholder { color: var(--ink-400); }
.faq-search kbd {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-500);
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 4px;
  padding: 2px 5px;
  flex-shrink: 0;
}

.faq-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.faq-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-500);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
  white-space: nowrap;
}
.faq-filter:hover {
  color: var(--ink-800);
  background: var(--bg-soft);
}
.faq-filter.active {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  box-shadow: 0 4px 12px rgba(108, 60, 225, 0.3);
}
.faq-filter .filter-count {
  font-size: 10px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.25);
  padding: 1px 5px;
  border-radius: 99px;
  min-width: 16px;
  text-align: center;
}
.faq-filter:not(.active) .filter-count {
  background: var(--ink-100);
  color: var(--ink-500);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.faq-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--faq-accent, var(--primary-500));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 300ms var(--ease);
}
.faq-item:hover { border-color: var(--primary-200); box-shadow: var(--shadow-sm); }
.faq-item:hover::before { transform: scaleY(1); }
.faq-item[open] {
  border-color: var(--primary-300);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.12);
}
.faq-item[open]::before { transform: scaleY(1); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary-600); }
.faq-q {
  flex: 1;
  line-height: 1.3;
}
.faq-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition);
}
.faq-item:hover .faq-ico { transform: rotate(8deg) scale(1.05); }
.faq-ico i { width: 18px; height: 18px; }
.faq-ico-general { background: linear-gradient(135deg, #7B4FED, #5B2BC4); }
.faq-ico-process { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.faq-ico-pricing { background: linear-gradient(135deg, #10B981, #059669); }
.faq-ico-legal { background: linear-gradient(135deg, #F59E0B, #D97706); }

.faq-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.faq-tag.tag-pop {
  background: linear-gradient(135deg, #EF4444, #F59E0B);
  color: #fff;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
  animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.faq-chevron {
  width: 18px; height: 18px;
  color: var(--ink-400);
  flex-shrink: 0;
  transition: transform 300ms var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--primary-500); }

.faq-body {
  padding: 0 20px 18px 68px;
  animation: faqBodyIn 400ms var(--ease);
}
@keyframes faqBodyIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-body p {
  color: var(--ink-600);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 14px;
}
.faq-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--ink-100);
  flex-wrap: wrap;
}
.faq-helpful {
  font-size: 11.5px;
  color: var(--ink-500);
  font-weight: 500;
  margin-right: 4px;
}
.faq-vote {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-600);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.faq-vote i { width: 12px; height: 12px; }
.faq-vote:hover {
  background: #fff;
  border-color: var(--primary-300);
  color: var(--primary-600);
}
.faq-vote.voted {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 6px rgba(108, 60, 225, 0.3);
}

.faq-bottom-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #FAF5FF 0%, #F0F9FF 100%);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.faq-bottom-cta::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.faq-bottom-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F59E0B, #EC4899);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.35);
  animation: outcomeBounce 2.5s ease-in-out infinite;
}
.faq-bottom-ico i { width: 20px; height: 20px; }
.faq-bottom-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.faq-bottom-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--ink-900);
  line-height: 1.1;
}
.faq-bottom-text span {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.3;
  margin-top: 2px;
}
.faq-bottom-cta .btn {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 13px;
}

/* ============================================================
   BOTTOM CTA ROW — v4 Redesign
   ============================================================ */
.cta-row { padding: 70px 0; }
.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  perspective: 1000px;
  align-items: stretch;
}
.cta-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7B4FED, #06B6D4, #10B981, #F59E0B);
  opacity: 0;
  transition: opacity var(--transition);
}
.cta-card:hover { box-shadow: var(--shadow-lg); }
.cta-card:hover::before { opacity: 1; }

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--primary-600);
  letter-spacing: 2px;
  padding: 5px 10px;
  background: var(--primary-50);
  border-radius: 99px;
  border: 1px solid var(--primary-100);
  margin-bottom: 12px;
  align-self: flex-start;
}
.cta-eyebrow i { width: 12px; height: 12px; }
.cta-eyebrow.on-dark {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--primary-200);
}

/* ============================================================
   CARD 1 — APPS I WORK WITH (Category Mosaic)
   ============================================================ */
.cta-apps {
  background: linear-gradient(160deg, #2E1463 0%, #5B2BC4 50%, #46209A 100%);
  color: #fff;
  border-color: transparent;
  position: relative;
}
.cta-apps::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: ctaAppsGlow 8s ease-in-out infinite;
}
@keyframes ctaAppsGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
.cta-apps .cta-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cta-apps h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.category-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cat-cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cat-cell:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.2);
}
.cat-cell i {
  width: 18px; height: 18px;
  color: #B69BFF;
  transition: color var(--transition);
}
.cat-cell:hover i { color: #06B6D4; }
.cat-cell span {
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
  line-height: 1;
}

/* === Apps card sub-text under heading === */
.cta-apps-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin: 6px 0 0;
  font-weight: 500;
}

/* === Launch chart (horizontal bars) === */
.launch-chart {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.chart-head {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.chart-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.chart-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.chart-bar {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.chart-bar-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.chart-bar-label i { width: 11px; height: 11px; color: #06B6D4; }
.chart-bar-track {
  height: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.chart-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #06B6D4 0%, #10B981 100%);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 7px;
  position: relative;
  animation: chartGrow 1.2s ease-out;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}
.chart-bar-fill span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 9.5px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
@keyframes chartGrow {
  from { width: 0; }
  from { width: 0; }
}

/* === Enhanced hero stat === */
.hero-stat-ring {
  width: 76px; height: 76px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-stat-ring svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.4));
}
.hero-stat-ring svg circle:last-of-type {
  animation: ringDash 2.4s ease-in-out infinite;
  transform-origin: 50% 50%;
}
.ring-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #10B981;
  margin-top: -4px;
}
.stat-mini-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.stat-mini-row span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.stat-mini-row i { width: 10px; height: 10px; color: #06B6D4; }

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(16, 185, 129, 0.06));
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 14px;
  margin-top: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-stat::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-stat-num { flex: 1; min-width: 0; }
.stat-num-big {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  background: linear-gradient(135deg, #06B6D4, #10B981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.stat-num-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}
.stat-num-label strong { color: #fff; font-weight: 700; }
.hero-stat-ring {
  width: 64px; height: 64px;
  flex-shrink: 0;
  position: relative;
}
.hero-stat-ring svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
}
.hero-stat-ring svg circle:last-of-type {
  animation: ringDash 2.4s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes ringDash {
  0%, 100% { stroke-dashoffset: 13; }
  50% { stroke-dashoffset: 50; }
}

/* ============================================================
   CARD 2 — TRUST SHOWCASE
   ============================================================ */
.cta-trust {
  background: linear-gradient(160deg, #FFFFFF 0%, #F7F8FC 100%);
  border: 1px solid var(--ink-100);
}
.cta-trust-top { position: relative; z-index: 1; }
.cta-trust h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cta-trust .cta-eyebrow {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-color: #FCD34D;
  color: #B45309;
}

.rating-hero {
  text-align: center;
  padding: 18px 16px;
  background: linear-gradient(160deg, #0B0B14 0%, #1A1F3A 100%);
  border-radius: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.rating-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.18) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.rating-big { position: relative; z-index: 1; }
.rating-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 4px;
}
.rating-stars-big {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #F59E0B;
  margin-bottom: 6px;
}
.rating-stars-big i { width: 18px; height: 18px; fill: currentColor; }
.rating-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.client-stack-wrap { margin-bottom: 14px; }
.client-stack-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.client-stack {
  display: flex;
  align-items: center;
}
.client-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  font-family: var(--font-display);
  border: 3px solid #fff;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform var(--transition);
}
.client-av:first-child { margin-left: 0; }
.client-stack:hover .client-av { margin-left: -6px; }
.client-stack:hover .client-av:first-child { margin-left: 0; }
.client-av:hover { transform: translateY(-4px) scale(1.1); z-index: 2; }
.client-av-more {
  background: linear-gradient(135deg, #7B4FED, #5B2BC4) !important;
  font-size: 11px;
}

/* === Mini testimonial (fills gap in trust card) === */
.mini-testimonial {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #F3F0FF 0%, #FAF7FF 100%);
  border: 1px solid #DDD6FE;
  border-radius: 12px;
  margin: 8px 0 16px;
  position: relative;
  overflow: hidden;
}
.mini-testimonial::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(108, 60, 225, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mini-quote-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #6C3CE1, #5B2BC4);
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(108, 60, 225, 0.25);
}
.mini-quote-mark i { width: 14px; height: 14px; }
.mini-testimonial-body { flex: 1; min-width: 0; }
.mini-stars {
  color: #FFB400;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  line-height: 1;
}
.mini-quote {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-700);
  margin: 0 0 6px;
  font-weight: 500;
  font-style: italic;
}
.mini-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--ink-500);
  flex-wrap: wrap;
}
.mini-author-name { font-weight: 700; color: var(--ink-700); }
.mini-author-flag { font-size: 12px; }
.mini-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #10B981;
  font-weight: 600;
  margin-left: auto;
}
.mini-verified i { width: 11px; height: 11px; }

.trust-badges {
  display: flex;
  gap: 6px;
  margin-top: auto;
  flex-wrap: wrap;
}
.trust-badge {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-700);
  text-align: center;
  transition: all var(--transition);
}
.trust-badge:hover {
  background: #fff;
  border-color: var(--primary-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.trust-badge i { width: 12px; height: 12px; color: var(--primary-600); }

/* ============================================================
   CARD 3 — LIVE CHAT PREVIEW
   ============================================================ */
.cta-chat {
  background: linear-gradient(160deg, #0B0B14 0%, #15172A 50%, #1A1F3A 100%);
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.cta-chat::before {
  content: "";
  position: absolute;
  top: -100px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: chatGlow 6s ease-in-out infinite;
}
@keyframes chatGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}
.cta-chat-top { position: relative; z-index: 1; }
.cta-chat h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 600;
  color: #10B981;
  margin-bottom: 12px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.chat-bubble {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  animation: chatFadeIn 500ms var(--ease) backwards;
}
.chat-bubble:nth-child(1) { animation-delay: 200ms; }
.chat-bubble:nth-child(2) { animation-delay: 800ms; }
.chat-bubble:nth-child(3) { animation-delay: 1400ms; }
@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-you { justify-content: flex-end; }
.chat-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  font-family: var(--font-display);
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.chat-avatar-you {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  font-size: 9px;
}
.chat-bubble-body {
  max-width: 80%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.4;
  position: relative;
}
.chat-them .chat-bubble-body {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 4px;
  color: rgba(255, 255, 255, 0.92);
}
.chat-you .chat-bubble-body {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  border-bottom-right-radius: 4px;
  color: #fff;
}
.chat-author {
  font-size: 10px;
  font-weight: 800;
  color: #10B981;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chat-time {
  display: block;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}
.chat-typing {
  display: inline-flex;
  gap: 3px;
  padding: 4px 0;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.btn-on-dark {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-on-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.5);
}
.btn-on-dark i { width: 20px; height: 20px; }
.btn-on-dark small {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.4px;
  opacity: 0.85;
  text-transform: uppercase;
}

.chat-meta {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.chat-meta-item {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.chat-meta-item i { width: 12px; height: 12px; color: #10B981; }

/* ============================================================
   CARD 4 — ROI STATS PANEL
   ============================================================ */
.cta-roi {
  background: linear-gradient(160deg, #FFFFFF 0%, #FEF3C7 100%);
  border: 1px solid #FDE68A;
  position: relative;
  overflow: hidden;
}
.cta-roi::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-roi-top { position: relative; z-index: 1; }
.cta-roi h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cta-roi h3 .muted { color: var(--ink-500); font-weight: 800; }
.cta-roi .cta-eyebrow {
  background: linear-gradient(135deg, #FEF3C7, #FCD34D);
  border-color: #F59E0B;
  color: #B45309;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.roi-cell {
  padding: 12px 6px 10px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
  color: #fff;
}
.roi-cell:hover { transform: translateY(-4px) scale(1.03); }
.roi-orange {
  background: linear-gradient(135deg, #F59E0B, #EA580C);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}
.roi-green {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}
.roi-blue {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}
.roi-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  display: grid; place-items: center;
  margin-bottom: 2px;
  backdrop-filter: blur(8px);
}
.roi-ico i { width: 16px; height: 16px; }
.roi-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}
.roi-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.roi-sub {
  font-size: 9px;
  opacity: 0.85;
  line-height: 1.2;
  margin-top: 1px;
}
.roi-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.4s ease;
}
.roi-cell:hover .roi-underline { width: 80%; }

/* === Visual timeline: DIY vs With Malik === */
.roi-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.timeline-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.timeline-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.timeline-bad .timeline-label { color: var(--red); }
.timeline-good .timeline-label { color: var(--green); }
.timeline-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: var(--ink-900);
}
.timeline-val small {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: lowercase;
  margin-left: 2px;
}
.timeline-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 2px;
}
.timeline-fill {
  height: 100%;
  border-radius: 3px;
  animation: timelineGrow 1.2s ease-out;
}
.timeline-fill.bad {
  width: 95%;
  background: linear-gradient(90deg, #EF4444, #DC2626);
}
.timeline-fill.good {
  width: 12%;
  background: linear-gradient(90deg, #10B981, #059669);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}
@keyframes timelineGrow {
  from { width: 0; }
}
.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.timeline-vs {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--ink-500);
  background: var(--ink-100);
  padding: 2px 6px;
  border-radius: 4px;
}
.timeline-arrow {
  width: 16px;
  height: 16px;
  color: var(--primary-600);
  animation: arrowPulse 1.5s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.roi-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.roi-compare-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px 12px;
  border-radius: 12px;
  position: relative;
}
.roi-compare-col.bad {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.roi-compare-col.good {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.08);
}
.roi-compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 10.5px;
  line-height: 1.35;
  padding: 0;
  margin: 0;
  list-style: none;
}
.roi-compare-col.bad ul li {
  color: var(--ink-600);
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.roi-compare-col.bad ul li i {
  width: 12px; height: 12px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}
.roi-compare-col.good ul li {
  color: var(--ink-800);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.roi-compare-col.good ul li i {
  width: 12px; height: 12px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}
.compare-label i { width: 11px; height: 11px; }
.bad .compare-label {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}
.good .compare-label {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}
.winner-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #FFB400, #F59E0B);
  color: #fff;
  padding: 3px 8px;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}
.winner-badge i { width: 10px; height: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #0B0B14 0%, #15172A 100%);
  color: #C5C8D6;
  padding: 0 0 24px;
  position: relative;
  overflow: hidden;
}
.footer-cta {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 28px;
}
.footer-cta-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.footer-cta-buttons i { width: 18px; height: 18px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding: 60px var(--gutter) 32px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.footer-brand-block .brand .brand-line1 { color: #fff; }
.footer-brand-block .brand .brand-line2 { color: rgba(255, 255, 255, 0.55); }
.footer-brand-block .brand .brand-accent { color: var(--primary-300); }
.footer-tagline {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 0;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--primary-300); }
.footer-col i { width: 16px; height: 16px; }
.footer-contact li a, .footer-contact li span { display: inline-flex; }

.footer-rating {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-self: start;
}
.top-rated {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.4px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-rating .rating-stars { justify-content: center; padding: 0; border: 0; margin-bottom: 12px; }
.footer-rating p { font-size: 12px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; }

.footer-bottom {
  text-align: center;
  padding: 22px var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 13px;
  color: var(--ink-300);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.muted { color: var(--ink-400); }
.footer-pip {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center 20%;
  vertical-align: -3px;
  margin-left: 2px;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(108, 60, 225, 0.45);
  z-index: 40;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatY 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.floating-cta:hover { box-shadow: 0 18px 40px rgba(108, 60, 225, 0.6); }
.floating-cta i { width: 18px; height: 18px; }
.floating-cta .pulse {
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  border: 2px solid var(--primary-400);
  animation: ctaPulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { grid-template-columns: 1fr; }
  .hero-photo-wrap { margin: 0 auto; max-width: 380px; }
  .why-card { max-width: 480px; margin: 0 auto; width: 100%; }
  .two-col { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto 40px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .pricing-compare-grid { grid-template-columns: 1fr; }
  .faq-shell { grid-template-columns: 1fr; gap: 24px; }
  .faq-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: repeat(7, 1fr); overflow-x: auto; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--shadow);
    gap: 16px;
  }
  .nav-toggle { display: flex; }
  .header-inner > .btn-sm { display: none; }
  .tech-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-mini-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .tech-mini-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .faq-toolbar { flex-direction: column; align-items: stretch; }
  .faq-filters { justify-content: flex-start; }
  .pricing-fiverr { padding: 28px 22px; }
  .pricing-fiverr h3 { font-size: 22px; }
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 60px; }
  .hero-title .line-1 { font-size: 36px; }
  .hero-title .line-2, .hero-title .line-3 { font-size: 52px; }
  .hero-title .line-4 { font-size: 17px; padding: 12px 22px; }
  .hero-sub { font-size: 15px; }
  .quote-card { right: 10px; top: auto; bottom: -30px; max-width: 220px; padding: 18px; }
  .quote-text { font-size: 16px; }
  .signature { font-size: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-buttons .btn { width: 100%; }
  .float-badge { display: none; }
  .panel { padding: 24px 20px; }
  .two-col-list { columns: 1; }
  .site-header .brand-line2 { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-badges { flex-direction: column; align-items: flex-start; }
  .testi-card .testi-text { min-height: auto; }
  .category-mosaic { grid-template-columns: repeat(4, 1fr); }
  .roi-grid { grid-template-columns: 1fr 1fr 1fr; }
  .roi-compare { grid-template-columns: 1fr; }
  .roi-compare-arrow { transform: rotate(90deg); }
  .faq-body { padding-left: 20px; padding-right: 20px; }
  .faq-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}

@media (max-width: 480px) {
  .hero-title .line-2, .hero-title .line-3 { font-size: 40px; }
  .hero-title .line-1 { font-size: 30px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stat-card { padding: 16px 10px; }
  .stat-num { font-size: 26px; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 12px; bottom: 16px; right: 16px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .floating-cta i { width: 20px; height: 20px; }
  .price { font-size: 0.9em; }
  .amount { font-size: 44px !important; }
  /* Footer mobile fixes */
  .footer-grid { gap: 28px; padding: 40px 20px 24px; }
  .footer-brand-block .brand { gap: 10px; }
  .footer-brand-block .brand-mark { width: 40px; height: 40px; border-radius: 10px; }
  .footer-brand-block .brand-line1 { font-size: 18px; }
  .footer-brand-block .brand-line2 { font-size: 10px; }
  .footer-tagline { font-size: 13px; max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding-right: calc(var(--gutter) + 56px); }
  .footer-bottom p { font-size: 12px; }
}

/* ============================================================
   PRICING v10 — Fiverr gig cards
   ============================================================ */
.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1DBF73;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1DBF73;
  box-shadow: 0 0 0 0 rgba(29, 191, 115, 0.7);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(29, 191, 115, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(29, 191, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 191, 115, 0); }
}
.title-grad {
  background: linear-gradient(120deg, #6C3CE1 0%, #1DBF73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === Gigs grid (5 cards) === */
.gigs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0 60px;
}
.gigs-grid > .gig-card:nth-child(4),
.gigs-grid > .gig-card:nth-child(5) {
  grid-column: span 1;
}
/* Center the last two cards across 3 cols */
.gigs-grid > .gig-card:nth-child(4) {
  grid-column-start: 1;
}
.gigs-grid > .gig-card:nth-child(5) {
  grid-column-start: 2;
}

.gig-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  box-shadow: 0 4px 20px rgba(11, 11, 20, 0.04);
}
.gig-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(108, 60, 225, 0.18);
  border-color: rgba(29, 191, 115, 0.4);
}

/* === Gig thumb (gradient + grid + icon) === */
.gig-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.gig-thumb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
}
.gig-thumb-ico {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.gig-thumb-ico i { width: 42px; height: 42px; }
.gig-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: #18181B;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.gig-thumb-c1 {
  background:
    radial-gradient(120% 80% at 20% 0%, #A78BFA 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, #6C3CE1 0%, transparent 50%),
    linear-gradient(135deg, #6C3CE1 0%, #2E1463 100%);
}
.gig-thumb-c2 {
  background:
    radial-gradient(120% 80% at 20% 0%, #F472B6 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, #DB2777 0%, transparent 50%),
    linear-gradient(135deg, #EC4899 0%, #831843 100%);
}
.gig-thumb-c3 {
  background:
    radial-gradient(120% 80% at 20% 0%, #22D3EE 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, #0891B2 0%, transparent 50%),
    linear-gradient(135deg, #06B6D4 0%, #164E63 100%);
}
.gig-thumb-c4 {
  background:
    radial-gradient(120% 80% at 20% 0%, #FB923C 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, #EA580C 0%, transparent 50%),
    linear-gradient(135deg, #F97316 0%, #7C2D12 100%);
}
.gig-thumb-c5 {
  background:
    radial-gradient(120% 80% at 20% 0%, #34D399 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, #059669 0%, transparent 50%),
    linear-gradient(135deg, #10B981 0%, #064E3B 100%);
}

.gig-hot {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #FB923C, #DC2626);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
}
.gig-hot i { width: 12px; height: 12px; }

/* === Gig body === */
.gig-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.gig-seller {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-500);
}
.gig-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C3CE1, #1DBF73);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.gig-seller-name { font-weight: 600; color: var(--ink-700); }
.gig-toprated {
  display: inline-flex;
  align-items: center;
  color: #FFB400;
  margin-left: 2px;
}
.gig-toprated i { width: 14px; height: 14px; }

.gig-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-900);
  margin: 0;
  min-height: 44px;
}
.gig-title strong {
  font-weight: 800;
  color: var(--ink-900);
}

.gig-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.gig-stars { color: #FFB400; letter-spacing: -1px; font-size: 14px; }
.gig-rating-num { font-weight: 700; color: var(--ink-900); }
.gig-reviews { color: var(--ink-500); }

.gig-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-500);
  flex-wrap: wrap;
}
.gig-meta span { display: inline-flex; align-items: center; gap: 5px; }
.gig-meta i { width: 13px; height: 13px; }

.gig-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--ink-100);
  gap: 10px;
}
.gig-price { display: flex; align-items: baseline; gap: 4px; }
.gig-from {
  font-size: 11.5px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.gig-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.gig-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1DBF73;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(29, 191, 115, 0.3);
}
.gig-btn svg { width: 14px; height: 14px; }
.gig-btn i { width: 13px; height: 13px; }
.gig-btn:hover {
  background: #19A564;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(29, 191, 115, 0.5);
}

/* === Fiverr trust panel === */
.fiverr-trust {
  background: linear-gradient(180deg, #fff 0%, #FAF7FF 100%);
  border: 1px solid var(--ink-100);
  border-radius: 22px;
  padding: 32px 36px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 4px 20px rgba(11, 11, 20, 0.04);
}
.fiverr-trust-head {
  display: flex;
  align-items: center;
  gap: 18px;
}
.fiverr-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #1DBF73;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(29, 191, 115, 0.3);
}
.fiverr-trust-icon svg { width: 28px; height: 28px; }
.fiverr-trust-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.fiverr-trust-head p {
  font-size: 14px;
  color: var(--ink-500);
  margin: 0;
}
.fiverr-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fiverr-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  transition: all 0.25s ease;
}
.fiverr-trust-item:hover {
  border-color: #1DBF73;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 191, 115, 0.12);
}
.fiverr-trust-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 191, 115, 0.12), rgba(108, 60, 225, 0.08));
  color: #1DBF73;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fiverr-trust-ico i { width: 20px; height: 20px; }
.fiverr-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.fiverr-trust-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
}
.fiverr-trust-text span {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.3;
}

/* === Banner tweaks (reuse existing .pricing-fiverr) === */
.fiverr-pop {
  background: linear-gradient(120deg, #1DBF73 0%, #34D399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .gigs-grid { grid-template-columns: repeat(2, 1fr); }
  .gigs-grid > .gig-card:nth-child(4),
  .gigs-grid > .gig-card:nth-child(5) {
    grid-column-start: auto;
  }
  .fiverr-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gigs-grid { grid-template-columns: 1fr; gap: 18px; }
  .fiverr-trust { padding: 24px 20px; }
  .fiverr-trust-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .fiverr-trust-grid { grid-template-columns: 1fr; }
  .gig-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .gig-btn { justify-content: center; }
}

/* === Half star effect (4 full + 1 half = 4.8/4.9) === */
.star-half-wrap {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  flex-shrink: 0;
}
.star-half-wrap > i,
.star-half-wrap > svg {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
}
.star-half-bg { color: rgba(255, 180, 0, 0.25) !important; }
.star-half-fg {
  color: #FFB400 !important;
  width: 80%;
  overflow: hidden;
  display: inline-block;
}
.star-half-fg svg,
.star-half-fg i { display: block; width: 100% !important; height: 100% !important; }
/* Dark background variant */
.on-dark .star-half-bg { color: rgba(255, 255, 255, 0.2) !important; }

/* Text-based half star (for ★★★★<span>★</span>) */
.star-half-text {
  display: inline-block;
  background: linear-gradient(90deg, #FFB400 80%, rgba(255, 180, 0, 0.25) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* On dark backgrounds, use a lighter "empty" */
.on-dark .star-half-text {
  background: linear-gradient(90deg, #FFB400 80%, rgba(255, 255, 255, 0.2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating-big .star-half-bg { color: rgba(255, 255, 255, 0.2) !important; }

/* === PNG star rating image (4.8) === */
.stars-img {
  height: 1em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  mix-blend-mode: multiply;
}
.on-dark .stars-img { mix-blend-mode: screen; opacity: 0.95; }
.rating-big .stars-img { mix-blend-mode: screen; opacity: 0.95; }

/* ============================================================
   CodeCanyon branding
   ============================================================ */
/* CodeCanyon green: #82B541 */
.cc-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  padding: 4px 10px 4px 6px;
  background: linear-gradient(135deg, rgba(130, 181, 65, 0.12), rgba(130, 181, 65, 0.06));
  border: 1px solid rgba(130, 181, 65, 0.3);
  border-radius: 99px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #5A8A2C;
  text-transform: uppercase;
}
.cc-verified svg { width: 16px; height: 16px; flex-shrink: 0; }
.cc-verified span { line-height: 1; }

.cc-expert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border: 1px solid rgba(130, 181, 65, 0.3);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(130, 181, 65, 0.12);
}
.cc-expert-badge svg { width: 28px; height: 28px; flex-shrink: 0; border-radius: 6px; }
.cc-expert-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #18181B;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.cc-expert-sub {
  font-size: 10px;
  color: #5A8A2C;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1px;
}

.cc-inline-logo {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 2px;
}
.cc-lg { width: 1.2em; height: 1.2em; vertical-align: -0.25em; }

.cta-apps .cta-apps-top h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-ico {
  background: rgba(130, 181, 65, 0.15) !important;
  color: #5A8A2C !important;
}
.cc-ico svg { width: 18px; height: 18px; }

.cc-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: rgba(130, 181, 65, 0.12);
  border: 1px solid rgba(130, 181, 65, 0.3);
  border-radius: 99px;
  font-size: 12.5px;
  color: #B4E07A;
  font-weight: 500;
}
.cc-footer-badge svg { width: 20px; height: 20px; flex-shrink: 0; }
.cc-footer-badge strong { color: #fff; font-weight: 800; margin-left: 2px; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .cc-verified { display: none; }
  .cc-expert-badge { padding: 6px 10px 6px 6px; }
  .cc-expert-title { font-size: 11px; }
  .cc-expert-sub { font-size: 9px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
