/* ─────────────────────────────────────────
   Rangea — Main Stylesheet
   Used by index.html and all blog pages
───────────────────────────────────────── */

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

:root {
  --white: #F8F9FA;
  --black: #1A1A1A;
  --blue: #3A8FFF;
  --green: #5FE28E;
  --ember: #FF9B42;
  --mist: #E4E6EB;
  --slate: #4A5568;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: rgba(248,249,250,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: padding 0.3s ease;
}

.nav-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

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

.lang-toggle {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  background: none;
  border: 1.5px solid var(--mist);
  border-radius: 100px;
  padding: 6px 14px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.lang-toggle:hover {
  color: var(--black);
  border-color: var(--black);
}

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--blue) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-headline {
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

.hero-headline span {
  color: var(--blue);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

/* ── STORE BADGES ── */
.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 11px 20px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.store-badge--white {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
}

.store-badge--white:hover {
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.store-badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-badge-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-badge-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}

.store-badge-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
}

.cta-strip-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}

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

.btn-ghost {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--black); }

.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.hero-right--phone {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(58,143,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(95,226,142,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #f0f2f6 0%, #e6e9f0 40%, #dfe3ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero phone mockup */
.hero-phone {
  width: 280px;
  height: 610px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.18),
    0 15px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  animation: phoneEntrance 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
}

.hero-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animations */
@keyframes phoneEntrance {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black);
  padding: 32px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-number span { color: var(--blue); }

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── SECTION SHARED ── */
section {
  padding: 120px 60px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate);
  max-width: 520px;
}

/* ── FEATURES ── */
.features {
  background: var(--white);
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

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

.feature-card {
  background: var(--mist);
  padding: 48px 40px;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}

.feature-card:hover {
  background: var(--black);
  transform: translateY(-4px);
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-body { color: var(--white); }

.feature-card:hover .feature-icon-wrap { background: var(--blue); }

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.3s;
}

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

.feature-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.feature-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  transition: color 0.3s;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,143,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.manifesto .section-eyebrow { color: var(--blue); text-align: center; }

.manifesto-quote {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 48px;
}

.manifesto-quote strong {
  font-weight: 700;
  color: var(--blue);
}

.manifesto-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 60px;
}

.manifesto-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.pill.green { border-color: var(--green); color: var(--green); }
.pill.ember { border-color: var(--ember); color: var(--ember); }
.pill.blue { border-color: var(--blue); color: var(--blue); }

/* ── HOW IT WORKS ── */
.how {
  background: var(--white);
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header .section-body {
  margin: 0 auto;
  text-align: center;
}

/* Horizontal timeline */
.how-timeline {
  max-width: 1200px;
  margin: 0 auto;
}

.how-timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.how-timeline-line {
  position: absolute;
  top: 27px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: var(--mist);
  z-index: 0;
}

.how-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Timeline dot */
.how-tl-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.how-tl-step:hover .how-tl-dot {
  background: var(--blue);
  color: var(--white);
}

.how-tl-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 8px;
}

.how-tl-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--slate);
  max-width: 220px;
  margin-bottom: 28px;
}

/* Timeline phone mockups */
.how-tl-phone {
  width: 180px;
  height: 392px;
  flex-shrink: 0;
}

.how-tl-phone-inner {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.16),
    0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.how-tl-step:hover .how-tl-phone-inner {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.1);
}

.how-tl-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--blue);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-strip-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.cta-strip-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 16px 36px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

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

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 60px 60px 40px;
  color: rgba(255,255,255,0.35);
}

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

.footer-brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12px; }

.footer-accent {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  margin-right: 8px;
}

