:root {
  --bg: #ffffff;
  --bg-secondary: #f9fafb;
  --surface: #f3f4f6;
  --surface-light: rgba(59, 130, 246, 0.06);
  --surface-lighter: rgba(59, 130, 246, 0.02);
  --accent-primary: #3b82f6;
  --accent-secondary: #60a5fa;
  --accent-purple: #8b5cf6;
  --accent-cyan: #3b82f6;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: rgba(59, 130, 246, 0.15);
  --border-light: rgba(59, 130, 246, 0.08);
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 48px;
  --spacing-4xl: 64px;
  --spacing-5xl: 80px;
  --spacing-6xl: 100px;
  --spacing-7xl: 120px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.08s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.12s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: var(--text-primary);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

section[id] {
  scroll-margin-top: 110px;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration-color: rgba(59, 130, 246, 0.4);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(59, 130, 246, 0.8);
}

::selection {
  background: rgba(59, 130, 246, 0.2);
  color: #0f172a;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.35);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #111827;
  text-wrap: balance;
}

h1 {
  font-size: clamp(48px, 11vw, 96px);
  color: var(--text-primary);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: #111827;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: clamp(20px, 4vw, 32px);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-lg);
}

h4 {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.015em;
}

p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: var(--spacing-sm);
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  min-height: 70px;
  flex-wrap: wrap;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.03em;
}

.navbar-brand:hover {
  opacity: 0.9;
}

.navbar-nav {
  display: flex;
  gap: var(--spacing-2xl);
  flex: 1 1 auto;
  margin-left: var(--spacing-3xl);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 1025px) {
  .navbar-inner {
    flex-wrap: nowrap;
  }

  .navbar-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-cta {
  margin-left: auto;
  padding: 10px 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
  letter-spacing: -0.005em;
  will-change: transform, box-shadow;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-cta:active {
  transform: translateY(0);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base), top var(--transition-base);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4xl) var(--spacing-2xl);
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2), 0 0 40px rgba(96, 165, 250, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), 0 0 80px rgba(96, 165, 250, 0.3);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-subtle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.hero-badge {
  display: inline-block;
  padding: 12px 24px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: var(--spacing-2xl);
}

.hero-title {
  color: #111827;
  margin-bottom: var(--spacing-xl);
  font-weight: 900;
  font-size: clamp(48px, 10vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-section h1 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-xl);
  font-weight: 900;
  font-size: clamp(48px, 10vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: var(--spacing-2xl);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.hero-buttons-left {
  justify-content: flex-start;
}

.automation-hero {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.15), rgba(239, 246, 255, 0.9));
  border-radius: var(--radius-2xl);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-5xl);
}

.automation-hero .hero-content {
  text-align: left;
}

.hero-panel {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: var(--spacing-3xl);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.panel-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #2563eb;
}

.hero-panel h3 {
  margin: 0;
  font-size: clamp(24px, 4vw, 32px);
}

.panel-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-features li::before {
  content: '•';
  color: #3b82f6;
  margin-right: 8px;
}

.intro-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.6));
  border-radius: var(--radius-2xl);
  padding: clamp(32px, 5vw, 48px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.08);
  max-width: 1200px;
  margin: 0 auto var(--spacing-5xl);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-4xl);
  transition: all var(--transition-base);
}

@media (max-width: 900px) {
  .intro-section {
    grid-template-columns: 1fr;
  }
}

.intro-section:hover {
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

.intro-content h2 {
  margin-bottom: var(--spacing-lg);
  font-size: clamp(32px, 5vw, 42px);
}

.intro-note {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.4), rgba(191, 219, 254, 0.2));
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #1e3a8a;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  transition: all var(--transition-base);
}

.intro-note:hover {
  box-shadow: 0 16px 45px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
}

.catalog-highlights {
  max-width: 1200px;
  margin: 0 auto var(--spacing-5xl);
  padding: 0 var(--spacing-2xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-3xl);
}

