:root {
  /* Primary Brand Colors - Indigo */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --primary-50: #eef2ff;
  --primary-100: #e0e7ff;
  --primary-200: #c7d2fe;

  /* Secondary Colors - Teal/Cyan (Complementary to Indigo) */
  --secondary: #06b6d4;
  --secondary-dark: #0891b2;
  --secondary-light: #22d3ee;
  --secondary-50: #ecfeff;
  --secondary-100: #cffafe;

  /* Accent Colors - Harmonious Palette */
  --accent-amber: #f59e0b;
  --accent-amber-dark: #d97706;
  --accent-amber-light: #fbbf24;
  --accent-amber-50: #fffbeb;
  --accent-amber-100: #fef3c7;

  --accent-emerald: #10b981;
  --accent-emerald-dark: #059669;
  --accent-emerald-light: #34d399;
  --accent-emerald-50: #ecfdf5;
  --accent-emerald-100: #d1fae5;

  --accent-violet: #8b5cf6;
  --accent-violet-dark: #7c3aed;
  --accent-violet-light: #a78bfa;
  --accent-violet-50: #f5f3ff;
  --accent-violet-100: #ede9fe;

  /* Semantic Colors */
  --success: #10b981;
  --success-dark: #059669;
  --success-light: #34d399;
  --warning: #f59e0b;
  --warning-dark: #d97706;
  --warning-light: #fbbf24;
  --danger: #ef4444;
  --danger-dark: #dc2626;
  --danger-light: #f87171;
  --info: #06b6d4;
  --info-dark: #0891b2;
  --info-light: #22d3ee;

  /* Neutral Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Color Shadows for Depth */
  --shadow-primary: 0 4px 14px 0 rgba(99, 102, 241, 0.15);
  --shadow-secondary: 0 4px 14px 0 rgba(6, 182, 212, 0.15);
  --shadow-amber: 0 4px 14px 0 rgba(245, 158, 11, 0.15);
  --shadow-emerald: 0 4px 14px 0 rgba(16, 185, 129, 0.15);
  --shadow-violet: 0 4px 14px 0 rgba(139, 92, 246, 0.15);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: white;
  color: var(--gray-900);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.logo span {
  white-space: nowrap;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gray-900);
}

.nav-link.active {
  color: var(--primary);
}

.btn-nav {
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-nav-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.btn-nav-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

.btn-nav-secondary {
  color: var(--gray-700);
}

.btn-nav-secondary:hover {
  color: var(--gray-900);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}

.mobile-menu-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.mobile-menu-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gray-100);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--gray-200);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
  color: var(--gray-700);
}

.mobile-menu-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.mobile-nav-link.active {
  color: var(--primary);
  background: var(--primary-50);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 16px 0;
}

.mobile-menu-actions {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  bottom: 0;
  background: white;
}

.mobile-btn-nav {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.mobile-btn-nav-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.mobile-btn-nav-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.mobile-btn-nav-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
}

.mobile-btn-nav-secondary:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

/* Hero Section */
.hero {
  padding: 160px 24px 120px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent-violet) 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Section */
.section {
  padding: 80px 24px;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  padding: 8px 18px;
  background: var(--primary-50);
  color: var(--primary-dark);
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid var(--primary-100);
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.08);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  box-shadow: var(--shadow-primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

/* Vary feature icon colors for visual interest */
.feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  box-shadow: var(--shadow-primary);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  box-shadow: var(--shadow-secondary);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(
    135deg,
    var(--accent-amber) 0%,
    var(--accent-amber-light) 100%
  );
  box-shadow: var(--shadow-amber);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(
    135deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-light) 100%
  );
  box-shadow: var(--shadow-emerald);
}

.feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(
    135deg,
    var(--accent-violet) 0%,
    var(--accent-violet-light) 100%
  );
  box-shadow: var(--shadow-violet);
}

.feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  box-shadow: var(--shadow-primary);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

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

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 24px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-emerald);
}

.benefit-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-dark) 100%
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: var(--shadow-emerald);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Vary benefit icon colors */
.benefit-item:nth-child(1) .benefit-icon {
  background: linear-gradient(
    135deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-dark) 100%
  );
  box-shadow: var(--shadow-emerald);
}

