/* ═══════════════════════════════════════════
   Mobixo AI - Design System
   ═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  /* Colors */
  --c-bg: #050510;
  --c-bg-alt: #0a0a1a;
  --c-surface: #111128;
  --c-surface-hover: #1a1a3a;
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-hover: rgba(255, 255, 255, 0.15);

  --c-text: #e4e4ed;
  --c-text-muted: #8b8ba0;
  --c-text-dim: #5a5a72;
  --c-heading: #ffffff;

  --c-primary: #6c5ce7;
  --c-primary-light: #a29bfe;
  --c-primary-dark: #4834d4;
  --c-primary-glow: rgba(108, 92, 231, 0.25);

  --c-accent: #00cec9;
  --c-accent-light: #55efc4;

  --c-success: #00b894;
  --c-error: #d63031;
  --c-warning: #fdcb6e;

  /* Aliases (shorthand used in inline styles) */
  --primary: var(--c-primary);
  --accent: var(--c-accent);
  --text-muted: var(--c-text-muted);
  --text-secondary: var(--c-text);
  --surface-2: var(--c-bg-alt);
  --surface-3: var(--c-surface-hover);

  /* Typography */
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3.25rem;
  --fs-6xl: 4rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-w: 1200px;
  --header-h: 72px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary-light); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent); }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--c-heading); line-height: 1.2; font-weight: 700; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

/* ─── Typography ─── */
.h1 { font-size: clamp(var(--fs-4xl), 5vw, var(--fs-6xl)); letter-spacing: -0.03em; }
.h2 { font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl)); letter-spacing: -0.02em; }
.h3 { font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl)); letter-spacing: -0.01em; }
.h4 { font-size: var(--fs-xl); }
.text-gradient {
  background: linear-gradient(135deg, var(--c-primary-light), var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted { color: var(--c-text-muted); }
.text-dim { color: var(--c-text-dim); }
.text-center { text-align: center; }
.text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }
.text-lg { font-size: var(--fs-lg); }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.section {
  padding: var(--space-5xl) 0;
}
.section--alt {
  background: var(--c-bg-alt);
}
.section--surface {
  background: var(--c-surface);
}

/* Flex/Grid utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

.grid, .grid-2, .grid-3, .grid-4 { display: grid; gap: var(--space-xl); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base);
}
.site-header.is-scrolled {
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border);
}
.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--c-heading);
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: var(--fs-sm);
  color: #fff;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  position: relative;
}
.nav-link:hover, .nav-link.is-active {
  color: var(--c-heading);
}
.nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-primary);
  border-radius: 1px;
}
.nav-cta {
  margin-left: var(--space-lg);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-heading);
  margin: 5px auto;
  transition: transform var(--t-base), opacity var(--t-fast);
  border-radius: 2px;
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--t-base);
}
.nav-overlay.is-visible {
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-overlay { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--c-bg-alt);
    padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transition: right var(--t-base);
    z-index: 999;
    border-left: 1px solid var(--c-border);
  }
  .nav-menu.is-open { right: 0; }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }
  .nav-link { font-size: var(--fs-lg); }
  .nav-cta { margin-left: 0; margin-top: var(--space-lg); width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--c-primary-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--c-primary-glow);
  color: #fff;
}
.btn--secondary {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-hover);
}
.btn--secondary:hover {
  background: var(--c-surface);
  border-color: var(--c-primary);
  color: var(--c-heading);
}
.btn--ghost {
  background: transparent;
  color: var(--c-text-muted);
  padding: 0.5rem 1rem;
}
.btn--ghost:hover {
  color: var(--c-heading);
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--fs-base);
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs-xs);
}
.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ─── Cards ─── */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-primary-glow), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1));
  border: 1px solid var(--c-border);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-xl);
}
.card-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}
.card-text {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.375rem 1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--space-xl);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse-dot 2s infinite;
}
.hero-title {
  margin-bottom: var(--space-lg);
}
.hero-subtitle,
.hero-sub {
  font-size: clamp(var(--fs-lg), 2vw, var(--fs-xl));
  color: var(--c-text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  line-height: 1.6;
}
.hero--compact {
  padding: var(--space-4xl) 0 var(--space-2xl);
  text-align: center;
}
.hero--compact .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.hero-eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  margin-bottom: var(--space-md);
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(108, 92, 231, 0.15);
  color: var(--c-primary);
}

/* Hero background glow */
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--c-primary-glow) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* Grid pattern background */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ─── Social Proof Strip ─── */
.proof-strip {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  opacity: 0.4;
}
.proof-logo {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}
.proof-item {
  text-align: center;
}
.proof-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}
.proof-label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-top: var(--space-xs);
}

/* ─── Steps / Framework ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}
.step {
  counter-increment: step;
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: var(--fs-5xl);
  font-weight: 800;
  color: var(--c-surface);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, rgba(108, 92, 231, 0.2) 0%, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}
.step-text {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: var(--space-lg); }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Section Headers ─── */
.section-header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.section-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-primary-light);
  margin-bottom: var(--space-md);
}
.section-title {
  margin-bottom: var(--space-md);
}
.section-desc,
.section-sub {
  color: var(--c-text-muted);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

/* ─── CTA Band ─── */
.cta-band {
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 206, 201, 0.05));
  pointer-events: none;
}
.cta-band-title,
.cta-title {
  margin-bottom: var(--space-md);
  position: relative;
}
.cta-band-text,
.cta-sub {
  color: var(--c-text-muted);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ─── Footer ─── */
.site-footer {
  padding: var(--space-4xl) 0 var(--space-2xl);
  border-top: 1px solid var(--c-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.footer-brand-desc {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
  max-width: 280px;
  line-height: 1.7;
}
.footer-col-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-link {
  display: block;
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  padding: var(--space-xs) 0;
  transition: color var(--t-fast);
}
.footer-link:hover { color: var(--c-heading); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--c-border);
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
}

/* ─── Product Card ─── */
.product-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
}
.product-card:hover {
  border-color: var(--c-primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px var(--c-primary-glow);
}
.product-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--c-surface), var(--c-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-4xl);
}
.product-card-body {
  padding: var(--space-xl);
}
.product-card-tag {
  font-size: var(--fs-xs);
  color: var(--c-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.product-card-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}
.product-card-desc {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.product-card-features {
  margin-bottom: var(--space-lg);
}
.product-card-features li {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
}
.product-card-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-accent);
}