.highlight-card {
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.highlight-card h3 {
  margin-bottom: var(--spacing-md);
  font-size: 22px;
}

.highlight-card p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 20px 48px rgba(59, 130, 246, 0.14);
}

.catalog-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: var(--spacing-4xl);
  max-width: 1200px;
  margin: 0 auto var(--spacing-6xl);
  padding: 0 var(--spacing-2xl);
}

.catalog-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-3xl);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.08);
}

.catalog-sidebar h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin-bottom: var(--spacing-md);
}

.catalog-sidebar .sidebar-copy {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
}

.catalog-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-2xl);
}

.catalog-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  background: rgba(59, 130, 246, 0.04);
  transition: all var(--transition-base);
}

.catalog-link:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
  transform: translateX(4px);
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.catalog-content .category-header {
  margin-bottom: var(--spacing-2xl);
}

.catalog-content .category-grid {
  gap: var(--spacing-4xl);
}

.category-section {
  padding: 0 var(--spacing-2xl) var(--spacing-5xl);
  max-width: 1200px;
  margin: 0 auto;
}

.category-header {
  margin-bottom: var(--spacing-3xl);
}

.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
}

.category-toolbar {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.category-toolbar .toolbar-note {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.jump-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-4xl);
}

.jump-links {
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59, 130, 246, 0.12);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.7), rgba(255, 255, 255, 0.9));
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.08);
}

.jump-link {
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff, rgba(219, 234, 254, 0.3));
  transition: all var(--transition-base);
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.jump-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  transition: left 0.5s ease;
}

.jump-link:hover::before {
  left: 100%;
}

.jump-link:hover {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.6), rgba(191, 219, 254, 0.5));
  border-color: #3b82f6;
  color: #1e40af;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-3xl);
}

.category-card {
  background: linear-gradient(135deg, #ffffff 0%, rgba(239, 246, 255, 0.5) 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  min-height: 320px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(219, 234, 254, 0.8) 100%);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15), 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-8px);
}

.category-card header {
  position: relative;
  z-index: 1;
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.category-card header h3 {
  margin-bottom: 6px;
  font-size: 26px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.category-card header p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.model-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0 0;
  display: grid;
  gap: 10px;
  columns: 2;
  font-size: 15px;
  color: #374151;
  position: relative;
  z-index: 1;
}

.model-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 500;
  line-height: 1.5;
  transition: color var(--transition-base), transform var(--transition-base);
}

.model-list li:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.model-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

@media (max-width: 780px) {
  .model-list {
    columns: 1;
  }
}

@media (max-width: 900px) {
  .automation-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-panel {
    text-align: left;
  }

  .jump-links {
    justify-content: center;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .catalog-shell {
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-5xl);
  }

  .catalog-sidebar {
    padding: var(--spacing-2xl);
  }

  .catalog-sidebar h2 {
    font-size: 24px;
  }

  .catalog-link {
    padding: 10px 14px;
    font-size: 14px;
  }

  .sidebar-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .catalog-content .category-header h2 {
    font-size: 28px;
  }
}

/* Hero Stats - inline */
.hero-stats {
  display: flex;
  gap: var(--spacing-3xl);
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--spacing-2xl);
  border-top: 1px solid #e5e7eb;
  max-width: 600px;
  margin: 0 auto;
}

.hero-stat {
  font-size: 16px;
  color: #6b7280;
}

.hero-stat strong {
  color: #111827;
  font-weight: 800;
  font-size: 18px;
}

/* Solutions Grid - Clean 2x2 */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  padding: var(--spacing-3xl);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  will-change: transform, box-shadow;
}

.solution-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
}

.solution-card .solution-icon {
  font-size: 48px;
  transition: transform var(--transition-fast);
  will-change: transform;
}

