/* ============================================
   AIWIZS — Premium Design System v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&family=Syncopate:wght@400;700&display=swap');

:root {
  /* Base */
  --bg:        #080810;
  --bg-soft:   #0c0c18;
  --bg-card:   #0f0f1e;
  --bg-raised: #141428;

  /* Single accent — electric violet */
  --accent:        #7c5cfc;
  --accent-dim:    rgba(124, 92, 252, 0.18);
  --accent-glow:   rgba(124, 92, 252, 0.35);
  --accent-border: rgba(124, 92, 252, 0.3);

  /* Whites */
  --white:     #ffffff;
  --white-85:  rgba(255,255,255,0.85);
  --white-60:  rgba(255,255,255,0.60);
  --white-35:  rgba(255,255,255,0.35);
  --white-15:  rgba(255,255,255,0.15);
  --white-08:  rgba(255,255,255,0.08);
  --white-04:  rgba(255,255,255,0.04);

  /* Borders */
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(124,92,252,0.45);

  /* Typography */
  --font-display: 'Syncopate', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:   0.18s var(--ease-out);
  --t-med:    0.4s  var(--ease-out);
  --t-slow:   0.7s  var(--ease-out);

  /* Section spacing */
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--white-15); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---- Canvas ---- */
#ambient-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: 0.55;
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), #b78bff);
  z-index: 10000; transition: width 0.1s linear;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 3rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(8, 8, 16, 0.75);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-med);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; transition: opacity var(--t-fast); }
.nav-logo:hover img { opacity: 0.8; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-60);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width var(--t-med);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--accent-border);
  background: var(--accent-dim);
  color: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t-fast);
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; padding: 8px;
  transition: all var(--t-fast); z-index: 1002;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--white); border-radius: 1px; transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(8,8,16,0.97); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active { display: flex; opacity: 1; }
.mobile-menu-overlay a {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white-60); transition: color var(--t-fast); padding: 0.75rem 1.5rem;
}
.mobile-menu-overlay a:hover { color: var(--white); }
.mobile-menu-overlay .nav-cta { margin-top: 1rem; font-size: 0.85rem; padding: 0.8rem 2rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden; z-index: 10;
  padding: 0 clamp(1.5rem, 6vw, 7rem);
  padding-top: 68px;
}

/* Animated gradient mesh background */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(124,92,252,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(90,50,200,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 70% 85%, rgba(60,30,180,0.08) 0%, transparent 60%);
  animation: mesh-shift 14s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  0%   { opacity: 1; transform: scale(1) translateX(0); }
  50%  { opacity: 0.85; transform: scale(1.04) translateX(-1%); }
  100% { opacity: 1; transform: scale(1.02) translateX(1%); }
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 30%, transparent 80%);
}

/* Parallax orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; will-change: transform; filter: blur(90px); opacity: 0;
  animation: orb-in 2s var(--ease-out) forwards;
}
@keyframes orb-in { to { opacity: 1; } }

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(100,70,230,0.22) 0%, transparent 70%);
  top: -20%; left: -20%; animation-delay: 0.2s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(80,40,200,0.16) 0%, transparent 70%);
  bottom: -10%; right: 5%; animation-delay: 0.5s;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(150,100,255,0.12) 0%, transparent 70%);
  top: 35%; left: 50%; animation-delay: 0.8s;
}

/* Central Dashboard SVG */
.hero-dashboard {
  position: absolute; top: 50%; right: 6%;
  transform: translateY(-50%);
  width: min(520px, 45vw); height: min(520px, 45vw);
  opacity: 0.055; z-index: 1;
  pointer-events: none;
}

/* Tile Track */
.tile-track {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 10;
}

/* Hero Content — LEFT aligned */
.hero-content {
  position: relative; z-index: 15;
  max-width: 680px;
  will-change: transform, opacity;
  transform-origin: left center;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--accent-border);
  background: var(--accent-dim);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(180,160,255,0.9);
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 6px var(--accent); }
  50%      { opacity:0.5; transform:scale(0.8); box-shadow: 0 0 2px var(--accent); }
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title span {
  background: linear-gradient(135deg, #a78bff 0%, #7c5cfc 50%, #5a3de8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: var(--white-60);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Hero CTAs */
.hero-ctas {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t-fast);
  position: relative; overflow: hidden;
  box-shadow: 0 0 30px rgba(124,92,252,0.4);
}
.hero-btn-primary::before {
  content: ''; position: absolute;
  inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t-fast);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(124,92,252,0.6); }
