:root {
  color-scheme: dark;
  --bg-void: #050508;
  --bg-dark: #0A0A10;
  --bg-card: #12121A;
  --bg-glass: rgba(255, 255, 255, 0.08);
  --bg-glass-border: rgba(255, 255, 255, 0.12);
  --text-white: #FFFFFF;
  --text-light: #E2E8F0;
  --text-dim: #94A3B8;
  --text-muted: #475569;
  --neon-blue: #3B82F6;
  --neon-purple: #8B5CF6;
  --neon-pink: #EC4899;
  --neon-green: #10B981;
  --neon-cyan: #06B6D4;
  --neon-orange: #F59E0B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-void);
  color: var(--text-white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--bg-void);
}

.page--home {
  background: #050508;
  background-image:
    radial-gradient(1000px 600px at 20% 10%, rgba(26, 10, 46, 0.6), transparent 60%),
    radial-gradient(800px 600px at 70% 30%, rgba(59, 130, 246, 0.24), transparent 60%),
    radial-gradient(900px 700px at 80% 70%, rgba(13, 26, 42, 0.6), transparent 60%),
    radial-gradient(700px 600px at 30% 80%, rgba(26, 5, 51, 0.55), transparent 60%);
}

.page--services {
  background: #050508;
  background-image:
    radial-gradient(900px 600px at 20% 10%, rgba(10, 22, 40, 0.45), transparent 60%),
    radial-gradient(800px 600px at 70% 40%, rgba(139, 92, 246, 0.12), transparent 60%),
    radial-gradient(900px 700px at 70% 80%, rgba(26, 5, 51, 0.5), transparent 60%);
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.logo-mark .icon {
  width: 22px;
  height: 22px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}

.nav a.is-active {
  font-weight: 600;
  color: var(--text-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}

.phone-pill .icon {
  width: 16px;
  height: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 100px;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.btn-sm {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
}

.btn-lg {
  padding: 20px 44px;
  font-size: 15px;
}

.btn-xl {
  padding: 24px 56px;
  font-size: 17px;
}

.btn-primary {
  color: var(--text-white);
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.35);
}

.btn-success {
  color: var(--text-white);
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.btn-submit {
  border-radius: 14px;
  height: 56px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
}

.btn-consult {
  padding: 22px 48px;
  font-size: 15px;
}

.btn-ghost {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.btn-block {
  width: 100%;
}

/* Mobile menu */
.nav-toggle {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
}

.menu-toggle::before { top: 14px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 28px; }

.nav-toggle:checked + .menu-toggle::before {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle:checked + .menu-toggle span {
  opacity: 0;
}

.nav-toggle:checked + .menu-toggle::after {
  top: 21px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  height: 920px;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb.orb-1 {
  width: 800px;
  height: 800px;
  left: 500px;
  top: -50px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0));
  filter: blur(80px);
}

.hero-orb.orb-2 {
  width: 700px;
  height: 700px;
  left: -100px;
  top: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.21), rgba(139, 92, 246, 0));
  filter: blur(60px);
}

.hero-orb.orb-3 {
  width: 500px;
  height: 500px;
  left: 800px;
  top: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18), rgba(236, 72, 153, 0));
  filter: blur(50px);
}

.decor-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.decor-ring.ring-1 {
  width: 200px;
  height: 200px;
  left: 1180px;
  top: 20px;
  border: 1px solid rgba(59, 130, 246, 0.08);
  filter: blur(2px);
}

.decor-ring.ring-2 {
  width: 140px;
  height: 140px;
  left: 1210px;
  top: 50px;
  border: 1px solid rgba(139, 92, 246, 0.08);
  filter: blur(1px);
}

.hero-content {
  position: absolute;
  left: 60px;
  top: 110px;
  width: 720px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dim);
  width: fit-content;
}