.solution-card:hover .solution-icon {
  transform: scale(1.08) rotate(-2deg);
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.solution-card p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.solution-link {
  font-size: 15px;
  font-weight: 600;
  color: #3b82f6;
  margin-top: var(--spacing-md);
  transition: transform var(--transition-fast), color var(--transition-fast);
  will-change: transform;
}

.solution-card:hover .solution-link {
  color: #2563eb;
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* Buttons */
.btn {
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  font-family: inherit;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
  border-color: #2563eb;
}

.btn-primary-large {
  padding: 18px 44px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15), 0 4px 16px rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
}

.btn-outline:hover {
  border-color: #2563eb;
  color: #ffffff;
  background: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
}

/* Hero Glow Effects */
.hero-glow-1 {
  position: absolute;
  top: -30%;
  left: 5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  right: 0%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

/* Trust Section */
.trust-section {
  padding: var(--spacing-5xl) var(--spacing-2xl);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.trust-inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.trust-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-3xl);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  animation: fadeInUp 0.8s ease-out;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-xl);
  margin: 0 auto;
}

.trust-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-3xl) var(--spacing-xl);
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  animation: scaleIn 0.6s ease-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.trust-metric:nth-child(1) { animation-delay: 0s; }
.trust-metric:nth-child(2) { animation-delay: 0.1s; }
.trust-metric:nth-child(3) { animation-delay: 0.2s; }
.trust-metric:nth-child(4) { animation-delay: 0.3s; }

.trust-metric::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.trust-metric:hover::after {
  opacity: 1;
}

.trust-metric:hover {
  background: rgba(59, 130, 246, 0.02);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12), 0 4px 12px rgba(59, 130, 246, 0.08);
}

.metric-value {
  font-size: 32px;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-card {
  padding: 32px 24px;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.08) 0%, 
    rgba(96, 165, 250, 0.04) 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }

.trust-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.15) 0%, 
    rgba(96, 165, 250, 0.08) 100%);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.trust-stat {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
}

/* Services Section */
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-6xl) var(--spacing-2xl);
}

.services-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.services-header h2 {
  margin-bottom: var(--spacing-md);
  font-size: clamp(32px, 6vw, 48px);
}

.services-header p {
  font-size: 18px;
  color: #6b7280;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-2xl);
}

.services-grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: var(--spacing-3xl);
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  padding: var(--spacing-2xl);
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: #f9fafb;
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-icon {
  margin-bottom: var(--spacing-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-icon img.icon, img.icon { width: 40px; height: 40px; display: block; }
.service-icon img.icon.large { width: 56px; height: 56px; }

.service-card h3 {
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.service-card p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  font-size: 15px;
}

.service-arrow {
  display: inline-block;
  color: #3b82f6;
  font-weight: 600;
  transition: all var(--transition-base);
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* Secondary Features Section */
.secondary-features {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 32px;
}

.secondary-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

.secondary-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 2px;
  opacity: 0.5;
}

.secondary-header h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--text-primary);
  animation: slideInRight 0.6s ease-out;
}

.secondary-header p {
  color: var(--text-muted);
  font-size: 16px;
  animation: slideInRight 0.8s ease-out;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.secondary-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(96, 165, 250, 0.03));
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.secondary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.5s ease;
}

.secondary-card:hover::before {
  left: 100%;
}

.secondary-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.06));
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}

.secondary-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.04));
  transform: translateY(-6px);
}

.secondary-icon {
  font-size: 40px;
}

.secondary-card h4 {
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 600;
}

.secondary-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Metrics Showcase */
.metrics-showcase {
  padding: 80px 32px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.02), transparent);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

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

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.metric-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.04));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.metric-card:hover::after {
  opacity: 1;
}

.metric-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(96, 165, 250, 0.1));
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.metric-chart {
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-chart {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.1));
}

.metric-info {
  text-align: center;
}

.metric-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}


.service-card-large {
  position: relative;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.04));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-large.featured {
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.06));
  animation: slideInRight 0.6s ease-out;
}

.service-card-large.featured:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card-large:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.08));
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.service-badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
  transition: left 0.6s ease;
}

.service-card-large:hover::before {
  left: 100%;
}

.service-card-large:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.08));
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(59, 130, 246, 0.15);
}

.service-icon-large {
  font-size: 60px;
  margin-bottom: 24px;
  display: inline-block;
}

