/* ═══════════════════════════════════════════
   ELEVARIQ v2 — Premium Upgrade
   Electric Blue + Violet | Hybrid Light/Dark
   Linear / Stripe / Vercel quality standard
═══════════════════════════════════════════ */

:root {
  --white: #ffffff;
  --off-white: #f8f8fc;
  --cream: #f2f2f8;
  --ink: #09090f;
  --ink-2: #111118;
  --ink-3: #1a1a28;
  --gray-1: #22223a;
  --gray-2: #5c5c7a;
  --gray-3: #9898b8;
  --gray-4: #e2e2ee;
  --gray-5: #f0f0f8;

  --electric: #3b5cff;
  --electric-2: #6b8aff;
  --electric-3: #a0b8ff;
  --violet: #7c3aed;
  --violet-2: #a78bfa;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --gold: #f59e0b;
  --red: #ef4444;

  --grad-brand: linear-gradient(135deg, #3b5cff 0%, #7c3aed 100%);
  --grad-brand-h: linear-gradient(135deg, #4f6fff 0%, #9333ea 100%);
  --grad-text: linear-gradient(135deg, #3b5cff 0%, #7c3aed 50%, #06b6d4 100%);
  --grad-soft: linear-gradient(135deg, rgba(59,92,255,0.1) 0%, rgba(124,58,237,0.1) 100%);
  --grad-dark: linear-gradient(180deg, #09090f 0%, #111118 100%);
  --grad-mesh: radial-gradient(at 15% 25%, rgba(59,92,255,0.18) 0%, transparent 55%),
               radial-gradient(at 85% 10%, rgba(124,58,237,0.15) 0%, transparent 50%),
               radial-gradient(at 55% 85%, rgba(6,182,212,0.12) 0%, transparent 50%);
  --grad-glow: radial-gradient(ellipse at center, rgba(59,92,255,0.2) 0%, transparent 70%);

  --glass: rgba(255,255,255,0.72);
  --glass-border: rgba(10,10,20,0.07);
  --glass-dark: rgba(15,15,28,0.6);
  --glass-dark-border: rgba(255,255,255,0.07);

  --shadow-xs: 0 1px 3px rgba(9,9,15,0.04);
  --shadow-sm: 0 2px 10px rgba(9,9,15,0.06);
  --shadow-md: 0 8px 32px rgba(9,9,15,0.1);
  --shadow-lg: 0 24px 64px rgba(9,9,15,0.14);
  --shadow-xl: 0 40px 100px rgba(9,9,15,0.18);
  --shadow-brand: 0 16px 48px rgba(59,92,255,0.28);
  --shadow-brand-lg: 0 32px 80px rgba(59,92,255,0.35);
  --shadow-glow: 0 0 80px rgba(59,92,255,0.22);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1280px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.loader-mark {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display); font-size: 30px;
  font-weight: 400; font-style: italic;
  animation: loaderPulse 1.6s ease-in-out infinite;
  box-shadow: var(--shadow-brand);
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59,92,255,0.5); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 24px rgba(59,92,255,0); }
}
.loader-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px; overflow: hidden; position: relative;
}
.loader-bar::after {
  content: ''; position: absolute; top: 0; left: -50%; width: 50%; height: 100%;
  background: var(--grad-brand);
  animation: loaderSlide 1.4s ease-in-out infinite;
}
@keyframes loaderSlide { 0%{left:-50%} 100%{left:100%} }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--grad-brand); z-index: 9999;
  box-shadow: 0 0 12px rgba(59,92,255,0.6);
  transition: width 0.08s linear;
}

/* ─── CURSOR ─── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  will-change: left, top;
}
.cursor-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--electric); mix-blend-mode: multiply;
}
.cursor-ring {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(59,92,255,0.3);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s;
}
.cursor-ring.hovered { width: 52px; height: 52px; border-color: rgba(59,92,255,0.6); }
@media (hover:none) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── NAV ─── */
nav.main-nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 32px); max-width: 1200px;
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(10,10,20,0.06);
  border-radius: 100px;
  box-shadow: var(--shadow-xs);
  transition: background .3s, box-shadow .3s;
}
nav.main-nav.scrolled {
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(10,10,20,0.04);
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 21px;
  font-weight: 400; color: var(--ink); letter-spacing: -0.3px;
}
.nav-logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 15px; font-weight: 400;
  font-style: italic; font-family: var(--font-display);
  box-shadow: 0 4px 12px rgba(59,92,255,0.3);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: var(--shadow-brand);
}
.nav-links { display: flex; list-style: none; gap: 2px; }
.nav-links a {
  padding: 8px 15px; font-size: 13.5px; font-weight: 500;
  color: var(--gray-2); border-radius: 100px;
  transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: var(--ink); background: rgba(9,9,15,0.04); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; font-size: 13.5px; font-weight: 600;
  color: white; background: var(--ink); border-radius: 100px;
  transition: background .3s, transform .25s var(--ease-out), box-shadow .3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--electric); transform: translateY(-1px); box-shadow: var(--shadow-brand); }