.badge-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.title-main {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.95;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 40%, #3B82F6 80%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.title-sub {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.95;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-actions .btn-primary {
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-actions .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Float items */
.glow-line {
  position: absolute;
  left: 60px;
  top: 580px;
  width: 700px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #3B82F6, #8B5CF6, transparent);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.trust-badge {
  position: absolute;
  left: 60px;
  top: 700px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.trust-item .icon {
  width: 18px;
  height: 18px;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.live-indicator {
  position: absolute;
  left: 840px;
  top: 440px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.live-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-green);
}

.roi-badge {
  position: absolute;
  left: 1200px;
  top: 280px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.roi-badge span:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon-pink);
}

.roi-badge span:last-child {
  font-size: 28px;
  font-weight: 900;
}

.notification-badge {
  position: absolute;
  left: 1140px;
  top: 440px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #0D0D18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(16, 185, 129, 0.15), 0 4px 20px rgba(0, 0, 0, 0.25);
}

.notification-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

.notification-texts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notification-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-white);
}

.notification-subtitle {
  font-size: 10px;
  color: #64748B;
}

.conv-badge {
  position: absolute;
  left: 1180px;
  top: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #0D0D18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.2);
}

.conv-badge .icon {
  width: 14px;
  height: 14px;
  color: var(--neon-green);
}

.conv-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--neon-green);
}

/* Dashboard */
.dashboard {
  position: absolute;
  left: 840px;
  top: 80px;
  width: 520px;
  height: 340px;
  border-radius: 20px;
  background: #0D0D18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 60px rgba(59, 130, 246, 0.15), 0 8px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dashboard-top {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  color: #64748B;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dashboard-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.dash-metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-metric span {
  font-size: 9px;
  color: #64748B;
  font-weight: 500;
}

.dash-metric strong {
  font-size: 16px;
  font-weight: 800;
}

.dash-metric .delta {
  font-size: 9px;
  font-weight: 600;
  color: var(--neon-green);
}

.dash-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
}

.chart-period {
  background: rgba(59, 130, 246, 0.15);
  color: var(--neon-blue);
  font-size: 9px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 3px;
  padding-top: 8px;
  height: 100%;
}

.chart-bars span {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: rgba(59, 130, 246, 0.4);
}

.chart-bars .bar-6,
.chart-bars .bar-7,
.chart-bars .bar-8,
.chart-bars .bar-9 {
  background: rgba(139, 92, 246, 0.4);
}