.hero-btn-primary:hover::before { opacity: 1; }

.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white-85);
  border: 1px solid var(--white-15);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t-fast);
}
.hero-btn-secondary:hover {
  border-color: var(--white-35);
  color: var(--white);
  background: var(--white-04);
}

/* Hero trust line */
.hero-trust {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem; color: var(--white-35);
}
.hero-trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--white-35); }

/* ============================================
   TECH STACK STRIP
   ============================================ */
.tech-strip {
  position: relative; z-index: 5;
  padding: 3rem clamp(1.5rem, 6vw, 7rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  overflow: hidden;
}
.tech-strip-label {
  font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-35);
  text-align: center; margin-bottom: 2rem;
}
.tech-logos {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(2rem, 4vw, 4rem); flex-wrap: wrap;
}
.tech-logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 600;
  color: var(--white-35);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
  opacity: 0.7;
}
.tech-logo:hover { color: var(--white-60); opacity: 1; }
.tech-logo svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================
   PROBLEM STATEMENT
   ============================================ */
.problem-section {
  position: relative; z-index: 5;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 7rem);
  background: var(--bg);
  overflow: hidden;
}
.problem-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
.problem-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.problem-text .section-label { justify-content: flex-start; }
.problem-text .section-label::before { display: none; }
.problem-text .section-title { text-align: left; max-width: 480px; }
.problem-text .section-description { text-align: left; }

.problem-pain-points {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
}
.pain-point {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: all var(--t-fast);
}
.pain-point:hover {
  border-color: var(--accent-border);
  background: var(--bg-raised);
  transform: translateX(4px);
}
.pain-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
}
.pain-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.pain-text h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 600;
  color: var(--white-85); margin-bottom: 0.2rem;
}
.pain-text p {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 400;
  color: var(--white-60); line-height: 1.55;
}

.problem-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.problem-stat-card {
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: all var(--t-med);
  position: relative; overflow: hidden;
}
.problem-stat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity var(--t-med);
}
.problem-stat-card:hover { border-color: var(--accent-border); transform: translateY(-3px); }
.problem-stat-card:hover::before { opacity: 1; }
.problem-stat-card:hover { box-shadow: 0 12px 40px rgba(124,92,252,0.12); }
.psc-number {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 0.4rem;
}
.psc-number span { color: var(--accent); }
.psc-label {
  font-family: var(--font-body);
  font-size: 0.82rem; color: var(--white-60);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-label {
  font-family: var(--font-display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.85rem;
}
.section-label::before, .section-label::after {
  content: ''; width: 24px; height: 1px; background: var(--accent-border);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1; margin-bottom: 1.25rem;
  max-width: 700px;
}

.section-description {
  font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 400;
  line-height: 1.8; color: var(--white-60);
  max-width: 580px; margin-bottom: 3rem;
}

/* ============================================
   ABOUT SECTIONS
   ============================================ */
.about-section {
  position: relative; z-index: 5;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 7rem);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
}

.engine-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; max-width: 680px; width: 100%; margin-top: 3rem;
}
.stat-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  text-align: center;
  transition: all var(--t-med);
}
.stat-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(124,92,252,0.12);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  color: var(--white-35); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================
   GLASS TILES (hero parade)
   ============================================ */
.glass-tile {
  position: absolute;
  width: min(500px, 82vw); min-height: 280px;
  padding: 2.25rem;
  background: rgba(12,12,28,0.88);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 40px rgba(124,92,252,0.06);
  overflow: hidden; pointer-events: auto;
  top: 50%; left: 120%; opacity: 0; visibility: hidden;
  animation: tile-breathe 4s ease-in-out infinite;
}
@keyframes tile-breathe {
  0%,100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 40px rgba(124,92,252,0.06); border-color: var(--border); }
  50%      { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 60px rgba(124,92,252,0.14), 0 0 100px rgba(124,92,252,0.06); border-color: rgba(124,92,252,0.22); }
}