.mobile-toggle {
  display: none; width: 36px; height: 36px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  background: transparent;
}
.mobile-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ─── CONTAINER ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px;
  background: var(--grad-soft);
  border: 1px solid rgba(59,92,255,0.18);
  color: var(--electric); font-size: 11.5px; font-weight: 600;
  border-radius: 100px; letter-spacing: 0.2px; margin-bottom: 22px;
}
.eyebrow-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1); color: var(--electric-2);
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--electric); flex-shrink: 0;
  box-shadow: 0 0 8px var(--electric);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ─── TYPE ─── */
h1,h2,h3,h4 {
  font-family: var(--font-display); font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.05; font-style: italic;
}
.h-display { font-size: clamp(52px, 7.5vw, 104px); }
.h-section {
  font-size: clamp(38px, 5.5vw, 70px);
  letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 18px;
}
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lede {
  font-size: clamp(16px, 1.5vw, 19px); color: var(--gray-2);
  line-height: 1.6; font-weight: 400; max-width: 580px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; font-size: 14.5px; font-weight: 600;
  border-radius: 100px; transition: all .25s var(--ease-out);
  cursor: pointer; border: none; position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: white;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-brand); opacity: 0;
  transition: opacity .35s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(9,9,15,0.14);
}
.btn-outline:hover {
  background: var(--ink); color: white;
  border-color: var(--ink); transform: translateY(-2px);
}
.btn-gradient {
  background: var(--grad-brand); color: white;
  box-shadow: 0 8px 28px rgba(59,92,255,0.3);
}
.btn-gradient:hover { transform: translateY(-3px); box-shadow: var(--shadow-brand-lg); }
.btn-ghost {
  background: transparent; color: var(--ink); padding: 15px 20px;
}
.btn-ghost:hover { color: var(--electric); gap: 14px; }
.btn-arrow { display: inline-flex; transition: transform .25s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  padding: 150px 0 100px; position: relative; overflow: hidden;
  background: var(--off-white);
}
.hero-mesh {
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 1600px; height: 1200px;
  background: var(--grad-mesh);
  opacity: 0.7; filter: blur(50px); pointer-events: none;
  animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  from { transform: translateX(-50%) translateY(0) scale(1) rotate(0deg); }
  to   { transform: translateX(-50%) translateY(-40px) scale(1.06) rotate(1deg); }
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(9,9,15,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,9,15,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
}
/* Animated corner orbs */
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; top: -100px; right: 0; background: rgba(59,92,255,0.12); }
.hero-orb-2 { width: 280px; height: 280px; bottom: 0; left: 5%; background: rgba(124,58,237,0.1); animation-delay: -4s; }
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.04); }
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 980px; margin: 0 auto; }
.hero-eyebrow { margin-bottom: 28px; }
.hero-headline {
  margin-bottom: 26px; letter-spacing: -0.03em;
  font-size: clamp(50px, 7.5vw, 108px);
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px); color: var(--gray-2);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.6;
}
.hero-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px;
}
.hero-trust {
  display: flex; gap: 28px; justify-content: center; align-items: center;
  flex-wrap: wrap; font-size: 13px; color: var(--gray-2); margin-bottom: 80px;
}
.hero-trust-item { display: flex; align-items: center; gap: 7px; }
.hero-trust-check {
  width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-brand); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
  box-shadow: 0 2px 8px rgba(59,92,255,0.25);
}

