/* MarketU — Cyberpunk Luxury Theme */
/* ================================= */

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

:root {
  --bg: #0A0A0F;
  --bg2: #0F1117;
  --bg3: #141620;
  --fg: #E2E8F0;
  --fg2: #8892A4;
  --fg3: #4B5563;
  --border: rgba(255,255,255,0.06);
  --border-glow: rgba(139,92,246,0.3);
  --accent-purple: #8B5CF6;
  --accent-cyan: #00D4FF;
  --accent-magenta: #F0ABFC;
  --accent-gold: #FFB800;
  --glass-bg: rgba(15,17,23,0.7);
  --glass-border: rgba(255,255,255,0.08);
  --glow-purple: 0 0 30px rgba(139,92,246,0.4);
  --glow-cyan: 0 0 30px rgba(0,212,255,0.3);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Animated Background ─── */
.bg-mesh {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(139,92,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(0,212,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(240,171,252,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: meshShift 20s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Glass Card ─── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-card:hover {
  border-color: rgba(139,92,246,0.4);
  box-shadow: var(--glow-purple), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--accent-purple), #6D28D9);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(139,92,246,0.6), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px) scale(1.02);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

/* ─── Typography ─── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-purple);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 100px;
  background: rgba(139,92,246,0.08);
}

.section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--fg2);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--fg2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-call-btn {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--accent-purple), #6D28D9);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(139,92,246,0.25);
}
.nav-call-btn:hover {
  box-shadow: 0 0 30px rgba(139,92,246,0.5);
  transform: translateY(-1px);
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: heroPulse 4s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeSlideDown 0.8s ease-out 0.2s both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-purple);
  border-radius: 50%;
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  max-width: 900px;
  animation: fadeSlideDown 0.8s ease-out 0.4s both;
}
.hero-headline span {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--fg2);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 3rem;
  animation: fadeSlideDown 0.8s ease-out 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeSlideDown 0.8s ease-out 0.8s both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.8s ease-out 1s both;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--fg2);
}
.trust-chip-icon { color: var(--accent-cyan); font-size: 0.85rem; }
.trust-chip-val { color: var(--fg); font-weight: 600; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeSlideDown 0.8s ease-out 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg3), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1) translateY(10px); }
}

/* ─── SECTION WRAPPER ─── */
.section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: 2rem;
  cursor: default;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(0,212,255,0.1));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(139,92,246,0.4), rgba(0,212,255,0.2));
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
}
.service-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.service-desc {
  font-size: 0.82rem;
  color: var(--fg2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-price {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
.service-cta:hover { gap: 0.6rem; }

/* ─── WORKFLOW ─── */
.workflow-section { background: var(--bg2); }
.workflow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 3rem 0;
  overflow-x: auto;
}
.workflow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 130px;
  position: relative;
}
.workflow-node-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.5s ease;
  position: relative;
}
.workflow-node.active .workflow-node-circle {
  border-color: var(--accent-purple);
  box-shadow: var(--glow-purple);
  background: rgba(139,92,246,0.1);
}
.workflow-node.active .workflow-node-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.3);
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.workflow-node-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg2);
  text-align: center;
  transition: color 0.3s;
}
.workflow-node.active .workflow-node-label { color: var(--accent-purple); }
.workflow-connector {
  width: 80px;
  height: 2px;
  background: var(--border);
  position: relative;
  flex-shrink: 0;
}
.workflow-connector.active {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  box-shadow: 0 0 10px rgba(139,92,246,0.5);
}
.workflow-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 0;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.workflow-connector.active::after { width: 100%; }
.workflow-sub {
  text-align: center;
  color: var(--fg3);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ─── DASHBOARD PREVIEW ─── */
.dashboard-mockup {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.dashboard-dots { display: flex; gap: 6px; }
.dash-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.dash-dot:nth-child(1) { background: #FF5F57; }
.dash-dot:nth-child(2) { background: #FFBD2E; }
.dash-dot:nth-child(3) { background: #28CA41; }
.dashboard-tabs { display: flex; gap: 1rem; align-items: center; }
.dash-tab {
  font-size: 0.75rem;
  color: var(--fg2);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.dash-tab.active {
  background: rgba(139,92,246,0.2);
  color: var(--accent-purple);
  border: 1px solid rgba(139,92,246,0.3);
}
.dashboard-body { padding: 2rem; }
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.metric-card {
  padding: 1.25rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.metric-val.purple { color: var(--accent-purple); }
.metric-val.cyan { color: var(--accent-cyan); }
.metric-val.magenta { color: var(--accent-magenta); }
.metric-val.gold { color: var(--accent-gold); }
.metric-label {
  font-size: 0.72rem;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.metric-change {
  font-size: 0.72rem;
  color: #28CA41;
  margin-top: 0.25rem;
}
.chart-area {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  height: 220px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  justify-content: center;
  overflow: hidden;
}
.bar {
  width: 28px;
  background: linear-gradient(to top, var(--accent-purple), var(--accent-cyan));
  border-radius: 4px 4px 0 0;
  transition: height 1s ease-out;
  box-shadow: 0 0 10px rgba(139,92,246,0.3);
}
.bar.shorter { background: linear-gradient(to top, rgba(139,92,246,0.4), rgba(0,212,255,0.3)); }

/* ─── CASE STUDIES ─── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 16px 16px 0 0;
}
.case-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}
.case-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.case-challenge {
  font-size: 0.82rem;
  color: var(--fg2);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.case-result {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.case-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-num-label { font-size: 0.8rem; color: var(--fg2); }
.case-quote {
  font-size: 0.82rem;
  color: var(--fg2);
  font-style: italic;
  line-height: 1.65;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border-left: 3px solid var(--accent-purple);
}
.case-quote-name {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--fg3);
  font-style: normal;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.pricing-card {
  padding: 2rem;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--accent-purple);
  box-shadow: var(--glow-purple);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-price {
  margin-bottom: 1.5rem;
}
.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.pricing-period { font-size: 0.8rem; color: var(--fg2); }
.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
}
.pricing-features li {
  font-size: 0.82rem;
  color: var(--fg2);
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.1rem;
}
.pricing-card .btn-primary, .pricing-card .btn-ghost {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
}
.pricing-card.popular .btn-primary {
  box-shadow: 0 0 30px rgba(139,92,246,0.5);
}

/* ─── TOOLS ECOSYSTEM ─── */
.tools-section { background: var(--bg2); }
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.tool-logo {
  width: 90px;
  height: 70px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg3);
  transition: all 0.3s;
  cursor: default;
  animation: floatLogo 3s ease-in-out infinite;
}
.tool-logo:nth-child(even) { animation-delay: -1.5s; }
.tool-logo:hover {
  border-color: rgba(139,92,246,0.4);
  color: var(--fg);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.tools-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--fg3);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem;
}
.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--fg3); }

/* ─── LEAD MAGNET ─── */
.lead-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  text-align: center;
}
.lead-inner {
  padding: 4rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(0,212,255,0.05));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.lead-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(139,92,246,0.1), transparent),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(0,212,255,0.08), transparent);
  pointer-events: none;
}
.lead-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(0,212,255,0.2));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}
.lead-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.lead-input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--fg);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.lead-input::placeholder { color: var(--fg3); }
.lead-input:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(139,92,246,0.2);
}
.lead-note {
  font-size: 0.75rem;
  color: var(--fg3);
  margin-top: 1rem;
}

/* ─── FOOTER ─── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
  background: var(--bg2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--fg2);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--fg3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--fg2);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social-link:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: var(--fg3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--fg3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--fg); }

/* ─── STICKY MOBILE CTA ─── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0.75rem 1rem;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  gap: 0.75rem;
}
.mobile-sticky-cta .btn-primary {
  flex: 1;
  justify-content: center;
  padding: 0.8rem;
  font-size: 0.9rem;
}
.mobile-sticky-cta .btn-ghost {
  flex: 1;
  justify-content: center;
  padding: 0.8rem;
  font-size: 0.9rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-cta .nav-call-btn { display: none; }
  .section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .workflow-track { gap: 0; }
  .workflow-connector { width: 30px; }
  .workflow-node { min-width: 90px; }
  .workflow-node-circle { width: 56px; height: 56px; font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .lead-form { flex-direction: column; }
  .lead-input { min-width: 100%; }
  .lead-inner { padding: 2.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}