.chart-bars .bar-10,
.chart-bars .bar-11 {
  background: linear-gradient(90deg, #3B82F6, #8B5CF6);
}

.chart-bars .bar-12 {
  background: linear-gradient(90deg, #3B82F6, #EC4899);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* Marquee */
.marquee {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 40px;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

.marquee span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-white);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section headers */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section-title {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  text-align: center;
  max-width: 800px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
}

.tag {
  display: inline-flex;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}

.tag-blue {
  color: var(--neon-blue);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.tag-pink {
  color: var(--neon-pink);
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.tag-green {
  color: var(--neon-green);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag-amber {
  color: var(--neon-orange);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.tag-purple {
  color: var(--neon-purple);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.tag-cyan {
  color: var(--neon-cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Services bento */
.services {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.bento-row {
  display: grid;
  gap: 16px;
}

.bento-row.row-1 {
  grid-template-columns: 1fr 500px;
  height: 340px;
}

.bento-row.row-2 {
  grid-template-columns: repeat(3, 1fr);
  height: 300px;
}

.bento-card {
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.bento-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
}

.bento-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.bento-card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

.bento-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.bento-card.card-setup {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05), rgba(255, 255, 255, 0.04));
  border-color: rgba(59, 130, 246, 0.2);
}

.bento-card.card-optimize {
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.06), rgba(255, 255, 255, 0.04));
  border-color: rgba(245, 158, 11, 0.18);
}

.bento-card .glow-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
  top: -80px;
  left: -60px;
  filter: blur(40px);
}

/* Why section */
.why {
  padding: 120px 80px;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.stat-card .stat-value {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -3px;
}

.stat-card .stat-label {
  font-size: 15px;
  color: #64748B;
  line-height: 1.5;
}

.stat-card .progress {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

/* Process */
.process {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-width: 2px;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step .step-num {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -3px;
}

.step h3 {
  font-size: 22px;
  font-weight: 800;
}

.step p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
}

.step .step-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.step .step-time .icon {
  width: 14px;
  height: 14px;
}

/* Testimonials */
.testimonials {
  padding: 120px 80px;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card.highlight {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.06), rgba(255, 255, 255, 0.04));
  border-color: rgba(59, 130, 246, 0.2);
}

.stars {
  font-size: 18px;
  color: var(--neon-orange);
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.author strong {
  font-size: 15px;
  font-weight: 700;
}

.author span {
  font-size: 13px;
  color: #64748B;
}

.testimonial-metrics {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-block strong {
  font-size: 20px;
  font-weight: 800;
}

.metric-block span {
  font-size: 10px;
  font-weight: 500;
  color: #64748B;
}

/* CTA */
.cta {
  height: 640px;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-orb.orb-a {
  width: 1000px;
  height: 1000px;
  left: 200px;
  top: -300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 60%);
}

.cta-orb.orb-b {
  width: 800px;
  height: 800px;
  left: 500px;
  top: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 60%);
}

.cta-orb.orb-c {
  width: 600px;
  height: 600px;
  left: 900px;
  top: -100px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.14), transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
}

.cta .btn-primary {
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.44), 0 4px 20px rgba(0, 0, 0, 0.31);
}

.cta-title {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -3px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #3B82F6 60%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.cta-subtitle {
  font-size: 20px;
  color: var(--text-dim);
  text-align: center;
  max-width: 600px;
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.cta-trust {
  display: flex;
  gap: 24px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.cta-trust-item .icon {
  width: 16px;
  height: 16px;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 80px 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 24px;
}

.footer-brand {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-mark {
  width: 32px;
  height: 32px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

.footer-columns {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-col a,
.footer-col span {
  font-size: 14px;
  color: #64748B;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #64748B;
}

.footer-legal a:hover {
  color: var(--text-light);
}

/* Inner page hero */
.page-hero {
  padding: 100px 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  color: var(--text-white);
}

.text-gradient-green {
  background: linear-gradient(90deg, #10B981, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.menu-close {
  display: none;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-white);
  margin-left: auto;
  padding: 10px 0;
  cursor: pointer;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
}

/* Services page */
.service-details {
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-card.reverse {
  direction: rtl;
}

.service-card.reverse > * {
  direction: ltr;
}

.service-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-content h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.service-content p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
}

.service-feature .icon {
  width: 18px;
  height: 18px;
}

.media-stack {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.media-stack .media-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 480px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.media-image {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.service-cta {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.service-cta h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
}

.service-cta p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 500px;
}

/* About page */
.mission {
  padding: 60px 80px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-grid h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
}

.mission-grid p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon.blue { background: rgba(59, 130, 246, 0.15); color: var(--neon-blue); }
.value-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--neon-green); }
.value-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--neon-purple); }

.value-card strong {
  font-size: 16px;
  font-weight: 700;
}

.value-card span {
  font-size: 14px;
  color: #64748B;
}

.team {
  padding: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-photo {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.team-info {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-info strong {
  font-size: 20px;
  font-weight: 800;
}

.team-info span {
  font-size: 14px;
  font-weight: 500;
}

/* Cases page */
.cases {
  padding: 40px 80px;
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card.border-blue { border-color: rgba(59, 130, 246, 0.2); }
.case-card.border-green { border-color: rgba(16, 185, 129, 0.2); }
.case-card.border-pink { border-color: rgba(236, 72, 153, 0.2); }

.case-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.case-badge.blue { background: rgba(59, 130, 246, 0.15); color: var(--neon-blue); }
.case-badge.green { background: rgba(16, 185, 129, 0.15); color: var(--neon-green); }
.case-badge.pink { background: rgba(236, 72, 153, 0.15); color: var(--neon-pink); }

.case-card h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.case-card p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.case-stat strong {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -2px;
}

.case-stat span {
  font-size: 12px;
  color: #64748B;
}

/* Contacts page */
.contacts-main {
  padding: 60px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(24px);
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 800;
}

.contact-form p {
  font-size: 14px;
  color: var(--text-dim);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label,
.field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-white);
  font-family: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.form-note a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-alert {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}

.form-alert.success {
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.42);
  color: #86EFAC;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #FCA5A5;
}

.consent-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
}

.consent-note input {
  margin-top: 2px;
  accent-color: var(--neon-blue);
}

.consent-note a {
  color: var(--text-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.legal-content {
  gap: 14px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin-top: 10px;
}

.legal-content p {
  font-size: 14px;
  color: var(--text-light);
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: var(--neon-blue);
  font-size: 13px;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(24px);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon.blue { background: rgba(59, 130, 246, 0.15); color: var(--neon-blue); }
.info-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--neon-green); }
.info-icon.pink { background: rgba(236, 72, 153, 0.15); color: var(--neon-pink); }
.info-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--neon-purple); }

.info-text span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.info-text strong {
  font-size: 18px;
  font-weight: 700;
}

.map-section {
  padding: 40px 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-section h3 {
  font-size: 32px;
  font-weight: 800;
}

.map-card {
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--map-image) center/cover no-repeat;
  z-index: 0;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  color: #050508;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  width: 200px;
  text-align: center;
  z-index: 1;
}

/* Pricing page */
.pricing {
  padding: 40px 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-card.highlight {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  border-image: linear-gradient(180deg, #3B82F6, #8B5CF6) 1;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), 0 8px 80px rgba(139, 92, 246, 0.3);
}

.price-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.price-badge.blue { color: var(--neon-blue); background: rgba(59, 130, 246, 0.15); }
.price-badge.purple { color: var(--neon-purple); background: rgba(139, 92, 246, 0.15); }
.price-badge.pink { color: var(--neon-pink); background: rgba(236, 72, 153, 0.15); }

.price-popular {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-white);
  background: linear-gradient(90deg, #3B82F6, #8B5CF6);
}

.price {
  display: flex;
  align-items: end;
  gap: 4px;
}

.price strong {
  font-size: 48px;
  font-weight: 900;
}

.price span {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 500;
}

.price-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.price-features li.muted {
  color: var(--text-muted);
}

.price-features .icon {
  width: 18px;
  height: 18px;
}

.guarantee-strip {
  padding: 40px 80px 60px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.guarantee-item .icon {
  width: 20px;
  height: 20px;
}

/* Utility colors */
.text-blue { color: var(--neon-blue); }
.text-green { color: var(--neon-green); }
.text-pink { color: var(--neon-pink); }
.text-purple { color: var(--neon-purple); }
.text-amber { color: var(--neon-orange); }

/* Responsive */
@media (max-width: 1200px) {
  .header-inner {
    padding: 0 40px;
  }

  .hero {
    height: auto;
    padding: 100px 40px 60px;
  }

  .hero-content,
  .dashboard,
  .trust-badge,
  .live-indicator,
  .roi-badge,
  .notification-badge,
  .conv-badge,
  .glow-line {
    position: relative;
    left: auto;
    top: auto;
    margin: 24px 0 0;
    width: 100%;
  }

  .dashboard {
    height: auto;
  }

  .hero-content {
    width: 100%;
    max-width: 720px;
  }

  .bento-row.row-1 {
    grid-template-columns: 1fr;
    height: auto;
  }

  .bento-row.row-2 {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .stats-grid,
  .steps,
  .test-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-columns {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav,
  .header-actions {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.98);
    padding: 20px 40px;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-toggle:checked ~ .nav,
  .nav-toggle:checked ~ .header-actions {
    display: flex;
  }

  .menu-close {
    display: block;
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
  }

  .header-actions {
    padding-top: 16px;
  }

  .header-actions .btn {
    width: 100%;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .title-main,
  .title-sub {
    font-size: 42px;
  }

  .page-hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .section-title {
    font-size: 40px;
  }

  .stats-grid,
  .steps,
  .test-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .bento-row.row-2 {
    grid-template-columns: 1fr;
  }

  /* Services page adjustments for tablet/mobile */
  .service-card,
  .service-card.reverse {
    grid-template-columns: 1fr;
    padding: 32px;
    direction: ltr;
  }

  .media-stack .media-overlay,
  .media-stack,
  .media-image {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-stats {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-card {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .services,
  .why,
  .process,
  .testimonials,
  .footer,
  .page-hero,
  .service-details,
  .service-cta,
  .mission,
  .team,
  .cases,
  .contacts-main,
  .map-section,
  .pricing,
  .guarantee-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding: 80px 20px 40px;
  }

  .hero-orb,
  .decor-ring {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-lg,
  .btn-xl {
    width: 100%;
  }

  .cta {
    height: auto;
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-card {
    height: 260px;
  }

  .service-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .service-card.reverse {
    direction: ltr;
  }

  .media-stack .media-overlay {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .media-image,
  .media-stack {
    height: 280px;
  }

  .price-card.highlight {
    transform: none;
  }
}