/* ─── HERO SHOWCASE / DASHBOARD ─── */
.hero-showcase { position: relative; perspective: 2400px; }
.hero-showcase-wrap {
  position: relative; transform: rotateX(6deg);
  transform-origin: center top;
  transition: transform .8s var(--ease-out);
  animation: dashboardFloat 10s ease-in-out infinite;
}
.hero-showcase-wrap:hover { transform: rotateX(0deg); }
@keyframes dashboardFloat {
  0%,100% { transform: rotateX(6deg) translateY(0); }
  50% { transform: rotateX(5deg) translateY(-10px); }
}
.dashboard-card {
  background: white;
  border: 1px solid var(--gray-4);
  border-radius: 22px;
  box-shadow: 0 50px 120px rgba(9,9,15,0.18), 0 0 0 1px rgba(9,9,15,0.04);
  overflow: hidden;
}
.dashboard-header {
  padding: 14px 20px; border-bottom: 1px solid var(--gray-4);
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(to right, #fafafa, #f5f5fb);
}
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots span { width: 11px; height: 11px; border-radius: 50%; }
.dashboard-dots span:nth-child(1) { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #febc2e; }
.dashboard-dots span:nth-child(3) { background: #28c840; }
.dashboard-url {
  flex: 1; text-align: center; padding: 6px 14px;
  background: white; border-radius: 8px; font-family: var(--font-mono);
  font-size: 12px; color: var(--gray-2); border: 1px solid var(--gray-4);
}
.dashboard-body {
  padding: 28px; display: grid;
  grid-template-columns: 220px 1fr; gap: 20px; min-height: 360px;
}
.dashboard-sidebar {
  background: var(--off-white); border-radius: 14px; padding: 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.ds-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gray-3); margin-bottom: 8px; padding: 0 10px;
}
.ds-item {
  padding: 9px 12px; border-radius: 10px; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 9px; color: var(--gray-2);
  transition: background .2s, color .2s; cursor: default;
}
.ds-item:hover { background: white; color: var(--ink); }
.ds-item.active {
  background: var(--grad-brand); color: white;
  box-shadow: 0 6px 20px rgba(59,92,255,0.3);
}
.ds-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; opacity: 0.5; flex-shrink: 0;
}
.ds-item.active .ds-dot { opacity: 1; box-shadow: 0 0 6px white; }
.dashboard-main { display: flex; flex-direction: column; gap: 16px; }
.dm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dm-stat {
  padding: 18px 16px; background: var(--off-white); border-radius: 12px;
  border: 1px solid var(--gray-4); transition: transform .2s, border-color .2s;
}
.dm-stat:hover { transform: translateY(-2px); border-color: var(--electric-3); }
.dm-stat-label {
  font-size: 10.5px; color: var(--gray-2); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px;
}
.dm-stat-value {
  font-family: var(--font-display); font-size: 30px; font-style: italic;
  color: var(--ink); line-height: 1; font-weight: 400;
}
.dm-stat-delta { font-size: 11px; color: var(--emerald); font-weight: 600; margin-top: 4px; }
.dm-chart {
  flex: 1; padding: 18px; background: var(--off-white); border-radius: 12px;
  border: 1px solid var(--gray-4);
}
.dm-chart-title { font-size: 11.5px; font-weight: 600; color: var(--gray-2); margin-bottom: 12px; }
.dm-chart-svg { width: 100%; height: 100px; }
.chart-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2s var(--ease-out) 1s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* Floating mini cards around dashboard */
.hero-float-card {
  position: absolute; background: white;
  border: 1px solid var(--gray-4); border-radius: 14px;
  padding: 12px 16px; font-size: 12px; font-weight: 500;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  animation: cardFloat 6s ease-in-out infinite;
  z-index: 3;
}
.hero-float-card-1 { top: 15%; right: -40px; animation-delay: 0s; }
.hero-float-card-2 { bottom: 20%; left: -50px; animation-delay: -3s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
.hero-float-card-1 { --r: 3deg; }
.hero-float-card-2 { --r: -2deg; }
.float-card-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--grad-soft); display: flex; align-items: center;
  justify-content: center; font-size: 14px; flex-shrink: 0;
}
.float-card-label { color: var(--gray-2); font-size: 11px; }
.float-card-value { color: var(--ink); font-weight: 700; font-size: 13px; }

/* ════════════════════════════════
   TRUST BAR
════════════════════════════════ */
.trust-bar {
  padding: 52px 0; background: white;
  border-top: 1px solid var(--gray-4); border-bottom: 1px solid var(--gray-4);
}
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; align-items: center;
}
.trust-item { text-align: center; }
.trust-number {
  font-family: var(--font-display); font-size: 40px;
  font-weight: 400; font-style: italic; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-label {
  font-size: 11.5px; color: var(--gray-2); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 8px;
}
.trust-divider {
  width: 1px; height: 48px; background: var(--gray-4); margin: 0 auto;
}

/* ════════════════════════════════
   PROBLEM
════════════════════════════════ */
.problem { padding: 130px 0; background: var(--off-white); }
.problem-header { max-width: 700px; margin: 0 auto 68px; text-align: center; }
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 60px;
}
.pain-card {
  padding: 28px 24px; background: white;
  border: 1px solid var(--gray-4); border-radius: var(--r-lg);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: #fef2f2; transition: height .4s var(--ease-out);
}
.pain-card:hover::before { height: 100%; }
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(239,68,68,0.15); }
.pain-icon {
  width: 42px; height: 42px; background: #fef2f2; color: #ef4444;
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 18px; position: relative; transition: background .3s;
}
.pain-card:hover .pain-icon { background: #fee2e2; }
.pain-title { font-size: 15px; font-weight: 600; color: var(--ink); position: relative; }
.problem-transition {
  text-align: center; padding: 56px 48px;
  background: var(--grad-brand); border-radius: var(--r-2xl); color: white;
  position: relative; overflow: hidden; box-shadow: var(--shadow-brand-lg);
}
.problem-transition::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22) 0%, transparent 55%);
}
.problem-transition::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.problem-transition > * { position: relative; z-index: 1; }
.problem-transition h3 {
  font-size: clamp(30px, 4.5vw, 50px); font-family: var(--font-display);
  font-style: italic; font-weight: 400; letter-spacing: -0.025em; margin-bottom: 12px;
}
.problem-transition p { font-size: 17px; opacity: 0.88; max-width: 500px; margin: 0 auto; }

