/* Nexus CRM — Blue theme */
:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #0f172a;

  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --border: #e2e8f0;

  --gradient: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #6366f1 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 24px rgba(37, 99, 235, 0.12);
  --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--blue-800);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--blue-600);
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 700;
  transition: color 0.2s;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--blue-600);
  background: var(--blue-50);
}

.btn-outline {
  background: #fff;
  color: var(--blue-700);
  border: 1.5px solid var(--blue-200);
}

.btn-outline:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

.btn-white {
  background: #fff;
  color: var(--blue-700);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Hero */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-50) 0%, #fff 55%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--blue-300);
  top: -120px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: #38bdf8;
  bottom: 0;
  left: -80px;
  opacity: 0.35;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 30%, transparent 90%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin-bottom: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--blue-200);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--blue-950);
}

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

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-note {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* Dashboard mock */
.hero-visual {
  position: relative;
}

.dashboard-mock {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

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

.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-200);
}

.mock-dot:nth-child(1) { background: #f87171; }
.mock-dot:nth-child(2) { background: #fbbf24; }
.mock-dot:nth-child(3) { background: #4ade80; }

.mock-title {
  margin-left: 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mock-body {
  display: flex;
  min-height: 280px;
}

.mock-sidebar {
  width: 56px;
  padding: 16px 12px;
  background: var(--blue-950);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-nav-item {
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.mock-nav-item.active {
  background: var(--blue-600);
}

.mock-main {
  flex: 1;
  padding: 20px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mock-stat {
  padding: 12px;
  background: var(--bg-subtle);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.mock-stat .label {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-stat .value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-900);
}

.mock-stat .trend {
  font-size: 0.75rem;
  font-weight: 600;
}

.mock-stat .trend.up { color: #16a34a; }
.mock-stat .trend.ai {
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 2px 6px;
  border-radius: 4px;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-bottom: 16px;
}

.mock-chart .bar {
  flex: 1;
  height: var(--h);
  background: var(--gradient);
  border-radius: 6px 6px 0 0;
  opacity: 0.85;
  animation: barGrow 1s ease-out backwards;
}

.mock-chart .bar:nth-child(1) { animation-delay: 0.1s; }
.mock-chart .bar:nth-child(2) { animation-delay: 0.15s; }
.mock-chart .bar:nth-child(3) { animation-delay: 0.2s; }
.mock-chart .bar:nth-child(4) { animation-delay: 0.25s; }
.mock-chart .bar:nth-child(5) { animation-delay: 0.3s; }
.mock-chart .bar:nth-child(6) { animation-delay: 0.35s; }
.mock-chart .bar:nth-child(7) { animation-delay: 0.4s; }

@keyframes barGrow {
  from { height: 0; }
}

.mock-ai-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(135deg, var(--blue-50), #fff);
  border: 1px solid var(--blue-200);
  border-radius: 12px;
}

.ai-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 10px;
}

.ai-text strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--blue-800);
  margin-bottom: 4px;
}

.ai-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Logos */
.logos {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.logos-label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 56px;
}

.logos-row span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  opacity: 0.7;
}

/* Section common */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--blue-950);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* Features */
.features {
  padding: 96px 0;
  background: var(--bg);
}

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

.feature-card {
  padding: 28px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card-lg {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--blue-50) 0%, #fff 100%);
  border-color: var(--blue-200);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  color: var(--blue-600);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue-900);
}

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

.feature-list {
  margin-top: 20px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
}

/* How */
.how {
  padding: 96px 0;
  background: var(--blue-950);
  color: #fff;
}

.section-header-light .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blue-300);
}

.section-header-light h2 {
  color: #fff;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9375rem;
  color: var(--blue-200);
  line-height: 1.6;
}

.step-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  margin-top: 48px;
  flex-shrink: 0;
}

/* Scenarios */
.scenarios {
  padding: 96px 0;
  background: var(--bg-subtle);
}

.scenario-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.scenario-tab {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.scenario-tab:hover {
  border-color: var(--blue-300);
  color: var(--blue-700);
}

.scenario-tab.active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
}

.scenario-panels {
  position: relative;
  min-height: 320px;
}

.scenario-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.scenario-panel.active {
  display: grid;
}

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

.scenario-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--blue-900);
}

.scenario-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.scenario-text blockquote {
  padding: 16px 20px;
  background: #fff;
  border-left: 4px solid var(--blue-500);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.scenario-text cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.scenario-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.scenario-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.scenario-card ul {
  list-style: none;
}

.scenario-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.scenario-card li:last-child {
  border-bottom: none;
}

.priority {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.priority.high { background: #ef4444; }
.priority.mid { background: #f59e0b; }
.priority.low { background: #22c55e; }

.health-bar {
  height: 28px;
  background: var(--bg-subtle);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.health-bar span {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 8px;
  min-width: fit-content;
}

.health-bar.warn span {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.health-bar.danger span {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

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

/* Metrics */
.metrics {
  padding: 72px 0;
  background: var(--gradient);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  color: #fff;
}

.metric-value {
  display: inline;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.metric-suffix {
  font-size: 1.5rem;
  font-weight: 700;
}

.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Pricing */
.pricing {
  padding: 96px 0;
}

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

.price-card {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, transform 0.2s;
}

.price-card:hover {
  box-shadow: var(--shadow-md);
}

.price-card-featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price {
  margin-bottom: 24px;
}

.price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-600);
  vertical-align: top;
}

.price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.price .amount.custom {
  font-size: 2rem;
}

.price .period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.price-card li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 700;
}

/* CTA */
.cta {
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
  padding: 64px 48px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  color: #fff;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-inner p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 1.0625rem;
}

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

/* Footer */
.footer {
  padding: 64px 0 32px;
  background: var(--blue-950);
  color: var(--blue-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: var(--blue-300);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card-lg {
    grid-row: span 1;
  }

  .pricing-grid,
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .scenario-panel.active {
    grid-template-columns: 1fr;
  }

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

  .step-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }

  .nav.open .nav-links a {
    font-size: 1.125rem;
  }

  .nav.open .nav-actions {
    display: flex;
    position: absolute;
    top: calc(var(--header-h) + 180px);
    left: 24px;
    right: 24px;
  }

  .features-grid,
  .pricing-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }
}