/* ─── Case Study Card ─── */
.case-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--t-base);
}
.case-card:hover {
  border-color: var(--c-border-hover);
}
.case-card-label {
  font-size: var(--fs-xs);
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-md);
}
.case-card-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}
.case-card-desc {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.case-card-metrics {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.metric {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--c-heading);
  line-height: 1;
}
.metric-label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--space-xs);
}

/* ─── Testimonial ─── */
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}
.testimonial-text {
  font-size: var(--fs-lg);
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; color: var(--c-primary); font-size: var(--fs-3xl); }
.testimonial-author {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-heading);
}
.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* ─── Service Card ─── */
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--t-base);
}
.service-card:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-2px);
}
.service-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  color: var(--c-accent);
  background: rgba(0, 206, 201, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}
.service-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}
.service-desc {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.service-includes {
  margin-bottom: var(--space-lg);
}
.service-includes-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: var(--space-sm);
}
.service-includes li {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
}
.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-success);
  font-weight: 700;
}
.service-meta {
  display: flex;
  gap: var(--space-xl);
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-lg);
}

/* ─── Contact Form ─── */
.form-group {
  margin-bottom: var(--space-lg);
}
.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-heading);
  margin-bottom: var(--space-sm);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  color: var(--c-text);
  font-size: var(--fs-base);
  font-family: var(--f-sans);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-glow);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10L6 8z' fill='%238b8ba0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
/* Honeypot */
.form-hp { position: absolute; left: -9999px; }
.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
}
.form-message.success {
  background: rgba(0, 184, 148, 0.1);
  border: 1px solid var(--c-success);
  color: var(--c-success);
}
.form-message.error {
  background: rgba(214, 48, 49, 0.1);
  border: 1px solid var(--c-error);
  color: var(--c-error);
}

/* ─── Page Header (for inner pages) ─── */
.page-header {
  padding: calc(var(--header-h) + var(--space-4xl)) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}
.page-header .grid-bg { opacity: 0.15; }

/* ─── Trust Section ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.trust-item {
  text-align: center;
  padding: var(--space-2xl);
}
.trust-icon {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}
.trust-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}
.trust-text {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ─── Scroll Reveal Animation ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="delay-1"] { transition-delay: 0.1s; }
[data-reveal="delay-2"] { transition-delay: 0.2s; }
[data-reveal="delay-3"] { transition-delay: 0.3s; }
[data-reveal="delay-4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Animations ─── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── Utilities ─── */
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.w-full { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.z-1 { z-index: 1; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Tag ─── */
.tag {
  display: inline-block;
  font-size: var(--fs-xs);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(108, 92, 231, 0.15);
  color: var(--c-primary-light);
  font-weight: 500;
}
.tag--accent {
  background: rgba(0, 206, 201, 0.15);
  color: var(--c-accent);
}
.tag--coming {
  background: rgba(253, 203, 110, 0.15);
  color: var(--c-warning);
}

/* ─── Divider ─── */
.divider {
  height: 1px;
  background: var(--c-border);
  border: none;
  margin: var(--space-3xl) 0;
}

/* ─── Blog Card ─── */
.blog-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--c-surface), var(--c-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-4xl);
}
.blog-card-body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-bottom: var(--space-md);
  width: fit-content;
}
.blog-card-tag--ai {
  background: rgba(108, 92, 231, 0.15);
  color: var(--c-primary-light);
}
.blog-card-tag--business {
  background: rgba(0, 206, 201, 0.15);
  color: var(--c-accent);
}
.blog-card-tag--case {
  background: rgba(0, 184, 148, 0.15);
  color: var(--c-success);
}
.blog-card-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
.blog-card-title a {
  color: var(--c-heading);
  transition: color var(--t-fast);
}
.blog-card-title a:hover {
  color: var(--c-primary-light);
}
.blog-card-excerpt {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex: 1;
}
.blog-card-meta {
  display: flex;
  gap: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
}

/* ─── Blog Filter ─── */
.blog-filter {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}
.blog-filter-btn {
  padding: 0.4rem 1rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-muted);
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--f-sans);
}
.blog-filter-btn:hover,
.blog-filter-btn.is-active {
  color: var(--c-heading);
  border-color: var(--c-primary);
  background: rgba(108, 92, 231, 0.1);
}

/* ─── Article Content ─── */
.article-header {
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.article-meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-text-dim);
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}
.article-content h3 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}
.article-content p {
  color: var(--c-text);
  font-size: var(--fs-base);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.article-content ul,
.article-content ol {
  color: var(--c-text);
  font-size: var(--fs-base);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li {
  margin-bottom: var(--space-sm);
}
.article-content blockquote {
  border-left: 3px solid var(--c-primary);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-2xl) 0;
  background: var(--c-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.article-content strong {
  color: var(--c-heading);
  font-weight: 600;
}
