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

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

:root {
  /* New Color System - Dark Purple & Electric Blue */
  --primary-900: #1A0B2E;
  --primary-800: #2D1B4E;
  --primary-700: #3F2A6B;
  --primary-600: #523A88;
  --primary-500: #6B4EAE;
  --primary-400: #8B6BC8;
  --primary-300: #A688D4;
  --primary-200: #C2A5E0;
  --primary-100: #E1D4F0;
  --primary-50: #F3EFFA;

  /* Electric Accent Colors */
  --electric-500: #00D9FF;
  --electric-400: #33E1FF;
  --electric-300: #66E9FF;
  --electric-200: #99F1FF;
  --electric-100: #CCF8FF;

  /* Supporting Colors */
  --success-500: #00C896;
  --warning-500: #FFB800;
  --error-500: #FF4757;

  /* Neutrals */
  --neutral-900: #0F0F23;
  --neutral-800: #1A1A2E;
  --neutral-700: #2E2E48;
  --neutral-600: #4A4A6A;
  --neutral-500: #6B6B8D;
  --neutral-400: #8E8EAF;
  --neutral-300: #B1B1C7;
  --neutral-200: #D4D4E0;
  --neutral-100: #E8E8F0;
  --neutral-50: #F7F7FA;
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing System (12px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 48px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 11, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 11, 46, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 11, 46, 0.16);
  --shadow-xl: 0 24px 64px rgba(26, 11, 46, 0.20);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
  --gradient-electric: linear-gradient(135deg, var(--electric-500) 0%, var(--primary-500) 100%);
  --gradient-surface: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Typography Classes */
.text-display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.text-display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.text-display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-heading-lg {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.text-heading-md {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.text-body-lg {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.005em;
}

.text-body-md {
  font-size: 16px;
  line-height: 1.6;
}

.text-body-sm {
  font-size: 14px;
  line-height: 1.5;
}

/* Component Classes */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-500);
  background: linear-gradient(135deg, var(--electric-100), var(--primary-100));
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  border: 1px solid var(--electric-200);
  margin-bottom: var(--space-6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-electric);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-700);
  border: 2px solid var(--primary-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.btn-dark {
  background: var(--primary-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
}

/* Card Component */
.card {
  background: var(--gradient-surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

/* ─── HEADER ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  padding: var(--space-4) 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-800);
  letter-spacing: -0.02em;
}

.brand-name span {
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-cta {
  font-size: 14px;
  padding: var(--space-3) var(--space-6);
}

/* ─── HERO ────────────────────────────────── */
.hero {
  background: var(--gradient-primary);
  padding: var(--space-32) 0 var(--space-24);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(107, 78, 174, 0.15) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-20);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-center {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric-400);
  background: rgba(0, 217, 255, 0.15);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 217, 255, 0.3);
  margin-bottom: var(--space-8);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero-title span {
  background: linear-gradient(135deg, var(--electric-400), var(--electric-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--primary-100);
  margin-bottom: var(--space-12);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  border-radius: var(--radius-2xl);
  border: 1px solid var(--primary-600);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--primary-200);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-visual span {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 11, 46, 0.8);
  backdrop-filter: blur(8px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--white);
  z-index: 2;
}

.hero-visual svg {
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

/* ─── INTRO STRIP ─────────────────────────── */
.intro-strip {
  background: var(--electric-500);
  padding: var(--space-16) 0;
  position: relative;
}

.intro-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--electric-500) 0%, var(--primary-500) 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  position: relative;
  z-index: 1;
}

.intro-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.intro-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.intro-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.intro-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ─── FEATURES ────────────────────────────── */
.features {
  padding: var(--space-32) 0;
  background: var(--neutral-50);
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.features-header-center {
  text-align: center;
  margin-bottom: var(--space-20);
}

.features-header .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.features-header-center .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.features-header .text-body-lg {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.features-header-center .text-body-lg {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  padding: var(--space-10);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-electric);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}

.feature-icon svg {
  color: var(--white);
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ─── DASHBOARD PREVIEW ───────────────────── */
.dashboard-preview {
  padding: var(--space-32) 0;
  background: var(--gradient-primary);
  position: relative;
}

.dashboard-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.08) 0%, transparent 50%);
}

.dashboard-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-20);
  align-items: center;
  position: relative;
  z-index: 1;
}