.benefit-item:nth-child(2) .benefit-icon {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  box-shadow: var(--shadow-primary);
}

.benefit-item:nth-child(3) .benefit-icon {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  box-shadow: var(--shadow-secondary);
}

.benefit-item:nth-child(4) .benefit-icon {
  background: linear-gradient(
    135deg,
    var(--accent-violet) 0%,
    var(--accent-violet-dark) 100%
  );
  box-shadow: var(--shadow-violet);
}

.benefit-item:nth-child(5) .benefit-icon {
  background: linear-gradient(
    135deg,
    var(--accent-amber) 0%,
    var(--accent-amber-dark) 100%
  );
  box-shadow: var(--shadow-amber);
}

.benefit-item:nth-child(6) .benefit-icon {
  background: linear-gradient(
    135deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-dark) 100%
  );
  box-shadow: var(--shadow-emerald);
}

.benefit-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Use Cases */
.use-cases-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.use-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 64px;
}

@media (min-width: 768px) {
  .use-cases {
    gap: 48px;
  }
}

.use-case-card {
  background: white;
  padding: 48px;
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .use-case-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .use-case-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .use-case-icon {
    width: 32px;
    height: 32px;
  }

  .use-case-title {
    font-size: 22px;
  }

  .use-case-description {
    font-size: 15px;
  }
}

.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.use-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}

.use-case-card:nth-child(1)::before {
  background: linear-gradient(
    90deg,
    var(--accent-amber) 0%,
    var(--accent-amber-dark) 100%
  );
}

.use-case-card:nth-child(2)::before {
  background: linear-gradient(
    90deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-dark) 100%
  );
}

.use-case-card:nth-child(3)::before {
  background: linear-gradient(
    90deg,
    var(--accent-violet) 0%,
    var(--accent-violet-dark) 100%
  );
}

.use-case-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.use-case-card:nth-child(1) .use-case-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--accent-amber) 0%,
    var(--accent-amber-dark) 100%
  );
  box-shadow: var(--shadow-amber);
}

.use-case-card:nth-child(1):hover .use-case-icon-wrapper {
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3);
}

.use-case-card:nth-child(2) .use-case-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-dark) 100%
  );
  box-shadow: var(--shadow-emerald);
}

.use-case-card:nth-child(2):hover .use-case-icon-wrapper {
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
}

.use-case-card:nth-child(3) .use-case-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--accent-violet) 0%,
    var(--accent-violet-dark) 100%
  );
  box-shadow: var(--shadow-violet);
}

.use-case-card:nth-child(3):hover .use-case-icon-wrapper {
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.3);
}

.use-case-icon {
  width: 40px;
  height: 40px;
  color: white;
}

.use-case-content {
  flex: 1;
}

.use-case-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.use-case-card:nth-child(1) .use-case-badge {
  background: var(--accent-amber-50);
  color: var(--accent-amber-dark);
  border: 1px solid var(--accent-amber-100);
}

.use-case-card:nth-child(2) .use-case-badge {
  background: var(--accent-emerald-50);
  color: var(--accent-emerald-dark);
  border: 1px solid var(--accent-emerald-100);
}

.use-case-card:nth-child(3) .use-case-badge {
  background: var(--accent-violet-50);
  color: var(--accent-violet-dark);
  border: 1px solid var(--accent-violet-100);
}

.use-case-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .use-case-title {
    font-size: 24px;
  }
}

.use-case-description {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 24px;
}

.use-case-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .use-case-features {
    grid-template-columns: 1fr;
  }
}

.use-case-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 15px;
  padding: 8px 0;
}

.use-case-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.use-case-card:nth-child(1) .use-case-features li svg {
  color: var(--accent-amber);
}

.use-case-card:nth-child(2) .use-case-features li svg {
  color: var(--accent-emerald);
}

.use-case-card:nth-child(3) .use-case-features li svg {
  color: var(--accent-violet);
}

/* Integrations Section */
.integrations-section {
  background: var(--gray-50);
}

.integrations-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.integration-item:hover {
  transform: translateY(-4px);
}

.integration-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 16px;
  transition: all 0.3s ease;
}

