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

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary: #0f172a;
  --accent: #38bdf8;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-gradient-start: #f8fafc;
  --bg-gradient-end: #e2e8f0;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-alt: rgba(255, 255, 255, 0.6);
  --border: rgba(203, 213, 225, 0.5);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white !important;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 10px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 5% 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stats-pricing {
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-alt {
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Grids */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Feature Cards */
.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card p {
  margin-bottom: 1rem;
}

.feature-highlights {
  list-style: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.feature-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.feature-highlights li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Feature Icon */
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.feature-icon-sm {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.glass-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Feature Minimal Card */
.feature-card-minimal {
  padding: 1.5rem;
  text-align: center;
}

.feature-card-minimal h3 {
  font-size: 1rem;
}

.feature-card-minimal p {
  font-size: 0.88rem;
}

/* Features List */
.features-list {
  list-style: none;
  margin: 1.5rem 0 0;
  text-align: left;
  flex-grow: 1;
}

.features-list li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.features-list li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Narrative Sections */
.section-narrative {
  padding: 6rem 5%;
}

.narrative-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.narrative-text {
  flex: 1;
}

.narrative-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.narrative-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.narrative-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.narrative-lead em {
  color: var(--text-main);
  font-style: italic;
  font-weight: 500;
}

.narrative-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.narrative-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-number {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.narrative-point h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.narrative-point p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Visual Card (Dashboard Mockup) */
.visual-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
}

.visual-header {
  display: flex;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.visual-dot:first-child { background: #ef4444; }
.visual-dot:nth-child(2) { background: #eab308; }
.visual-dot:last-child { background: #22c55e; }

.visual-content {
  padding: 1.5rem;
}

.metric-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric {
  flex: 1;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
}

.metric-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chart-placeholder {
  background: rgba(37, 99, 235, 0.03);
  border-radius: 8px;
  padding: 1rem;
}

.chart-svg {
  width: 100%;
  height: auto;
}

/* CTA Sections */
.section-cta {
  padding: 4rem 5%;
}

.section-cta .cta-content {
  text-align: center;
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  color: white;
  padding: 4rem 3rem;
  border-radius: var(--radius-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.section-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.section-cta .btn-primary {
  background: white;
  color: var(--secondary) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.section-cta .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.section-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white !important;
}

.section-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-note {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 0 !important;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row > div {
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.comparison-header {
  background: var(--secondary);
}

.comparison-header > div {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}

.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--text-muted) !important; }

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
}

.pricing-card-header {
  margin-bottom: 1rem;
}

.pricing-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.pricing-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Use Case Cards */
.usecase-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.usecase-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  align-items: flex-start;
}

.usecase-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.usecase-content {
  flex: 1;
}

.usecase-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.usecase-context {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.usecase-solution {
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.usecase-solution h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.usecase-solution ul {
  list-style: none;
}

.usecase-solution li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.usecase-solution li i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.usecase-metrics {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.badge-secondary {
  background: rgba(15, 23, 42, 0.08);
  color: var(--secondary);
}

/* Footer */
footer {
  margin-top: auto;
  background: var(--secondary);
  color: white;
  padding: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 5%;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Tier Grid */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tier-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.tier-1::before { background: linear-gradient(90deg, #2563eb, #38bdf8); }
.tier-2::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.tier-3::before { background: linear-gradient(90deg, #059669, #34d399); }
.tier-4::before { background: linear-gradient(90deg, #d97706, #fbbf24); }

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tier-header {
  margin-bottom: 1.25rem;
}

.tier-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.tier-badge-1 { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.tier-badge-2 { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.tier-badge-3 { background: rgba(5, 150, 105, 0.1); color: #059669; }
.tier-badge-4 { background: rgba(217, 119, 6, 0.1); color: #d97706; }

.tier-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.tier-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tier-features {
  list-style: none;
  margin: 1rem 0;
  flex-grow: 1;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.tier-features li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

.tier-1 .tier-features li i { color: #2563eb; }
.tier-2 .tier-features li i { color: #7c3aed; }
.tier-3 .tier-features li i { color: #059669; }
.tier-4 .tier-features li i { color: #d97706; }

.tier-narrative {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
}

.tier-1 .tier-narrative { background: rgba(37, 99, 235, 0.05); }
.tier-2 .tier-narrative { background: rgba(124, 58, 237, 0.05); }
.tier-3 .tier-narrative { background: rgba(5, 150, 105, 0.05); }
.tier-4 .tier-narrative { background: rgba(217, 119, 6, 0.05); }

.tier-narrative i {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.9rem;
}

.tier-1 .tier-narrative i { color: #2563eb; }
.tier-2 .tier-narrative i { color: #7c3aed; }
.tier-3 .tier-narrative i { color: #059669; }
.tier-4 .tier-narrative i { color: #d97706; }

.tier-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.tier-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

/* Deep Dive Cards */
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.deep-card {
  display: flex;
  flex-direction: column;
}

.deep-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.deep-card-header .feature-icon {
  margin-bottom: 0;
}

.deep-card-header h3 {
  margin-bottom: 0.25rem;
}

.deep-card-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.deep-card-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.deep-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

.deep-card-section h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.deep-card-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.deep-card-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.deep-card-section li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}

.deep-card-section li::before {
  content: "→";
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-6, .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .narrative-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .narrative-visual {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .grid-6, .grid-3, .grid-2, .tier-grid {
    grid-template-columns: 1fr;
  }
  
  .usecase-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .narrative-text h2 {
    font-size: 1.75rem;
  }
  
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  
  .comparison-row > div {
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
  }
  
  .section-cta .cta-content {
    padding: 3rem 1.5rem;
  }
  
  .section-cta h2 {
    font-size: 1.75rem;
  }
  
  .tier-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .metric-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}
