/* ─── CSS Variables ──────────────────────────────────────────────────────────── */
:root {
  --bg: #0b0e1a;
  --bg-card: #161b2e;
  --border: #252b40;
  --primary: #4338ca;
  --primary-light: #6366f1;
  --green: #10b981;
  --green-light: #34d399;
  --amber: #f59e0b;
  --red: #ef4444;
  --text: #f1f5f9;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --indigo-badge-bg: rgba(99, 102, 241, 0.15);
  --indigo-badge-text: #a5b4fc;
  --green-badge-bg: rgba(16, 185, 129, 0.15);
  --green-badge-text: #6ee7b7;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
}

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
}
.btn--primary:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1.5px solid var(--border);
  padding: 10px 22px;
  font-size: 14px;
}
.btn--ghost:hover {
  border-color: var(--text-dim);
  color: var(--text);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ─── Badges ─────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.badge--green {
  background: var(--green-badge-bg);
  color: var(--green-badge-text);
}
.badge--indigo {
  background: var(--indigo-badge-bg);
  color: var(--indigo-badge-text);
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 14, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 14, 26, 0.92);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}
.nav__logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: 8px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--text);
}
.nav__cta {
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch__btn {
  font-family: var(--font);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn.is-active {
  background: var(--primary);
  color: #fff;
}

.nav__lang--solo {
  margin-left: auto;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 767px) {
  .nav {
    background: var(--bg-card);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: var(--border);
  }
  .nav.scrolled {
    background: var(--bg-card);
  }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text);
  }
  .nav__cta {
    display: none;
  }
  .lang-switch {
    margin-left: auto;
    margin-right: 10px;
  }
  .nav__lang--solo {
    margin-right: 0;
  }
  .nav__hamburger {
    display: flex;
  }
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse,
    rgba(99, 102, 241, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__content {
  max-width: 520px;
}
.hero__content .badge {
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.text-primary {
  color: var(--primary-light);
}
.text-green {
  color: var(--green);
}
.hero__subtitle {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Phone Mockup */
.hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
}
.phone__frame {
  width: 280px;
  height: 560px;
  background: #0d1120;
  border-radius: 44px;
  border: 2px solid #2a3050;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 0 8px #12182e,
    0 0 0 9px #1e2540;
}
.phone__screen {
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

/* Mockup inner elements */
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}
.mockup-logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -0.3px;
}
.mockup-logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.mockup-card {
  background: #1c2340;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-card__img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2a3560 0%, #1a2040 100%);
  flex-shrink: 0;
}
.mockup-card__info {
  flex: 1;
  min-width: 0;
}
.mockup-card__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-card__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.mockup-card__old {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
}
.mockup-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  margin-top: 5px;
  letter-spacing: 0.3px;
}
.mockup-alert {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mockup-alert__icon {
  font-size: 18px;
}
.mockup-alert__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}
.mockup-alert__body {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 1px;
}
.mockup-chart {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 70px;
  padding: 8px 0 0;
  flex: 1;
}
.mockup-chart__bar {
  flex: 1;
  background: rgba(99, 102, 241, 0.35);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}
.mockup-chart__bar--green {
  background: var(--green) !important;
}

/* Verdict badge in mockup */
.mockup-verdict {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 5px;
  letter-spacing: 0.4px;
}

/* ─── Section Shared ─────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Steps ──────────────────────────────────────────────────────────────────── */
.steps {
  padding: 100px 0;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.step-card__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.step-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 20px;
}
.step-card__icon--green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}
.step-card__icon--amber {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
}
.step-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-card__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Intelligence Report ────────────────────────────────────────────────────── */
.intel-report {
  padding: 0 0 100px;
}
.intel-report__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intel-report__content .badge {
  margin-bottom: 20px;
}
.intel-report__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.intel-report__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.intel-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intel-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.intel-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}
.intel-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.intel-card__icon--green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}
.intel-card__icon--indigo {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
}
.intel-card__icon--amber {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
}
.intel-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}
.intel-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.intel-report__visual {
  display: flex;
  justify-content: center;
}
/* iPhone mock-up shell */
.iphone-mockup {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}
.iphone-mockup__shell {
  position: relative;
  width: 100%;
  background: #1a1a1e;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 0 0 1.5px #3a3a3c,
    0 0 0 3px #1a1a1e,
    0 0 0 4px #3a3a3c,
    0 48px 80px rgba(0, 0, 0, 0.6);
}
/* Dynamic Island */
.iphone-mockup__island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}
/* Side buttons */
.iphone-mockup__shell::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 80px;
  width: 4px;
  height: 32px;
  background: #3a3a3c;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 44px 0 #3a3a3c, 0 84px 0 #3a3a3c;
}
.iphone-mockup__shell::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 112px;
  width: 4px;
  height: 60px;
  background: #3a3a3c;
  border-radius: 0 2px 2px 0;
}