.dashboard-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dashboard-text .text-display-md {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.dashboard-content-center .text-display-md {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.dashboard-text .text-body-lg {
  color: var(--primary-100);
  margin-bottom: var(--space-8);
}

.dashboard-content-center .text-body-lg {
  color: var(--primary-100);
  margin-bottom: var(--space-8);
}

.dashboard-text .section-label {
  background: rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.3);
  color: var(--electric-400);
}

.dashboard-content-center .section-label {
  background: rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.3);
  color: var(--electric-400);
}

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.dashboard-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 16px;
  color: var(--primary-100);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--success-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-visual {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  border-radius: var(--radius-2xl);
  border: 1px solid var(--primary-600);
  aspect-ratio: 16/11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--primary-200);
  font-size: 13px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  margin-top: var(--space-12);
}

.dashboard-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 60%);
}

.dashboard-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.dashboard-visual span {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 11, 46, 0.8);
  backdrop-filter: blur(8px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--white);
  z-index: 2;
}

.dashboard-visual svg {
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

/* ─── HOW IT WORKS ────────────────────────── */
.how-it-works {
  padding: var(--space-32) 0;
  background: var(--white);
}

.how-header {
  text-align: center;
  margin-bottom: var(--space-24);
}

.how-header-center {
  text-align: center;
  margin-bottom: var(--space-24);
}

.how-header .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.how-header-center .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.how-header .text-body-lg {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.how-header-center .text-body-lg {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--electric-500), var(--primary-400), var(--electric-500));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-electric);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-8);
  position: relative;
  box-shadow: var(--shadow-md);
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--electric-200);
  background: var(--white);
  z-index: -1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: var(--space-3);
}

.step p {
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ─── PRODUCTS ────────────────────────────── */
.products {
  padding: var(--space-32) 0;
  background: var(--neutral-50);
}

.products-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.products-header-center {
  text-align: center;
  margin-bottom: var(--space-20);
}

.products-header .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.products-header-center .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.products-header .text-body-lg {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.products-header-center .text-body-lg {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

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

.product-card {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card.featured {
  border-color: var(--electric-500);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--white) 0%, var(--electric-50) 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-electric);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.product-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-electric);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}

.product-icon svg {
  color: var(--white);
  width: 28px;
  height: 28px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: var(--space-3);
}

.product-card > p {
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  flex: 1;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-800);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--neutral-500);
  font-weight: 500;
}

.product-features {
  margin-bottom: var(--space-8);
}

.product-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--neutral-700);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--neutral-200);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric-500);
  flex-shrink: 0;
}

.product-cta {
  width: 100%;
  justify-content: center;
  padding: var(--space-4);
}

/* ─── INTEGRATIONS ───────────────────────── */
.integrations {
  padding: var(--space-32) 0;
  background: var(--white);
}

.integrations-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-24);
  align-items: center;
}

.integrations-content-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.integrations-text .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.integrations-content-center .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.integrations-text .text-body-lg {
  color: var(--neutral-600);
  max-width: 480px;
}

.integrations-content-center .text-body-lg {
  color: var(--neutral-600);
  margin-bottom: var(--space-12);
}

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

.integration-tile {
  aspect-ratio: 1;
  background: var(--gradient-surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 600;
  color: var(--neutral-600);
  padding: var(--space-3);
  text-align: center;
  transition: all 0.2s ease;
}

.integration-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.integration-tile svg {
  color: var(--primary-500);
  width: 24px;
  height: 24px;
}

/* ─── AUTOMATION ─────────────────────────── */
.automation {
  padding: var(--space-32) 0;
  background: var(--gradient-primary);
  position: relative;
}

.automation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
}

.automation-header {
  text-align: center;
  margin-bottom: var(--space-20);
  position: relative;
  z-index: 1;
}