.integration-item:hover .integration-logo {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.integration-logo svg {
  width: 100%;
  height: 100%;
}

.integration-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}

.integration-description {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

@media (max-width: 768px) {
  .integrations-grid {
    gap: 48px;
  }

  .integration-logo {
    width: 64px;
    height: 64px;
    padding: 12px;
  }

  .integration-name {
    font-size: 18px;
  }
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 24px 48px rgba(99, 102, 241, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
}

.pricing-period {
  font-size: 18px;
  color: var(--gray-500);
}

.pricing-description {
  color: var(--gray-600);
  font-size: 14px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--gray-700);
  display: flex;
  align-items: start;
  gap: 12px;
  border-bottom: 1px solid var(--gray-100);
}

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

.pricing-features li::before {
  content: "✓";
  color: var(--accent-emerald);
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}

.pricing-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.pricing-cta.secondary {
  background: var(--gray-100);
  color: var(--gray-700);
}

.pricing-cta.secondary:hover {
  background: var(--gray-200);
}

/* Visual Placeholder */
.visual-placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
  border: 2px dashed var(--gray-300);
}

.demo-visual {
  width: 100%;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent-violet) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 48px 0;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.demo-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(255,255,255,0.1)" fill-opacity="0.4"><circle cx="30" cy="30" r="4"/></g></g></svg>');
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent-violet) 100%
  );
  color: white;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-cta" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid-cta)"/></svg>');
  opacity: 0.5;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 24px 32px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.footer-brand-tagline {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
  text-align: center;
  font-size: 14px;
}

/* Two Ways Section */
.two-ways-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 100px 24px;
}

.two-ways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.way-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 3px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.08),
    0 4px 8px -2px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: visible;
  min-width: 0;
}

.way-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -8px rgba(0, 0, 0, 0.15),
    0 12px 16px -4px rgba(0, 0, 0, 0.08);
}

.way-card-links {
  background: linear-gradient(135deg, #ffffff 0%, #f9fff9 100%);
}

.way-card-links:hover {
  border-color: var(--accent-emerald);
  box-shadow: 0 24px 40px -8px rgba(16, 185, 129, 0.2),
    0 12px 16px -4px rgba(16, 185, 129, 0.1);
}

.way-card-embed {
  background: linear-gradient(135deg, #fefefe 0%, #f8f9ff 100%);
  border-color: var(--primary-light);
}

.way-card-embed:hover {
  border-color: var(--primary);
  box-shadow: 0 24px 40px -8px rgba(99, 102, 241, 0.2),
    0 12px 16px -4px rgba(99, 102, 241, 0.1);
}

.way-card-header {
  margin-bottom: 0;
}

.way-header-top {
  margin-bottom: 24px;
}

.way-header-content {
  margin-top: 20px;
}

.way-card-content {
  flex: 1;
  margin-top: 24px;
}

.way-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gray-300) 50%,
    transparent 100%
  );
  margin: 28px 0;
}

.way-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-dark) 100%
  );
  color: white;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-emerald);
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.way-badge-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.way-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-dark) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  box-shadow: var(--shadow-emerald);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.way-card:hover .way-icon {
  transform: scale(1.1) rotate(-5deg);
}

.way-icon svg {
  width: 22px;
  height: 22px;
}

.way-icon-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.way-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.way-description {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 32px;
}

.way-features-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.way-features-title::before {
  content: "";
  width: 4px;
  height: 16px;
  background: linear-gradient(
    135deg,
    var(--accent-emerald) 0%,
    var(--accent-emerald-dark) 100%
  );
  border-radius: 2px;
}