/* ════════════════════════════════
   COMPARISON
════════════════════════════════ */
.comparison { padding: 130px 0; background: white; }
.comparison-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.comp-col {
  border-radius: var(--r-xl); padding: 40px; border: 1.5px solid var(--gray-4);
  background: white;
}
.comp-col.comp-them { opacity: 0.75; }
.comp-col.comp-us {
  background: var(--ink); color: white;
  border-color: transparent; box-shadow: var(--shadow-brand-lg);
  position: relative; overflow: hidden;
}
.comp-col.comp-us::before {
  content: ''; position: absolute; inset: 0; background: var(--grad-mesh); opacity: 0.3;
}
.comp-col.comp-us > * { position: relative; }
.comp-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
}
.comp-head-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.comp-them .comp-head-icon { background: var(--gray-5); }
.comp-us .comp-head-icon { background: var(--grad-brand); }
.comp-head-label { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.comp-us .comp-head-label { color: white; }
.comp-them .comp-head-label { color: var(--gray-2); }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comp-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.5;
}
.comp-them .comp-list li { color: var(--gray-2); }
.comp-us .comp-list li { color: rgba(255,255,255,0.88); }
.comp-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 2px;
}
.comp-them .comp-check { background: #fee2e2; color: #ef4444; }
.comp-us .comp-check { background: var(--grad-brand); color: white; box-shadow: 0 2px 8px rgba(59,92,255,0.3); }

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
.services {
  padding: 140px 0; background: var(--ink); color: white; position: relative; overflow: hidden;
}
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,92,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.services-header { text-align: center; max-width: 740px; margin: 0 auto 80px; position: relative; }
.services-header h2 { color: white; }
.services-header .lede { color: var(--gray-3); margin: 0 auto; }
.service-tabs {
  display: flex; gap: 6px; justify-content: center; margin-bottom: 56px;
  padding: 6px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 100px;
  width: fit-content; margin-left: auto; margin-right: auto; position: relative;
}
.service-tab-indicator {
  position: absolute; top: 6px; bottom: 6px;
  background: var(--grad-brand); border-radius: 100px;
  transition: all .4s var(--ease-out); z-index: 0;
  box-shadow: 0 6px 20px rgba(59,92,255,0.35);
}
.service-tab {
  padding: 10px 24px; font-size: 13.5px; font-weight: 600;
  color: var(--gray-3); border-radius: 100px;
  transition: color .3s; position: relative; z-index: 1;
}
.service-tab.active { color: white; }
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px;
}
.service-card {
  padding: 28px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-lg);
  transition: transform .3s var(--ease-out), border-color .3s, background .3s;
  position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(280px circle at var(--mx,50%) var(--my,50%),
    rgba(59,92,255,0.1), transparent 60%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(107,138,255,0.22);
  background: rgba(255,255,255,0.05);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--grad-soft); border: 1px solid rgba(107,138,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 20px; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover .service-icon { transform: scale(1.1); box-shadow: 0 8px 24px rgba(59,92,255,0.25); }
.service-name { font-size: 17px; font-weight: 600; color: white; margin-bottom: 8px; position: relative; }
.service-desc { font-size: 13.5px; color: var(--gray-3); line-height: 1.65; position: relative; }

/* ════════════════════════════════
   RESULTS
════════════════════════════════ */
.results { padding: 140px 0; background: var(--off-white); }
.results-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.results-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.result-card {
  padding: 36px 20px; background: white; border: 1px solid var(--gray-4);
  border-radius: var(--r-lg); text-align: center;
  transition: transform .3s var(--ease-out), box-shadow .3s; position: relative; overflow: hidden;
}
.result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.result-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.result-card:hover::before { transform: scaleX(1); }
.result-number {
  font-family: var(--font-display); font-size: clamp(40px, 4vw, 56px);
  font-weight: 400; font-style: italic; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.result-label { font-size: 12px; color: var(--gray-2); margin-top: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ════════════════════════════════
   PROCESS
════════════════════════════════ */
.process { padding: 140px 0; background: white; }
.process-header { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; position: relative; }
.process-connector {
  position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px; background: var(--gray-4); z-index: 0;
}
.process-connector-fill {
  height: 100%; background: var(--grad-brand); width: 0%;
  transition: width 1.5s var(--ease-out); box-shadow: 0 0 8px rgba(59,92,255,0.4);
}
.process-step {
  padding: 36px 28px; background: var(--off-white); border: 1px solid var(--gray-4);
  border-radius: var(--r-lg); transition: transform .3s, border-color .3s; position: relative; z-index: 1;
}
.process-step:hover { transform: translateY(-5px); border-color: rgba(59,92,255,0.2); }
.process-num {
  font-family: var(--font-display); font-size: 14px; font-weight: 400; font-style: italic;
  color: var(--electric); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.process-num::before { content: ''; width: 24px; height: 1px; background: var(--electric); }
.process-title { font-size: 21px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; font-style: normal; font-family: var(--font-body); }
.process-desc { font-size: 14px; color: var(--gray-2); line-height: 1.65; }

/* ════════════════════════════════
   CASE STUDIES
════════════════════════════════ */
.case-studies { padding: 140px 0; background: var(--ink); color: white; }
.case-studies-header { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; margin-bottom: 60px; }
.case-studies-header h2 { color: white; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.case-card:hover { transform: translateY(-7px); border-color: rgba(107,138,255,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.case-visual {
  height: 200px; background: var(--grad-brand); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.case-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
}
.case-visual::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.case-visual.violet { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.case-visual.cyan { background: linear-gradient(135deg, #0891b2, #1d4ed8); }
.case-visual-metric {
  font-family: var(--font-display); font-size: 66px; font-style: italic;
  color: white; text-shadow: 0 4px 24px rgba(0,0,0,0.2); position: relative; z-index: 1;
  line-height: 1;
}
.case-body { padding: 28px; }
.case-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--electric-2); margin-bottom: 8px; font-weight: 600; }
.case-title { font-size: 19px; font-weight: 600; color: white; margin-bottom: 9px; letter-spacing: -0.01em; }
.case-desc { font-size: 13.5px; color: var(--gray-3); line-height: 1.65; margin-bottom: 22px; }
.case-metrics { display: flex; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.case-metric-value { font-family: var(--font-display); font-size: 22px; font-style: italic; color: white; }
.case-metric-label { font-size: 11px; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* ════════════════════════════════
   WHY ELEVARIQ
════════════════════════════════ */
.why { padding: 140px 0; background: var(--off-white); }
.why-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  padding: 34px; background: white; border-radius: var(--r-xl);
  border: 1px solid var(--gray-4);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(59,92,255,0.15); }
.why-card.featured {
  background: var(--ink); border: none; color: white;
  box-shadow: var(--shadow-lg);
}
.why-card.featured::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-mesh); opacity: 0.35;
}
.why-card.featured > * { position: relative; }
.why-card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--grad-soft); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 22px;
  transition: transform .3s;
}
.why-card:hover .why-card-icon { transform: scale(1.1) rotate(-4deg); }
.why-card.featured .why-card-icon { background: var(--grad-brand); box-shadow: var(--shadow-brand); }
.why-card-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.why-card.featured .why-card-title { color: white; }
.why-card-desc { font-size: 14px; color: var(--gray-2); line-height: 1.65; }
.why-card.featured .why-card-desc { color: var(--gray-3); }

/* ════════════════════════════════
   TOOLS / INTEGRATIONS
════════════════════════════════ */
.integrations { padding: 100px 0; background: white; overflow: hidden; }
.integrations-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.logo-strip-wrap { position: relative; }
.logo-strip-wrap::before, .logo-strip-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2;
}
.logo-strip-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.logo-strip-wrap::after { right: 0; background: linear-gradient(to left, white, transparent); }
.logo-strip {
  display: flex; gap: 0; animation: stripScroll 22s linear infinite;
  white-space: nowrap; width: max-content;
}
.logo-strip:hover { animation-play-state: paused; }
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item {
  padding: 14px 32px; font-size: 14px; font-weight: 700; color: var(--gray-3);
  display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em;
  transition: color .2s; flex-shrink: 0;
}
.logo-item:hover { color: var(--ink); }
.logo-item-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-4); flex-shrink: 0; }

/* ════════════════════════════════
   AI SHOWCASE
════════════════════════════════ */
.ai-showcase { padding: 140px 0; background: var(--off-white); position: relative; overflow: hidden; }
.ai-showcase-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.workflow {
  max-width: 1100px; margin: 0 auto; padding: 60px 48px;
  background: white; border-radius: var(--r-2xl); border: 1px solid var(--gray-4);
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.workflow::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,92,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.workflow-chain {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px; align-items: center; position: relative; z-index: 1;
  margin-bottom: 24px;
}
.workflow-chain + .workflow-chain { margin-bottom: 0; }
.workflow-node {
  background: var(--off-white); border: 1px solid var(--gray-4);
  border-radius: var(--r-md); padding: 20px 16px; text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s; cursor: default;
}
.workflow-node:hover { transform: translateY(-4px); border-color: var(--electric); box-shadow: var(--shadow-brand); }
.workflow-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--grad-soft); color: var(--electric);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px; font-size: 18px;
  transition: background .3s, color .3s, transform .3s;
}
.workflow-node:hover .workflow-icon { background: var(--grad-brand); color: white; transform: scale(1.1); }
.workflow-title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.workflow-sub { font-size: 11px; color: var(--gray-2); }
.workflow-arrow { display: flex; align-items: center; justify-content: center; color: var(--gray-3); }
.workflow-arrow svg { animation: arrowPulse 2s ease-in-out infinite; }
@keyframes arrowPulse { 0%,100%{transform:translateX(0);opacity:.6} 50%{transform:translateX(5px);opacity:1} }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials { padding: 140px 0; background: var(--off-white); }
.testimonials-header { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  padding: 34px; background: white; border: 1px solid var(--gray-4);
  border-radius: var(--r-xl);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative; transform-style: preserve-3d;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--gold); font-size: 14px; }