.screenshot-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: var(--bg-card);
  border-radius: 38px;
  overflow: hidden;
}
.screenshot-placeholder img.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.screenshot-placeholder img.screenshot-img[hidden] {
  display: none;
}
.screenshot-placeholder__label {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}
.screenshot-placeholder--empty .screenshot-placeholder__label {
  display: flex;
}

@media (max-width: 1023px) {
  .intel-report__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intel-report__subtitle {
    max-width: 100%;
  }
  .intel-report__visual {
    order: -1;
  }
}
@media (max-width: 767px) {
  .intel-report {
    padding-bottom: 72px;
  }
  .iphone-mockup {
    width: 220px;
  }
}

/* ─── Features ───────────────────────────────────────────────────────────────── */
.features {
  padding: 0 0 100px;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  overflow: hidden;
  position: relative;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feat-card--large {
  grid-row: span 1;
}
.feat-card--small {
}
.feat-card .badge {
  margin-bottom: 16px;
}
.feat-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 20px;
}
.feat-card__icon--green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}
.feat-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.feat-card__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Feature chart */
.feat-chart {
  position: relative;
  height: 90px;
  margin-top: 8px;
}
.feat-chart__line {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.feat-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
}
.feat-chart__bars div {
  flex: 1;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 4px 4px 0 0;
  min-height: 6px;
}
.feat-chart__bars div.green {
  background: var(--green);
}

/* Score ring */
.score-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
}
.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-ring__bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}
.score-ring__fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}
.score-ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
}
.score-ring__label span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
}
.score-desc {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

/* Store logos */
.store-logos {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.store-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.store-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Alert mock */
.alert-mock {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.alert-mock__icon {
  font-size: 22px;
}
.alert-mock__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2px;
}
.alert-mock__body {
  font-size: 12px;
  color: var(--text-muted);
}

/* Feature list */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}

/* ─── Download ───────────────────────────────────────────────────────────────── */
.download {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.download__glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(99, 102, 241, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.download__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.download__app-icon {
  height: 72px;
  width: 72px;
  border-radius: 18px;
  margin: 0 auto 24px;
  object-fit: contain;
}
.download__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.download__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.download__badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 22px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  min-width: 170px;
}
.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-color: var(--text-muted);
}
.store-badge__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--text);
}
.store-badge__sub {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.store-badge__name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo {
  font-size: 18px;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--text);
}
.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

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

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__content {
    max-width: 100%;
    text-align: center;
  }
  .hero__subtitle {
    max-width: 100%;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__mockup {
    order: -1;
  }
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 60px;
    min-height: unset;
  }
  .hero__title {
    letter-spacing: -1px;
  }
  .steps {
    padding: 72px 0;
  }
  .steps__grid {
    grid-template-columns: 1fr;
  }
  .features {
    padding-bottom: 72px;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .download {
    padding: 72px 0;
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
  }
  .phone__frame {
    width: 240px;
    height: 480px;
  }
  .section-header {
    margin-bottom: 40px;
  }
}