.glass-tile::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.018) 50%, transparent);
  animation: tile-sheen 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tile-sheen { 0%,100% { transform:translateX(-10%); } 50% { transform:translateX(10%); } }

.tile-image { width: 100%; height: 160px; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.5rem; }
.tile-image svg { width: 100%; height: 100%; display: block; }
.tile-number { font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.tile-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white-85); margin-bottom: 0.75rem; }
.tile-description { font-family: var(--font-body); font-size: 0.88rem; font-weight: 400; line-height: 1.7; color: var(--white-60); }
.tile-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.tile-feature-tag {
  padding: 0.25rem 0.7rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500; color: rgba(180,160,255,0.85); letter-spacing: 0.04em;
}
.tile-node-glow { position: absolute; bottom: -30px; right: -30px; width: 160px; height: 160px; opacity: 0.04; pointer-events: none; }
.tile-node-glow svg { width: 100%; height: 100%; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
  position: relative; z-index: 5;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 7rem);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  background: var(--bg-soft);
  overflow: hidden;
}
.how-it-works-section::before {
  content: ''; position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(124,92,252,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.steps-track {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; max-width: 1000px; width: 100%; margin-top: 4rem;
}

.step-card {
  flex: 1; max-width: 280px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  text-align: center;
  transition: all var(--t-med);
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(124,92,252,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--t-med);
}
.step-card:hover { border-color: var(--accent-border); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(124,92,252,0.15); }
.step-card:hover::before { opacity: 1; }

.step-number {
  font-family: var(--font-display); font-size: 0.58rem;
  letter-spacing: 0.3em; color: var(--accent); margin-bottom: 1.25rem;
}
.step-icon {
  width: 52px; height: 52px; margin: 0 auto 1.25rem;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.step-icon svg { width: 22px; height: 22px; }
.step-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white-85); margin-bottom: 0.75rem; line-height: 1.3; }
.step-card p  { font-family: var(--font-body); font-size: 0.84rem; font-weight: 400; line-height: 1.75; color: var(--white-60); }

.step-connector {
  flex-shrink: 0; width: 56px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.step-connector svg { width: 100%; height: 20px; }

/* ============================================
   RESULTS / ROI
   ============================================ */
.results-section {
  position: relative; z-index: 5;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 7rem);
  background: var(--bg);
  overflow: hidden;
}
.results-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 50%, rgba(124,92,252,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 85% 50%, rgba(90,50,200,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.results-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
}
.results-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem; max-width: 900px; width: 100%; margin-top: 3.5rem;
}
.result-card {
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  text-align: center;
  transition: all var(--t-med);
  position: relative; overflow: hidden;
}
.result-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity var(--t-med);
}
.result-card:hover { border-color: var(--accent-border); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(124,92,252,0.14); }
.result-card:hover::after { opacity: 1; }
.result-top { display: flex; align-items: baseline; justify-content: center; gap: 0.15rem; margin-bottom: 0.6rem; }
.result-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.result-suffix { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.result-label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; color: var(--white-35); letter-spacing: 0.06em; line-height: 1.5; text-transform: uppercase; }

/* ============================================
   SERVICE DEEP-DIVES
   ============================================ */
.services-container { position: relative; z-index: 5; }

.service-section {
  position: relative;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 7rem);
  display: flex; align-items: center; justify-content: center;
}
.service-section:nth-child(even) {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
}

.service-inner {
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem); align-items: center;
}
.service-section:nth-child(even) .service-inner { direction: rtl; }
.service-section:nth-child(even) .service-inner > * { direction: ltr; }

.tile-landing-zone { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; }
.tile-landing-zone .landed-tile {
  position: relative; width: 100%; padding: 2.25rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden; opacity: 0; transform: translateY(40px);
}
.tile-landing-zone .landed-tile::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,92,252,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.service-text { padding: var(--space-lg, 2.5rem) 0; }
.service-text .section-label { justify-content: flex-start; }
.service-text .section-label::before { display: none; }
.service-text .section-title { text-align: left; }
.service-text .section-description { text-align: left; }