.testi-quote {
  font-family: var(--font-display); font-style: italic; font-size: 19px;
  line-height: 1.4; color: var(--ink); margin-bottom: 28px; font-weight: 400; letter-spacing: -0.01em;
}
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59,92,255,0.25);
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--gray-2); }

/* ════════════════════════════════
   MANIFESTO
════════════════════════════════ */
.manifesto { padding: 140px 0; background: var(--ink); color: white; position: relative; overflow: hidden; }
.manifesto::before { content: ''; position: absolute; inset: 0; background: var(--grad-mesh); opacity: 0.35; }
.manifesto-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.manifesto-quote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(28px, 4vw, 52px);
  font-weight: 400; letter-spacing: -0.025em; line-height: 1.2; color: white; margin-bottom: 40px;
}
.manifesto-quote em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.3); font-style: normal; }
.manifesto-items {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px;
}
.manifesto-item {
  padding: 24px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg);
  text-align: center; transition: background .3s, border-color .3s;
}
.manifesto-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(107,138,255,0.25); }
.manifesto-item-num {
  font-family: var(--font-display); font-style: italic; font-size: 36px;
  color: var(--electric-2); line-height: 1; margin-bottom: 8px;
}
.manifesto-item-text { font-size: 14px; color: var(--gray-3); line-height: 1.6; }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq { padding: 140px 0; background: white; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-item { border-bottom: 1px solid var(--gray-4); padding: 24px 0; cursor: pointer; }
.faq-item:first-of-type { border-top: 1px solid var(--gray-4); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; font-weight: 500; color: var(--ink); transition: color .2s;
}
.faq-item:hover .faq-q { color: var(--electric); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gray-5); border: 1px solid var(--gray-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; margin-left: 20px; font-weight: 300;
  transition: transform .35s var(--ease-out), background .3s, color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--grad-brand); color: white; border-color: transparent; }