.way-card-embed .way-features-title::before {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

.way-features {
  list-style: none;
  padding: 20px;
  margin: 0 0 28px 0;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.way-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  color: var(--gray-800);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.way-features li:first-child {
  padding-top: 0;
}

.way-features li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.way-features li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 1px;
  width: 20px;
  height: 20px;
  background: var(--accent-emerald-50);
  border-radius: 4px;
  padding: 2px;
}

.way-card-embed .way-features li svg {
  color: var(--primary);
  background: var(--primary-50);
}

.way-example {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 20px 24px;
  border: 2px solid var(--gray-200);
  margin-top: auto;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.way-example:hover {
  border-color: var(--gray-300);
  background: var(--gray-100);
}

.way-example-code {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-color: var(--gray-700);
}

.way-example-code:hover {
  border-color: var(--gray-600);
  background: linear-gradient(135deg, #111827 0%, #0d1117 100%);
}

.way-example-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.way-example-code .way-example-label {
  color: var(--gray-300);
}

.way-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.way-step {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid var(--gray-300);
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.way-step:hover {
  border-color: var(--accent-emerald);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.15);
}

.way-card-embed .way-step:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(99, 102, 241, 0.15);
}

.way-arrow {
  color: var(--gray-400);
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  user-select: none;
}

.code-snippet {
  background: #0d1117;
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.code-snippet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 8px 0 0 8px;
  z-index: 1;
}

.code-snippet code {
  font-family: "Monaco", "Menlo", "Courier New", monospace;
  font-size: 12px;
  color: #c9d1d9;
  display: block;
  font-weight: 400;
  line-height: 1.6;
  white-space: pre;
  word-wrap: normal;
  overflow-wrap: normal;
  min-width: min-content;
}

.two-ways-cta {
  margin-top: 64px;
  text-align: center;
}

.two-ways-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 24px;
  color: white;
  box-shadow: var(--shadow-primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.two-ways-cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(255,255,255,0.05)" fill-opacity="0.3"><circle cx="30" cy="30" r="3"/></g></g></svg>');
  opacity: 0.5;
}

.two-ways-cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.two-ways-cta-content p {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.two-ways-cta-content .btn {
  background: white;
  color: var(--primary);
  font-weight: 600;
  padding: 16px 40px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.two-ways-cta-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 968px) {
  .two-ways-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Responsive Navigation */
@media (max-width: 1200px) {
  .nav-links {
    gap: 28px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }

  .btn-nav {
    padding: 8px 16px;
    font-size: 13px;
  }

  .nav-link {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 16px;
  }

  .nav-link {
    font-size: 12px;
  }

  .btn-nav {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    gap: 12px;
  }

  .logo span {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-video {
    opacity: 0.25;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 60px 20px;
  }

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

  .section-header {
    margin: 0 auto 60px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .benefit-item {
    padding: 20px;
  }

  .benefit-icon {
    width: 28px;
    height: 28px;
  }

  .footer-content {
    gap: 40px;
  }

  .two-ways-section {
    padding: 60px 20px;
  }

  .two-ways-grid {
    gap: 20px;
  }

  .way-card {
    padding: 24px 20px;
    border-width: 2px;
  }

  .way-icon {
    width: 40px;
    height: 40px;
  }

  .way-icon svg {
    width: 20px;
    height: 20px;
  }

  .way-header-top {
    margin-bottom: 16px;
  }

  .way-header-content {
    margin-top: 16px;
  }

  .way-title {
    font-size: 22px;
  }

  .way-description {
    font-size: 15px;
    margin-bottom: 0;
  }

  .way-divider {
    margin: 20px 0;
  }

  .way-card-content {
    margin-top: 20px;
  }

  .way-features-title {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .way-features {
    margin-bottom: 20px;
    padding: 16px;
  }

  .way-features li {
    font-size: 14px;
    padding: 12px 0;
    gap: 12px;
  }

  .way-features li svg {
    width: 18px;
    height: 18px;
  }

  .way-badge {
    padding: 6px 12px;
    font-size: 10px;
  }

  .way-example {
    padding: 14px 16px;
    overflow: hidden;
  }

  .way-example-label {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .code-snippet {
    padding: 12px 14px;
    margin: 0 -4px;
    max-width: calc(100% + 8px);
  }

  .code-snippet code {
    font-size: 11px;
    line-height: 1.5;
  }

  .two-ways-cta {
    margin-top: 48px;
  }

  .two-ways-cta-content {
    padding: 40px 24px;
  }

  .two-ways-cta-content h3 {
    font-size: 24px;
  }

  .two-ways-cta-content p {
    font-size: 15px;
  }

  .way-steps {
    font-size: 11px;
  }

  .way-step {
    font-size: 11px;
    padding: 6px 12px;
    border-width: 1px;
  }

  .way-arrow {
    font-size: 14px;
  }
}