.service-card-large h3 {
  color: var(--text-primary);
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card-large p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-card-large.featured {
  position: relative;
  border-color: rgba(59, 130, 246, 0.3);
}

.service-card-large.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent);
  border-radius: 20px;
  pointer-events: none;
}

.feature-list-small {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  flex: 1;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  flex: 1;
}

.feature-highlights span {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(96, 165, 250, 0.03));
  border-top: 1px solid rgba(59, 130, 246, 0.12);
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-content > p {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 48px;
  color: var(--text-secondary);
}

.what-we-offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.offer-item {
  padding: 28px 24px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  animation: scaleIn 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.offer-item:nth-child(1) { animation-delay: 0s; }
.offer-item:nth-child(2) { animation-delay: 0.1s; }
.offer-item:nth-child(3) { animation-delay: 0.2s; }
.offer-item:nth-child(4) { animation-delay: 0.3s; }

.offer-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.offer-item:hover::before {
  left: 100%;
}

.offer-item:hover {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12);
}

.offer-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.offer-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

/* Four Solutions Section */
.four-solutions {
  max-width: 1200px !important;
}

.solution-card-full {
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 20px;
  margin-bottom: 24px;
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.solution-card-full:nth-child(2) { animation-delay: 0s; }
.solution-card-full:nth-child(3) { animation-delay: 0.1s; }
.solution-card-full:nth-child(4) { animation-delay: 0.2s; }
.solution-card-full:nth-child(5) { animation-delay: 0.3s; }

.solution-card-full.featured {
  border-color: rgba(59, 130, 246, 0.25);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.06));
}

.solution-card-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
  transition: left 0.6s ease;
}

.solution-card-full:hover::before {
  left: 100%;
}

.solution-card-full:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.08));
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(59, 130, 246, 0.12);
}

.solution-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.solution-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.solution-header h3 {
  font-size: 28px;
  margin: 0 0 8px 0;
  color: var(--text-primary);
}

.solution-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solution-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 16px 0;
}

.solution-features span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.automation-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 28px;
}

.benefit-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.offer-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.secondary-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.secondary-header h3 {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.secondary-header p {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.secondary-card {
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.secondary-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: #f9fafb;
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.1), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.secondary-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.secondary-card h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.secondary-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Metrics Showcase Section */
.metrics-showcase {
  padding: 80px 32px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(96, 165, 250, 0.01));
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

.metrics-container {
  max-width: 1200px;
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.metric-card {
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.metric-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: #f9fafb;
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.1), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.metric-chart {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-chart {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.1));
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.pro-spotlight {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.03), transparent);
  border-radius: 20px;
  margin-bottom: 40px;
}

.pro-spotlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pro-spotlight-text h2 {
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideInRight 0.6s ease-out;
}

.pro-spotlight-text {
  animation: slideInRight 0.8s ease-out;
}

.pro-spotlight-text p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

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

.pro-features li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.pro-features li::before {
  content: attr(data-icon);
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pro-features li:hover {
  color: var(--accent-cyan);
  transform: translateX(8px);
  font-weight: 500;
}

.pro-features li:nth-child(odd) {
  color: var(--text-secondary);
}

.pro-features li:nth-child(even)::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pro-features li:nth-child(even):hover::after {
  opacity: 1;
}

.pro-spotlight-visual {
  height: 400px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.08) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1);
}

.pro-card-visual {
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, var(--surface-light), var(--surface-lighter));
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(59, 130, 246, 0.2);
  animation: float 6s ease-in-out infinite;
}

/* Stats Grid for Pro Spotlight */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  height: 100%;
}

.stat-box {
  background: #ffffff;
  border: 1.5px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.stat-box:nth-child(1) { animation-delay: 0s; }
.stat-box:nth-child(2) { animation-delay: 0.1s; }
.stat-box:nth-child(3) { animation-delay: 0.2s; }
.stat-box:nth-child(4) { animation-delay: 0.3s; }

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-box:hover::before {
  left: 100%;
}

.stat-box:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: #f9fafb;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #cccccc;
  font-weight: 500;
  line-height: 1.4;
}

