/* ── Fonts ───────────────────────────────────────────────── */
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jakarta';
  src: url('fonts/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jakarta';
  src: url('fonts/PlusJakartaSans-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jakarta';
  src: url('fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jakarta';
  src: url('fonts/PlusJakartaSans-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── Reset + base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: 'Jakarta', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #1A1A18;
  background: #FFFFFF;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F9F4F2;
  --text: #1A1A18;
  --text-2: #3D3D3A;
  --text-3: #73726C;
  --brand: #F57C00;
  --brand-dark: #E56F00;
  --accent-green: #0E7C6A;
  --free: #00A878;
  --paid: #F57C00;
  --border: #E0E0DC;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(26,26,24,0.04), 0 4px 12px rgba(26,26,24,0.06);
  --shadow-md: 0 4px 16px rgba(26,26,24,0.08), 0 12px 32px rgba(26,26,24,0.06);
  --shadow-lg: 0 8px 24px rgba(26,26,24,0.10), 0 32px 64px rgba(26,26,24,0.08);
}

/* ── Layout helpers ─────────────────────────────────────── */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 800px; }

/* ── Wordmark ───────────────────────────────────────────── */
.wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  display: inline-flex;
  line-height: 1;
}
.wordmark .dot { color: var(--accent-green); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,0);
  transition: background 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 rgba(26,26,24,0.06);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav .wordmark { font-size: 24px; }
.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 200ms ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 200ms ease, background 200ms ease;
}
.btn-primary {
  background: linear-gradient(to bottom, #3D3D3A, #1A1A18);
  color: #FFFFFF;
  box-shadow: 0 1px 2px rgba(26,26,24,0.15), 0 4px 12px rgba(26,26,24,0.12);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(26,26,24,0.18), 0 12px 24px rgba(26,26,24,0.18); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: #FFFFFF;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }

/* ── Store badges ───────────────────────────────────────── */
.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 20px;
  background: #1A1A18;
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge svg { flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge-text small { font-size: 10px; font-weight: 400; opacity: 0.85; }
.store-badge-text strong { font-size: 16px; font-weight: 600; letter-spacing: 0.2px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 48px;
  background: #FFFFFF;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-soft));
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { text-align: center; }
.hero-image {
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}
.hero h1 {
  font-family: 'Jakarta', sans-serif;
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--text);
}
.hero h1 .accent { color: var(--brand); }
.hero .subhead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-3);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 14px;
  color: var(--text-3);
}

/* ── Screenshots (natural aspect ratio) ─────────────────── */
.screenshot {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid #1A1A18;
  box-shadow: 14px 14px 0 #1A1A18;
}

/* ── Sections ───────────────────────────────────────────── */
section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Jakarta', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--text);
}
.section-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-3);
  line-height: 1.5;
  max-width: 600px;
}

/* ── Feature sections (alternating) ─────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.feature-text { max-width: 520px; }
.feature-phone-wrap {
  display: flex;
  justify-content: center;
}
.feature ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.feature ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-2);
}
.feature ul li .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(14,124,106,0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ── How it works ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 64px;
}
.step {
  position: relative;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(14, 124, 106, 0.10);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 8px;
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.step-desc {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

/* ── Reviews ────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}
.review {
  position: relative;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--brand);
}
.review-quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-avatar-orange { background: var(--brand); }
.review-avatar-green { background: var(--accent-green); }
.review-avatar-dark { background: var(--text); }
.review-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.review-location {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 2px;
}

/* ── Pricing ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.plan {
  position: relative;
  padding: 40px 32px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-md);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.plan-name { font-size: 17px; font-weight: 600; color: var(--text-2); margin: 0 0 12px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-price .amount {
  font-family: 'Jakarta', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.plan-price .period { font-size: 16px; color: var(--text-3); }
.plan-sub { font-size: 14px; color: var(--text-3); margin: 0 0 32px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 32px; }
.plan ul li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.plan ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7C6A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}
.plan .btn { width: 100%; }
.plan-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 32px;
}

/* ── Single-card pricing with toggle ─────────────────────── */
.pricing-single {
  max-width: 480px;
}
.plan-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-soft);
  border-radius: 999px;
  margin: 0 0 24px;
  gap: 4px;
}
.plan-toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.plan-toggle-btn.is-active {
  background: #FFFFFF;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
  margin-top: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 200ms ease;
}
.faq-question:hover { color: var(--accent-green); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
  color: var(--text-3);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--text); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-3);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
}

/* ── Final CTA ──────────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 120px 0;
  background: #FFFFFF;
}
.final-cta h2 {
  font-family: 'Jakarta', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px;
}
.final-cta p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-3);
  margin: 0 0 40px;
}
.final-cta .store-badges { justify-content: center; }

/* ── Legal pages (privacy / terms) ──────────────────────── */
.legal-hero {
  padding: 140px 0 40px;
  background: #FFFFFF;
  text-align: left;
}
.legal-hero .section-kicker { margin-bottom: 10px; }
.legal-hero .section-title { margin-bottom: 10px; }
.legal-hero .section-subtitle { margin: 0; }

.legal-page {
  padding: 40px 0 96px;
  background: var(--bg-soft);
}
.legal-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  padding: 16px 20px;
  background: #FFFFFF;
  border-left: 3px solid var(--accent-green);
  border-radius: 0 10px 10px 0;
  margin-bottom: 32px;
}
.legal-section {
  padding: 0;
  margin-bottom: 28px;
}
.legal-section h2 {
  font-family: 'Jakarta', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 10px;
}
.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 14px 0 4px;
}
.legal-section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 8px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.legal-section ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-2);
}
.legal-section ul li:last-child { margin-bottom: 0; }
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
}
.legal-section a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms ease;
}
.legal-section a:hover { text-decoration-color: var(--text); }
.legal-warn {
  background: #FFF8E7;
  border-left: 3px solid #F59E0B;
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  margin: 12px 0;
  font-size: 15px;
  color: #92400E;
  line-height: 1.55;
  font-weight: 500;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #1A1A18;
  color: rgba(255,255,255,0.70);
  padding: 80px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .wordmark {
  font-size: 32px;
  color: #FFFFFF;
}
.footer-brand .wordmark .dot { color: var(--accent-green); }
.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.70);
  max-width: 300px;
  font-size: 15px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.social-icon:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.footer-col h4 {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.70);
  font-size: 15px;
  transition: color 200ms ease;
}
.footer-col a:hover { color: #FFFFFF; }
.footer-contact-heading {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 28px 0 12px;
}
.footer-contact-email {
  color: rgba(255,255,255,0.70);
  font-size: 15px;
  margin: 0;
  user-select: all;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

/* ── Scroll animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ── Mobile menu ───────────────────────────────────────── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-panel a { font-size: 17px; font-weight: 500; color: var(--text-2); padding: 8px 0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .menu-panel { display: none; }
  .hero { padding: 180px 0 100px; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .hero-text { text-align: left; }
  .hero .subhead { margin: 0 0 40px; }
  .hero-ctas { justify-content: flex-start; }
  .hero-image { justify-content: flex-start; }
  .hero-image img { max-width: 560px; }
  section { padding: 96px 0; }
  .feature { grid-template-columns: 1fr 1fr; gap: 80px; }
  .feature-reverse .feature-text { order: 2; }
  .feature-reverse .feature-phone-wrap { order: 1; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-single { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .screenshot { max-width: 340px; }
}

/* ── Accessibility ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