.service-features { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.service-feature-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: all var(--t-fast);
}
.service-feature-item:hover { border-color: var(--accent-border); background: var(--bg-raised); transform: translateX(4px); }
.feature-icon {
  flex-shrink: 0; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); border: 1px solid var(--accent-border); border-radius: var(--radius-sm);
}
.feature-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.feature-text h4 { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600; color: var(--white-85); margin-bottom: 0.2rem; }
.feature-text p  { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; color: var(--white-60); line-height: 1.55; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  position: relative; z-index: 5;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 7rem);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--bg-soft); overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; max-width: 1100px; width: 100%; margin-top: 4rem;
}
.testimonial-card {
  padding: 2.25rem 2rem;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-card);
  text-align: left; display: flex; flex-direction: column; gap: 1.5rem;
  transition: all var(--t-med); position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
  opacity: 0; transition: opacity var(--t-med);
}
.testimonial-card:hover { border-color: var(--accent-border); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(124,92,252,0.12); }
.testimonial-card:hover::before { opacity: 1; }

.testimonial-stars { color: rgba(255,195,50,0.9); font-size: 0.88rem; letter-spacing: 0.08em; }
.testimonial-quote { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; line-height: 1.8; color: var(--white-60); font-style: normal; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
  color: var(--accent); flex-shrink: 0;
}
.author-name { font-family: var(--font-heading); font-size: 0.86rem; font-weight: 600; color: var(--white-85); }
.author-role { font-family: var(--font-body); font-size: 0.72rem; color: var(--white-35); margin-top: 0.1rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  position: relative; z-index: 5;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 7rem);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--bg);
}
.faq-list { max-width: 720px; width: 100%; margin-top: 3.5rem; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.5rem 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-heading); font-size: 0.93rem; font-weight: 600;
  color: var(--white-60); text-align: left; transition: color var(--t-fast);
}
.faq-question:hover { color: var(--white); }
.faq-question[aria-expanded="true"] { color: var(--white); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1; font-weight: 300; color: var(--white-35);
  transition: all var(--t-fast);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); border-color: var(--accent-border); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding-bottom: 1.5rem; font-family: var(--font-body); font-size: 0.87rem; font-weight: 400; line-height: 1.8; color: var(--white-60); }

/* ============================================
   CONTACT / FOOTER CTA
   ============================================ */
.footer-cta {
  position: relative; z-index: 5;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 7rem);
  min-height: 80vh;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  background: var(--bg-soft); overflow: hidden;
}
.footer-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,92,252,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.booking-cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 3rem; position: relative; z-index: 1; }
.book-call-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  border: none; border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  transition: all var(--t-fast);
  box-shadow: 0 4px 30px rgba(124,92,252,0.4);
  position: relative; overflow: hidden;
}
.book-call-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t-fast);
}
.book-call-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 50px rgba(124,92,252,0.6); }
.book-call-btn:hover::before { opacity: 1; }
.book-call-btn > * { position: relative; z-index: 1; }
.book-call-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.booking-divider { font-family: var(--font-body); font-size: 0.72rem; color: var(--white-35); letter-spacing: 0.12em; text-transform: uppercase; }

/* Form */
.cta-form { max-width: 480px; width: 100%; margin-top: 0; position: relative; z-index: 1; }
.form-group { margin-bottom: 1.25rem; text-align: left; }
.form-group label { font-family: var(--font-heading); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-35); display: block; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1.2rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 400;
  outline: none; transition: all var(--t-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent-border);
  background: var(--bg-raised);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237c5cfc' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-group select option { background: var(--bg-soft); color: var(--white); }

.submit-btn {
  width: 100%; padding: 1rem 2rem;
  background: var(--accent); border: none; border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: all var(--t-fast);
  box-shadow: 0 4px 20px rgba(124,92,252,0.35);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(124,92,252,0.55); }