/* Comparison Section */
.comparison-section {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-card {
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.02);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12), 0 4px 12px rgba(59, 130, 246, 0.06);
}

.comparison-card h4 {
  font-size: 18px;
  color: var(--text-primary);
  margin: 0;
}

.comparison-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  flex-grow: 1;
}

.comparison-source {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
  max-width: 700px;
  margin: 0 auto 80px;
  padding: 60px 40px;
  text-align: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.cta-section h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 32px);
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 32px;
  color: #6b7280;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.04) 0%, transparent 100%);
  padding: var(--spacing-5xl) var(--spacing-2xl) var(--spacing-2xl);
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.005em;
}

.footer-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-md);
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-base);
  display: inline-block;
  letter-spacing: -0.005em;
}

.footer-section a:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

/* Contact Page - Clean Minimalist */
.contact-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: var(--bg);
}

.contact-container {
  max-width: 800px;
  width: 100%;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: clamp(48px, 8vw, 64px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-card:hover .contact-value {
  color: #3b82f6;
}

.contact-note {
  text-align: center;
}

.contact-note p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 24px;
  }
  
  .contact-header h1 {
    font-size: 40px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar-inner {
    padding: 0 var(--spacing-xl);
    justify-content: center;
    gap: var(--spacing-lg);
  }

  .navbar-nav {
    margin-left: 0;
    gap: var(--spacing-lg);
  }

  .btn-cta {
    order: 3;
  }

  .services-grid-2col {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .pro-spotlight-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }
}

@media (max-width: 768px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar-inner {
    padding: 0 var(--spacing-lg);
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: nowrap;
    min-height: 60px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
  }

  .navbar-brand {
    order: 1;
    font-size: 24px;
  }

  .btn-cta {
    display: none;
    order: 3;
    margin-left: 0;
  }

  .navbar-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    max-height: 0;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }

  body.nav-open .navbar-nav {
    max-height: 400px;
    padding: var(--spacing-lg);
    display: flex;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .hero-section {
    padding: var(--spacing-4xl) var(--spacing-lg);

    min-height: auto;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .services-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

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

  .services-grid-2col {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .secondary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .secondary-card {
    padding: var(--spacing-lg);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .metric-card {
    padding: var(--spacing-lg);
  }

  .metric-value {
    font-size: 24px;
  }

  .metric-label {
    font-size: 12px;
  }

  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

/* Advanced Animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(96, 165, 250, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(96, 165, 250, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(96, 165, 250, 0.2);
  }
}

@keyframes text-shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate-gradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Enhanced typography animations */
.hero-title {
  animation: fadeInUp 1s ease-out, gradientShift 6s ease-in-out infinite;
  background-size: 200% 200%;
}

/* Premium card hover effects */
.service-card:active {
  transform: scale(0.98);
}

.btn:active {
  transform: scale(0.96);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Active nav link */
.nav-link.active { color: var(--accent-cyan); }
.nav-link.active::after { width: 100%; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Models Catalog (Automation Models) */
.models-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-6xl) var(--spacing-2xl);
}

.tabs {
  background: linear-gradient(135deg, rgba(124,60,255,0.08), rgba(43,209,255,0.04));
  border: 1px solid rgba(124,60,255,0.15);
  border-radius: 20px;
  padding: 20px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-button {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(124,60,255,0.25);
  background: rgba(124,60,255,0.08);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.tab-button:hover { filter: brightness(1.1); }
.tab-button.active {
  color: white;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-color: rgba(124,60,255,0.4);
}

.tab-panels { margin-top: 10px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInUp 0.4s ease-out; }

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.model-card {
  padding: 18px 16px;
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(96,165,250,0.03));
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 14px;
  transition: all var(--transition-base);
}

.model-card:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}

.model-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .tab-buttons { gap: 8px; }
  .tab-button { font-size: 12px; padding: 8px 12px; }
}

/* Team Page Styles */
.team-section {
  padding: var(--spacing-5xl) var(--spacing-2xl) var(--spacing-6xl);
  max-width: 1440px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: var(--spacing-5xl);
}

.team-header h2 {
  margin-bottom: var(--spacing-lg);
}

.team-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-6xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid #e5e7eb;
  padding: var(--spacing-4xl);
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
  transform: translateY(-12px);
  border-color: rgba(59, 130, 246, 0.3);
}

.team-card-header {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  align-items: flex-start;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.teddy-avatar {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.jackson-avatar {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.ravi-avatar {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.aria-avatar {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.team-card-info h3 {
  margin: 0 0 var(--spacing-xs) 0;
  font-size: 26px;
  color: var(--text-primary);
}

.team-role {
  margin: 0;
  color: #3b82f6;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.team-bio {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  font-size: 16px;
}

.team-focus {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.team-focus li {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.04));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  transition: all var(--transition-base);
}

.team-focus li:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.25);
}

.team-card-footer {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.team-location {
  display: inline-block;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.team-card-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.team-card-link:hover {
  color: #2563eb;
  transform: translateX(4px);
}

/* Team Values Section */
.team-values-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(14, 165, 233, 0.04));
  padding: var(--spacing-5xl) var(--spacing-2xl) var(--spacing-6xl);
  max-width: 1440px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
}

.team-values-header {
  text-align: center;
  margin-bottom: var(--spacing-5xl);
}

.team-values-header h2 {
  margin-bottom: var(--spacing-lg);
}

.team-values-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.team-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-4xl);
}

.team-value {
  text-align: center;
}

.value-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-lg);
}

.team-value h4 {
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.team-value p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* Team CTA Section */
.team-cta-section {
  padding: var(--spacing-5xl) var(--spacing-2xl);
  text-align: center;
  max-width: 1440px;
  margin: 0 auto;
}

.team-cta-content h2 {
  margin-bottom: var(--spacing-lg);
}

.team-cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-3xl);
}