.faq-a {
  max-height: 0; overflow: hidden; font-size: 15px; color: var(--gray-2); line-height: 1.7;
  transition: max-height .45s var(--ease-out), padding .45s;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 16px; }

/* ════════════════════════════════
   FINAL CTA
════════════════════════════════ */
.final-cta { padding: 140px 0; background: var(--ink); color: white; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: var(--grad-mesh); opacity: 0.4; pointer-events: none; }
.final-cta-inner { text-align: center; position: relative; max-width: 820px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(42px, 6.5vw, 86px); color: white; margin-bottom: 20px; }
.final-cta p { font-size: 18px; color: var(--gray-3); max-width: 560px; margin: 0 auto 44px; }
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-outline { border-color: rgba(255,255,255,0.18); color: white; }
.final-cta .btn-outline:hover { background: white; color: var(--ink); border-color: white; }

/* ════════════════════════════════
   STICKY CTA
════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  background: var(--ink); color: white; padding: 13px 22px;
  border-radius: 100px; font-size: 13.5px; font-weight: 600;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 9px;
  transform: translateY(100px); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s, background .3s;
  cursor: pointer; text-decoration: none;
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { background: var(--electric); transform: translateY(-3px); }
.sticky-cta-dot {
  width: 7px; height: 7px; background: var(--emerald); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  100% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer { background: #060610; color: white; padding: 80px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { max-width: 290px; }
.footer-desc { font-size: 14px; color: var(--gray-3); line-height: 1.65; margin: 18px 0 24px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.09);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--gray-3); font-size: 13px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-social a:hover { background: var(--grad-brand); color: white; border-color: transparent; transform: translateY(-2px); }
.footer-col-title { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: white; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--gray-3); transition: color .2s, padding-left .2s; display: block; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px; color: var(--gray-3);
}

/* ════════════════════════════════
   INTERIOR PAGES
════════════════════════════════ */
.page-header {
  padding: 160px 0 80px; text-align: center; position: relative;
  overflow: hidden; background: var(--off-white);
}
.page-header h1 { font-size: clamp(50px, 7.5vw, 96px); margin-bottom: 20px; }
.contact-wrap { padding: 120px 0; background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; max-width: 1100px; margin: 0 auto; }
.contact-form { background: white; padding: 48px; border-radius: var(--r-2xl); border: 1px solid var(--gray-4); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-4);
  border-radius: 11px; font-family: inherit; font-size: 14px;
  background: var(--off-white); transition: border-color .2s, box-shadow .2s, background .2s; color: var(--ink);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(59,92,255,0.1); background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h2 { margin-bottom: 22px; }
