/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0e1117;
  --bg-card:    #141a26;
  --bg-elevated:#1a2236;
  --accent:     #e94560;
  --accent-dark:#c7304a;
  --blue:       #3d7eff;
  --green:      #2ecc71;
  --text:       #e2e8f0;
  --text-muted: #7a9abf;
  --text-dim:   #4a6a8a;
  --border:     rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --radius:     16px;
  --shadow:     0 4px 32px rgba(0,0,0,0.4);
  --font:       'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #e94560, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }

/* ── Navbar ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(14,17,23,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { font-size: 22px; }
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -150px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: var(--blue);
  bottom: -100px; right: -80px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(233,69,96,0.12);
  border: 1px solid rgba(233,69,96,0.3);
  color: #ff8fa3;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(233,69,96,0.35);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,69,96,0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.hero-note span { display: inline-flex; align-items: center; gap: 4px; }

/* ── App Window Mockup ── */
.hero-visual { position: relative; }

.app-window {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}
.window-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.window-dots { display: flex; gap: 6px; }
.dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.window-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}
.window-body { display: flex; height: 300px; }
.window-sidebar {
  width: 44px;
  background: rgba(0,0,0,0.2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 8px;
}
.nav-item {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: default;
  color: var(--text-dim);
  transition: background 0.2s;
}
.nav-item.active {
  background: rgba(233,69,96,0.15);
  color: var(--accent);
}
.nav-bottom { margin-top: auto; }
.window-main {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.mock-title { font-size: 12px; font-weight: 700; color: #fff; }
.mock-add {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(233,69,96,0.1);
  border-radius: 6px;
}
.mock-search {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.mock-account {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  opacity: 0;
  transform: translateX(8px);
}
.anim-1 { animation: slideIn 0.4s 1.0s forwards; }
.anim-2 { animation: slideIn 0.4s 1.2s forwards; }
.anim-3 { animation: slideIn 0.4s 1.4s forwards; }
.anim-4 { animation: slideIn 0.4s 1.6s forwards; }
@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}
.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.mock-info { flex: 1; min-width: 0; }
.mock-name { font-size: 11px; font-weight: 600; color: #fff; }
.mock-detail { font-size: 9px; color: var(--text-dim); }
.mock-chip {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.mock-chip.online { background: rgba(46,204,113,0.15); color: #2ecc71; }
.mock-chip.secure { background: rgba(61,126,255,0.15); color: #6fa3ff; }

.window-reflection {
  position: absolute;
  bottom: -40px; left: 10%; right: 10%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(233,69,96,0.06), transparent);
  filter: blur(10px);
  border-radius: 50%;
}

/* ── Stats bar ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(255,255,255,0.02);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 8px 24px;
}
.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* ── Sections shared ── */
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--icon-color) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Demo / Video ── */
.video-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.video-frame {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.video-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(ellipse at center, #1a2236 0%, #0e1117 100%);
}
.video-play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding-left: 4px;
  box-shadow: 0 8px 32px rgba(233,69,96,0.4);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-play-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(233,69,96,0.5); }
.video-label { font-size: 13px; color: var(--text-dim); }
.video-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.step-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.step-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.connector-line {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}
.connector-arrow {
  font-size: 20px;
  color: var(--text-dim);
}

/* ── Security highlight ── */
.security-section { padding: 56px 0; }
.security-card {
  background: linear-gradient(135deg, rgba(233,69,96,0.06), rgba(61,126,255,0.06));
  border: 1px solid rgba(233,69,96,0.2);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.security-icon { font-size: 56px; flex-shrink: 0; }
.security-content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.security-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}
.security-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.sec-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(233,69,96,0.06) 0%, var(--bg-card) 100%);
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(233,69,96,0.2);
}
.pricing-featured:hover { transform: translateY(-12px); }
.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-save-badge {
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.pricing-top { display: flex; flex-direction: column; gap: 6px; }
.pricing-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.price-free {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.price-value {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}
.price-period {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 12px;
  color: var(--text-dim);
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.btn-pricing-primary {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(233,69,96,0.3);
  transition: opacity 0.2s, transform 0.15s;
}
.btn-pricing-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-pricing-outline {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 12px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-pricing-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 72px 40px;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(233,69,96,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-download { display: flex; justify-content: center; margin-bottom: 16px; }
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 18px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(233,69,96,0.4);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: left;
}
.btn-download:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(233,69,96,0.5);
}
.btn-download-icon { font-size: 28px; }
.btn-download-main {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.btn-download-sub {
  display: block;
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
}
.cta-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.cta-link {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.cta-link:hover { color: var(--text); text-decoration-color: var(--text-muted); }
.cta-disclaimer { font-size: 11px; color: var(--text-dim); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-left { flex: 1; }
.footer-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
  max-width: 220px;
  line-height: 1.6;
}
.footer-links-group { display: flex; gap: 60px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .step-connector { display: none; }
  .security-card { grid-template-columns: 1fr; text-align: center; }
  .security-icon { margin: 0 auto; }
  .security-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .cta-inner { padding: 48px 24px; }
  .btn-download { flex-direction: column; text-align: center; gap: 8px; }
}