.word-counter { text-align: right; font-family: var(--font-body); font-size: 0.68rem; color: var(--white-35); margin-top: 0.4rem; transition: color var(--t-fast); }
.word-counter.over-limit { color: #ff6464; }

/* Form Confirmation Overlay */
.form-confirmation {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease; z-index: 10;
}
.confirmation-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(124,92,252,0.12); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--accent); margin-bottom: 1.5rem;
}
.confirmation-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.confirmation-message { font-family: var(--font-body); font-size: 0.93rem; line-height: 1.8; color: var(--white-60); max-width: 380px; margin-bottom: 2rem; }
.confirmation-message strong { color: var(--white-85); font-weight: 500; }
.confirmation-reset {
  background: none; border: 1px solid var(--border); color: var(--white-35);
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.5rem; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--t-fast);
}
.confirmation-reset:hover { color: var(--white-60); border-color: var(--white-15); background: var(--white-04); }

/* Footer bottom */
.footer-bottom {
  margin-top: 5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  width: 100%; max-width: 860px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.footer-brand img { height: 28px; opacity: 0.55; }
.footer-links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.75rem;
  color: var(--white-35); text-decoration: none; transition: color var(--t-fast);
}
.footer-link:hover { color: var(--white-60); }
.footer-copy { font-family: var(--font-body); font-size: 0.72rem; color: var(--white-15); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(32px); }
.reveal.active { opacity: 1; transform: translateY(0); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); }

/* ============================================
   HERO DASHBOARD
   ============================================ */