.automation-header-center {
  text-align: center;
  margin-bottom: var(--space-20);
  position: relative;
  z-index: 1;
}

.automation-header .text-display-md {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.automation-header-center .text-display-md {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.automation-header .text-body-lg {
  color: var(--primary-100);
  max-width: 600px;
  margin: 0 auto;
}

.automation-header-center .text-body-lg {
  color: var(--primary-100);
  max-width: 600px;
  margin: 0 auto;
}

.automation-header .section-label {
  background: rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.3);
  color: var(--electric-400);
}

.automation-header-center .section-label {
  background: rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.3);
  color: var(--electric-400);
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.automation-card {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  border: 1px solid var(--primary-600);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.automation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--electric-500);
}

.auto-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 217, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.auto-icon svg {
  color: var(--electric-400);
  width: 24px;
  height: 24px;
}

.automation-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.automation-card p {
  font-size: 14px;
  color: var(--primary-200);
  line-height: 1.6;
}

/* ─── STATS ──────────────────────────────── */
.stats-section {
  padding: var(--space-24) 0;
  background: var(--electric-500);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--electric-500) 0%, var(--primary-500) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: var(--space-6) var(--space-8);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* ─── USE CASES ──────────────────────────── */
.use-cases {
  padding: var(--space-32) 0;
  background: var(--neutral-50);
}

.use-cases-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.use-cases-header-center {
  text-align: center;
  margin-bottom: var(--space-20);
}

.use-cases-header .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.use-cases-header-center .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.use-cases-header .text-body-lg {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.use-cases-header-center .text-body-lg {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.use-case-card {
  background: var(--gradient-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.use-case-img {
  background: linear-gradient(135deg, var(--neutral-100), var(--neutral-200));
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--neutral-500);
  font-size: 12px;
  font-weight: 500;
}

.use-case-img svg {
  opacity: 0.4;
  width: 32px;
  height: 32px;
}

.use-case-body {
  padding: var(--space-8);
}

.use-case-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--electric-500);
  background: var(--electric-100);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3);
  border: 1px solid var(--electric-200);
}

.use-case-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: var(--space-2);
}

.use-case-body p {
  font-size: 14px;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ─── CONTACTS ───────────────────────────── */
.contacts {
  padding: var(--space-32) 0;
  background: var(--white);
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  align-items: start;
}

.contacts-text .text-display-md {
  color: var(--primary-800);
  margin-bottom: var(--space-4);
}

.contacts-text .text-body-lg {
  color: var(--neutral-600);
  max-width: 480px;
}

.contact-items {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.contact-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gradient-electric);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-icon-wrap svg {
  color: var(--white);
  width: 24px;
  height: 24px;
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

.contact-item a,
.contact-item p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-800);
}

.contact-item a:hover {
  color: var(--electric-500);
}

.contact-map-placeholder {
  background: linear-gradient(135deg, var(--neutral-100), var(--neutral-200));
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--neutral-500);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.contact-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.contact-map-placeholder span {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--neutral-700);
  font-weight: 600;
}

.contact-map-placeholder svg {
  opacity: 0.4;
  width: 32px;
  height: 32px;
}

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--primary-900);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--primary-700);
  margin-bottom: var(--space-8);
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
  max-width: 400px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-brand img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-name span {
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  color: var(--primary-200);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: var(--space-12);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--primary-200);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--electric-400);
}

.footer-bottom {
  display: flex;
  justify-content: center;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  width: 100%;
  max-width: 600px;
}

.footer-copy {
  font-size: 13px;
  color: var(--primary-300);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13px;
  color: var(--primary-300);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--electric-400);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .automation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    flex-direction: column;
    gap: var(--space-12);
  }
  
  .footer-links {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .hero-content-center {
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-inner {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .steps-grid::before {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .integrations-inner {
    grid-template-columns: 1fr;
  }
  
  .integrations-content-center {
    max-width: none;
  }
  
  .automation-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
  
  .stat-item:nth-child(even) {
    border-right: none;
  }
  
  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .contacts-inner {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-8);
    width: 100%;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }
}