/* Responsive Team Page */
@media (max-width: 768px) {
  .team-section {
    padding: var(--spacing-4xl) var(--spacing-lg) var(--spacing-5xl);
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }

  .team-card {
    padding: var(--spacing-3xl);
  }

  .team-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .team-card-info h3 {
    font-size: 20px;
  }

  .team-values-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }

  .team-cta-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }
}

/* Pricing Section */
.pricing-section {
  padding: var(--spacing-5xl) var(--spacing-2xl);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.pricing-content {
  max-width: 1440px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-5xl);
}

.pricing-header .eyebrow {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

.pricing-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.pricing-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-5xl);
}

.pricing-card {
  background: white;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: var(--spacing-4xl);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border: 2px solid var(--accent-primary);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
  transform: scale(1.02);
}

.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card-wide {
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 0 auto;
}

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

.pricing-card-header {
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.pricing-card-header h3 {
  font-size: 20px;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.tier-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-recurring {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.price-small {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-primary);
}

.price-period-small {
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-3xl);
  flex: 1;
}

.pricing-features li {
  padding: var(--spacing-sm) 0;
  color: var(--text-secondary);
  font-size: 15px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.pricing-features li::before {
  content: "✓";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: var(--spacing-sm);
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-primary);
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  flex-shrink: 0;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .pricing-header {
    margin-bottom: var(--spacing-4xl);
  }

  .pricing-header h2 {
    font-size: 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }

  .pricing-card {
    padding: var(--spacing-3xl);
  }

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

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

  .pricing-card-wide {
    grid-column: 1;
  }
}

/* Legal Section (Privacy, Terms, etc.) */
.legal-section {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-5xl) var(--spacing-2xl);
}

.legal-content {
  color: var(--text-primary);
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: var(--spacing-4xl);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: var(--spacing-lg);
  color: var(--text-secondary);
  font-size: 16px;
}

.legal-content ul {
  margin: var(--spacing-lg) 0 var(--spacing-2xl);
  padding-left: var(--spacing-3xl);
}

.legal-content li {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .legal-content h2 {
    font-size: 20px;
    margin-top: var(--spacing-3xl);
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}