/* ── HERO SVG SCENE ── */
.hero-scene {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── FAQ (homepage) ── */
.faq {
  background: var(--white);
}

.faq-header {
  max-width: 520px;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.faq-item {
  background: var(--mist);
  padding: 40px;
  transition: background 0.3s;
}

.faq-item:hover {
  background: #dde0e6;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate);
}

/* ── BLOG HUB ── */
.blog-hero {
  padding: 160px 60px 80px;
  max-width: 760px;
}

.blog-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.blog-title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 20px;
}

.blog-subtitle {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
}

.blog-grid {
  padding: 0 60px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.blog-card {
  background: var(--mist);
  padding: 40px;
  text-decoration: none;
  display: block;
  transition: background 0.3s, transform 0.3s;
}

.blog-card:hover {
  background: var(--black);
  transform: translateY(-4px);
}

.blog-card:hover .blog-card-title,
.blog-card:hover .blog-card-excerpt { color: var(--white); }
.blog-card:hover .blog-card-meta { color: rgba(255,255,255,0.3); }
.blog-card:hover .blog-card-tag { color: rgba(255,255,255,0.4); }

.blog-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.blog-card-tag.soon { color: var(--slate); }

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.blog-card-excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  transition: color 0.3s;
}

.blog-card-meta {
  margin-top: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  transition: color 0.3s;
}

/* ── ARTICLE ── */
.article-header {
  padding: 140px 60px 60px;
  max-width: 760px;
  margin: 0 auto;
}

.article-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
}

.article-meta {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--mist);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 60px 120px;
}

.article-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--black);
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 56px 0 16px;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 32px 0 12px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-body li {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 8px;
}

.article-body strong { font-weight: 700; }

.article-body a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(58,143,255,0.3);
  transition: border-color 0.2s;
}

.article-body a:hover { border-color: var(--blue); }

/* Stat callout (articles) */
.stat-block {
  background: var(--mist);
  border-left: 3px solid var(--blue);
  padding: 24px 32px;
  margin: 40px 0;
  border-radius: 0 4px 4px 0;
}

.stat-block .stat-number {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-block .stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

/* Quote block */
.quote-block {
  border-left: 3px solid var(--green);
  padding: 20px 32px;
  margin: 40px 0;
}

.quote-block p {
  font-size: 20px !important;
  font-weight: 500 !important;
  font-style: italic;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
}

.quote-block cite {
  font-size: 13px;
  color: var(--slate);
  font-style: normal;
}

/* Inline article CTA */
.article-cta {
  background: var(--black);
  color: var(--white);
  padding: 48px;
  margin: 56px 0;
  border-radius: 4px;
  text-align: center;
}

.article-cta h3 {
  font-size: 24px !important;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px !important;
}

.article-cta p {
  font-size: 15px !important;
  color: rgba(255,255,255,0.6) !important;
  margin-bottom: 28px !important;
}

/* Inline article FAQ */
.article-faq {
  background: var(--mist);
  padding: 40px;
  margin: 56px 0;
  border-radius: 4px;
}

.article-faq > h2 {
  margin-top: 0 !important;
  margin-bottom: 28px !important;
}

.faq-q {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.faq-q:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-q h3 {
  margin: 0 0 8px !important;
  font-size: 15px !important;
}

.faq-q p {
  font-size: 14px !important;
  margin-bottom: 0 !important;
  color: var(--slate) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 420px; }
  .hero-left { padding: 60px 24px 40px; }
  .hero-phone { width: 200px; height: 436px; border-radius: 30px; }
  .hero-phone-screen { border-radius: 30px; }
  .features-header { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 24px; }
  .stat-item { border-right: none; padding: 0; }
  .how-timeline-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-timeline-line { display: none; }
  .how-tl-phone { width: 150px; height: 327px; }
  .how-tl-body { font-size: 12px; margin-bottom: 20px; }
  .cta-strip { grid-template-columns: 1fr; padding: 60px 24px; }
  .cta-strip-right { align-items: flex-start; }
  .store-badges { gap: 10px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  /* Blog responsive */
  .blog-hero { padding: 120px 24px 60px; }
  .blog-grid { grid-template-columns: 1fr; padding: 0 24px 80px; }
  .article-header { padding: 120px 24px 40px; }
  .article-body { padding: 32px 24px 80px; }
  .article-cta { padding: 32px 24px; }
}