.hero-dashboard { position: absolute; top: 50%; right: 6%; transform: translateY(-50%); width: min(500px, 42vw); height: min(500px, 42vw); opacity: 0.05; z-index: 1; pointer-events: none; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet wide --- */
@media (max-width: 1100px) {
  .problem-inner { grid-template-columns: 1fr; gap: 3rem; }
  .problem-text { text-align: center; }
  .problem-text .section-label { justify-content: center; }
  .problem-text .section-label::before { display: block; }
  .problem-text .section-title { max-width: 100%; text-align: center; }
  .problem-text .section-description { text-align: center; margin-left: auto; margin-right: auto; }
  .problem-pain-points { max-width: 560px; margin-left: auto; margin-right: auto; }
  .problem-stats { flex-direction: row; }
  .problem-stat-card { flex: 1; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: 1/-1; max-width: 500px; margin: 0 auto; }
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .hero { justify-content: center; text-align: center; }
  .hero-content { max-width: 600px; }
  .hero-title { font-size: clamp(2.5rem, 7vw, 4rem); }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-dashboard { display: none; }
  .service-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-section:nth-child(even) .service-inner { direction: ltr; }
  .service-text .section-title, .service-text .section-description { text-align: center; }
  .service-text .section-label { justify-content: center; }
  .service-text .section-label::before { display: block; }
  .tile-landing-zone .landed-tile { max-width: 100%; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 0 1.25rem; height: 60px; }
  .nav-logo img { height: 40px; }
  .nav-links, .nav .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }

  /* Mobile menu — bigger tap targets */
  .mobile-menu-overlay a { font-size: 1.25rem; padding: 1rem 2rem; }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding: 80px 1.25rem 3rem;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .hero-mesh { opacity: 0.7; }
  .hero-grid { display: none; }
  .hero-content { transform: none !important; opacity: 1 !important; max-width: 100%; }
  .hero-badge { margin-bottom: 1.25rem; }
  .hero-eyebrow { font-size: 0.72rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); letter-spacing: -0.01em; }
  .hero-subtitle { font-size: 0.95rem; max-width: 100%; }
  .hero-orb { display: none; }
  .hero-ctas {
    flex-direction: column; align-items: stretch;
    width: 100%; max-width: 320px; margin: 0 auto;
    gap: 0.75rem;
  }
  .hero-btn-primary, .hero-btn-secondary {
    justify-content: center; width: 100%;
    padding: 1rem 1.5rem; font-size: 0.85rem;
  }
  .hero-trust {
    flex-wrap: wrap; justify-content: center;
    gap: 0.5rem; font-size: 0.7rem;
  }
  .hero-trust-dot { display: none; }

  /* Tech strip */
  .tech-strip { padding: 2rem 1.25rem; }
  .tech-logos {
    gap: 1.25rem 2rem;
    justify-content: center;
  }
  .tech-logo { font-size: 0.75rem; }

  /* Problem section */
  .problem-section { padding: 4rem 1.25rem; }
  .problem-inner { gap: 2.5rem; }
  .problem-stats { flex-direction: column; gap: 0.85rem; }
  .problem-stat-card { padding: 1.5rem 1.75rem; }
  .psc-number { font-size: 2.4rem; }
  .pain-point { padding: 1rem 1.1rem; }

  /* About sections */
  .about-section { padding: 4rem 1.25rem; }
  .engine-stats { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .stat-card { padding: 1.5rem 1rem; }
  .stat-value { font-size: 1.6rem; }

  /* Glass tiles — disable GSAP parade on mobile, show as cards */
  .glass-tile {
    position: relative !important; width: 100% !important;
    left: auto !important; top: auto !important;
    transform: none !important; opacity: 1 !important; visibility: visible !important;
    margin-bottom: 0.85rem; min-height: auto; padding: 1.5rem;
    animation: none;
  }
  .tile-track {
    position: relative; display: flex; flex-direction: column;
    padding: 1.5rem 1.25rem; gap: 0;
  }
  .tile-image { height: 130px; }

  /* Services */
  .service-section { padding: 4rem 1.25rem; }
  .service-inner { gap: 2rem; }
  .service-feature-item { padding: 0.85rem 1rem; }

  /* How it works */
  .how-it-works-section { padding: 4rem 1.25rem; }
  .steps-track { flex-direction: column; gap: 0.85rem; align-items: stretch; }
  .step-card { max-width: 100%; padding: 2rem 1.5rem; }
  .step-connector { width: 2px; height: 28px; margin: 0 auto; transform: none; }
  .step-connector svg { display: none; }

  /* Results */
  .results-section { padding: 4rem 1.25rem; }
  .results-grid { grid-template-columns: repeat(2,1fr); gap: 0.85rem; }
  .result-card { padding: 1.75rem 1rem; }
  .result-number { font-size: 2.4rem; }

  /* Testimonials */
  .testimonials-section { padding: 4rem 1.25rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 0.85rem; margin-top: 2.5rem; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: 100%; }
  .testimonial-card { padding: 1.75rem 1.5rem; gap: 1.25rem; }

  /* FAQ */
  .faq-section { padding: 4rem 1.25rem; }
  .faq-list { margin-top: 2.5rem; }
  .faq-question { font-size: 0.88rem; padding: 1.25rem 0; }

  /* Contact / footer */
  .footer-cta { padding: 4rem 1.25rem; min-height: auto; }
  .booking-cta { margin-bottom: 2rem; }
  .book-call-btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 0.85rem; }
  .cta-form { padding: 0; }
  .form-group input, .form-group textarea, .form-group select {
    font-size: 1rem; /* prevents iOS zoom on focus */
    padding: 0.85rem 1rem;
  }
  .submit-btn { padding: 1rem; font-size: 0.85rem; }
  .footer-bottom {
    flex-direction: column; gap: 1.25rem;
    text-align: center; margin-top: 3rem;
  }
  .footer-links { gap: 1rem; }

  /* Section labels centred on mobile */
  .section-label { justify-content: center; }
  .section-label::before { display: block; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); text-align: center; margin-left: auto; margin-right: auto; }
  .section-description { text-align: center; margin-left: auto; margin-right: auto; font-size: 0.95rem; }
}

/* --- Small phones --- */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .results-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .result-number { font-size: 2rem; }
  .result-suffix { font-size: 1rem; }
  .psc-number { font-size: 2rem; }
  .engine-stats { grid-template-columns: 1fr 1fr; }
  .tech-logos { gap: 1rem 1.5rem; }
  .tech-logo svg { display: none; }
  .testimonials-grid { margin-top: 2rem; }

  /* Step connector as a simple line */
  .step-connector { height: 20px; }
}

/* --- Touch device hover removal (prevents sticky hover states) --- */
@media (hover: none) {
  .step-card:hover,
  .result-card:hover,
  .testimonial-card:hover,
  .pain-point:hover,
  .problem-stat-card:hover,
  .service-feature-item:hover,
  .stat-card:hover { transform: none; box-shadow: none; }

  .hero-btn-primary:hover { transform: none; }
  .book-call-btn:hover { transform: none; }
  .submit-btn:hover { transform: none; }
}