.contact-info .lede { margin-bottom: 40px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 20px; padding: 20px; background: white; border: 1px solid var(--gray-4); border-radius: var(--r-md); transition: border-color .2s, transform .2s; }
.contact-info-item:hover { border-color: rgba(59,92,255,0.2); transform: translateX(4px); }
.contact-info-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); color: var(--electric); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-info-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-2); margin-bottom: 3px; font-weight: 600; }
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--ink); }
.about-intro { padding: 80px 0 140px; background: var(--off-white); }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-visual { aspect-ratio: 1; background: var(--grad-brand); border-radius: var(--r-2xl); position: relative; overflow: hidden; box-shadow: var(--shadow-brand-lg); }
.about-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 28%, rgba(255,255,255,0.28) 0%, transparent 55%); }
.about-visual::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 36px 36px; }
.about-visual-text { position: absolute; bottom: 40px; left: 40px; right: 40px; color: white; font-family: var(--font-display); font-style: italic; font-size: 30px; line-height: 1.2; letter-spacing: -0.02em; z-index: 1; }

/* ════════════════════════════════
   BLOG & BOOK STYLES
════════════════════════════════ */
.blog-wrap { padding: 80px 0 140px; background: var(--off-white); }
.blog-featured { display: grid; grid-template-columns: 1.3fr 1fr; background: white; border: 1px solid var(--gray-4); border-radius: var(--r-2xl); overflow: hidden; margin-bottom: 80px; transition: transform .4s var(--ease-out), box-shadow .4s; }
.blog-featured:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); }
.blog-featured-visual { min-height: 460px; background: var(--grad-brand); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 40px; }
.blog-featured-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22) 0%, transparent 55%); }
.blog-featured-visual::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(135deg, black 30%, transparent 80%); }
.blog-featured-tag { position: relative; font-size: 11px; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 2px; padding: 6px 12px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 100px; border: 1px solid rgba(255,255,255,0.22); display: inline-block; }
.blog-featured-body { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-meta { display: flex; gap: 14px; align-items: center; font-size: 12px; color: var(--gray-2); font-weight: 500; margin-bottom: 18px; }
.blog-meta-dot { width: 3px; height: 3px; background: var(--gray-3); border-radius: 50%; }
.blog-featured-title { font-family: var(--font-display); font-style: italic; font-size: clamp(26px, 3.5vw, 40px); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px; }
.blog-featured-excerpt { font-size: 15px; color: var(--gray-2); line-height: 1.65; margin-bottom: 32px; }
.blog-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.blog-author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-brand); color: white; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.blog-author-name { font-size: 13px; font-weight: 700; }
.blog-author-role { font-size: 11.5px; color: var(--gray-2); }
.blog-filters { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.blog-filter { padding: 10px 20px; background: white; border: 1px solid var(--gray-4); color: var(--gray-2); font-size: 13px; font-weight: 500; border-radius: 100px; cursor: pointer; transition: all .25s; }
.blog-filter:hover { color: var(--ink); border-color: var(--electric); }
.blog-filter.active { background: var(--ink); color: white; border-color: var(--ink); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: white; border: 1px solid var(--gray-4); border-radius: var(--r-xl); overflow: hidden; transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(59,92,255,0.15); }
.blog-card-visual { height: 200px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 20px; background: var(--grad-brand); }
.blog-card-visual.violet { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.blog-card-visual.cyan { background: linear-gradient(135deg, #0891b2, #1d4ed8); }
.blog-card-visual.sunset { background: linear-gradient(135deg, #f97316, #ec4899); }
.blog-card-visual.emerald { background: linear-gradient(135deg, #10b981, #1d4ed8); }
.blog-card-visual.dark { background: linear-gradient(135deg, #1e1b4b, #3b5cff); }
.blog-card-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 55%); }
.blog-card-tag { position: relative; font-size: 10px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 10px; background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border-radius: 100px; border: 1px solid rgba(255,255,255,0.22); }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-title { font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 11px; transition: color .2s; }
.blog-card:hover .blog-card-title { color: var(--electric); }
.blog-card-excerpt { font-size: 13.5px; color: var(--gray-2); line-height: 1.65; margin-bottom: 22px; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--gray-4); font-size: 12px; color: var(--gray-2); font-weight: 500; }
.blog-read-more { color: var(--electric); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: gap .25s; }
.blog-card:hover .blog-read-more { gap: 8px; }
.newsletter-box { margin-top: 80px; padding: 56px 48px; background: var(--ink); color: white; border-radius: var(--r-2xl); position: relative; overflow: hidden; text-align: center; }
.newsletter-box::before { content: ''; position: absolute; inset: 0; background: var(--grad-mesh); opacity: 0.4; pointer-events: none; }
.newsletter-box > * { position: relative; }
.newsletter-box h3 { font-size: clamp(28px, 4vw, 42px); font-family: var(--font-display); font-style: italic; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 12px; }
.newsletter-box p { color: var(--gray-3); font-size: 16px; max-width: 480px; margin: 0 auto 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; color: white; font-family: inherit; font-size: 14px; transition: background .2s, border-color .2s; }
.newsletter-form input::placeholder { color: var(--gray-3); }
.newsletter-form input:focus { outline: none; background: rgba(255,255,255,0.1); border-color: var(--electric-2); }
.book-wrap { padding: 60px 0 120px; background: var(--off-white); }
.book-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; max-width: 1200px; margin: 0 auto; align-items: start; }
.book-info { position: sticky; top: 120px; }
.book-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.book-benefit { display: flex; gap: 14px; padding: 18px; background: white; border: 1px solid var(--gray-4); border-radius: var(--r-md); transition: transform .25s, border-color .25s; }
.book-benefit:hover { transform: translateX(5px); border-color: rgba(59,92,255,0.2); }
.book-benefit-icon { width: 38px; height: 38px; border-radius: 11px; background: var(--grad-soft); color: var(--electric); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.book-benefit-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.book-benefit-text { font-size: 13px; color: var(--gray-2); line-height: 1.55; }
.book-trust { padding: 20px; background: white; border: 1px solid var(--gray-4); border-radius: var(--r-md); display: flex; flex-direction: column; gap: 14px; }
.book-trust-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-2); }
.book-trust-row strong { color: var(--ink); }
.book-trust-stars { color: var(--gold); letter-spacing: 1px; }
.book-calendar { background: white; border: 1px solid var(--gray-4); border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-md); }
.book-calendar-header { padding: 22px 32px; border-bottom: 1px solid var(--gray-4); background: linear-gradient(to right, rgba(59,92,255,0.03), rgba(124,58,237,0.03)); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.book-calendar-title { font-family: var(--font-display); font-style: italic; font-size: 22px; letter-spacing: -0.01em; }
.book-calendar-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray-2); font-weight: 500; }
.book-calendar-meta-item { display: flex; align-items: center; gap: 6px; }
.book-calendar-meta-item::before { content: ''; width: 6px; height: 6px; background: var(--electric); border-radius: 50%; }
.calendly-inline-widget { min-width: 320px; height: 720px; }
.book-alt { margin-top: 36px; padding: 28px; background: white; border: 1px solid var(--gray-4); border-radius: var(--r-lg); text-align: center; }
.book-alt-title { font-size: 13px; color: var(--gray-2); margin-bottom: 14px; font-weight: 500; }
.book-alt-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.book-alt-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--gray-4); border-radius: 100px; font-size: 13px; color: var(--ink); font-weight: 500; transition: border-color .2s, color .2s, background .2s; }
.book-alt-link:hover { border-color: var(--electric); color: var(--electric); background: rgba(59,92,255,0.04); }

/* ════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width:1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  nav.main-nav.mobile-open .nav-links { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; padding: 16px; background: white; border-radius: 20px; box-shadow: var(--shadow-lg); gap: 2px; }
  .dashboard-body { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(3,1fr); }
  .trust-bar-inner .trust-item:nth-child(4), .trust-bar-inner .trust-item:nth-child(5) { display: none; }
  .problem-grid { grid-template-columns: repeat(2,1fr); }
  .comparison-grid, .about-intro-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-connector { display: none; }
  .case-grid, .testi-grid, .why-grid, .manifesto-items { grid-template-columns: repeat(2,1fr); }
  .case-studies-header { grid-template-columns: 1fr; }
  .workflow-chain { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-visual { min-height: 280px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .book-grid { grid-template-columns: 1fr; }
  .book-info { position: static; }
  .hero-float-card { display: none; }
}
@media (max-width:640px) {
  .container { padding: 0 18px; }
  nav.main-nav { padding: 10px 16px; width: calc(100% - 20px); }
  .hero { padding: 110px 0 60px; }
  .hero-trust { gap: 14px; }
  .problem, .services, .results, .process, .case-studies, .why, .ai-showcase, .testimonials, .faq, .final-cta, .manifesto, .comparison, .integrations { padding: 80px 0; }
  .problem-grid, .case-grid, .testi-grid, .why-grid, .results-grid, .process-grid, .manifesto-items { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .service-tabs { flex-wrap: wrap; border-radius: 20px; }
  .contact-form { padding: 28px; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 11px 18px; font-size: 13px; }
  .blog-grid, .newsletter-form { grid-template-columns: 1fr; flex-direction: column; }
  .blog-featured-body { padding: 28px 22px; }
  .newsletter-box { padding: 40px 24px; }
  .book-calendar-header { padding: 18px 22px; }
  .calendly-inline-widget { height: 650px; }
  .problem-transition { padding: 40px 24px; }
  .hero-showcase-wrap { transform: none; }
}
