/*
 * Mizan Application Pillar Page — app_pillar.css
 * High-converting, editorial & fintech aesthetic for the Google Play app launch.
 */

/* ── Google Play Button Component ────────────────────────────────────────── */
.google-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0c0c0e;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 8px 18px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.2s ease,
              border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.google-play-btn:hover {
  transform: translateY(-2px);
  background: #17171c;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 26px -6px rgba(15, 118, 110, 0.35);
  color: #ffffff !important;
}

.google-play-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-play-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

html[dir="rtl"] .google-play-btn__text {
  text-align: right;
}

.google-play-btn__sub {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a1a1aa;
  font-weight: 600;
}

.google-play-btn__title {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* Size Variants */
.google-play-btn--hero {
  padding: 12px 24px;
  border-radius: 16px;
}
.google-play-btn--hero .google-play-btn__sub {
  font-size: 0.72rem;
}
.google-play-btn--hero .google-play-btn__title {
  font-size: 1.35rem;
}
.google-play-btn--hero .google-play-svg {
  width: 26px;
  height: 26px;
}

.google-play-btn--compact {
  padding: 7px 14px;
  border-radius: 10px;
}
.google-play-btn--compact .google-play-btn__sub {
  font-size: 0.6rem;
}
.google-play-btn--compact .google-play-btn__title {
  font-size: 0.98rem;
}
.google-play-btn--compact .google-play-svg {
  width: 18px;
  height: 18px;
}

/* Nav Badge Pill */
.nav-app-badge {
  background: var(--accent);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
}

html[dir="rtl"] .nav-app-badge {
  margin-left: 0;
  margin-right: 5px;
}

.blog-nav__cta--app {
  background: #0c0c0e !important;
  color: #ffffff !important;
  border-color: #0c0c0e !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.blog-nav__cta--app:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  transform: translateY(-1px);
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.app-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px);
  background: radial-gradient(circle at 86% 14%, rgba(20, 184, 166, 0.16) 0, transparent 38%),
              radial-gradient(circle at 12% 80%, rgba(15, 118, 110, 0.08) 0, transparent 40%),
              var(--bg);
  position: relative;
  overflow: hidden;
}

.app-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.app-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.badge-play-icon {
  color: var(--accent);
}

.app-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink-1);
  margin-bottom: 22px;
}

.app-hero__lead {
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.58;
  color: var(--ink-3);
  max-width: 580px;
  margin-bottom: 32px;
}

.app-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.app-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--ink-1);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.app-secondary-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.app-hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ink-4);
  margin-bottom: 36px;
}

.check-icon {
  color: #10b981;
}

/* Stats Bar */
.app-hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.06);
  max-width: 620px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-stars-inline {
  color: #f59e0b;
}

.stat-label {
  font-size: 0.74rem;
  color: var(--ink-4);
}

.stat-sep {
  width: 1px;
  height: 28px;
  background: var(--line);
}

/* ── 3D Interactive Phone Mockup ─────────────────────────────────────────── */
.app-hero__mockup-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.interactive-phone {
  width: 100%;
  max-width: 390px;
  background: #14171d;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 35px 80px -20px rgba(15, 118, 110, 0.38),
              0 0 0 1px rgba(255, 255, 255, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transition: transform 0.3s ease;
}

.interactive-phone:hover {
  transform: translateY(-4px);
}

.interactive-phone__outer {
  background: #0f1319;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 580px;
  position: relative;
}

.interactive-phone__notch {
  width: 90px;
  height: 18px;
  background: #090c10;
  margin: 8px auto 6px;
  border-radius: 999px;
}

/* Tabs inside Mockup */
.phone-tabs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-tab-btn {
  background: transparent;
  border: 0;
  color: #71717a;
  padding: 6px 4px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 650;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: all 0.2s ease;
}

.phone-tab-btn:hover {
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.06);
}

.phone-tab-btn.is-active {
  color: #14b8a6;
  background: rgba(20, 184, 166, 0.14);
}

/* Screen Card Display */
.phone-screen-card {
  display: none;
  padding: 18px;
  flex: 1;
  flex-direction: column;
  animation: fadeInPhone 0.25s ease-out forwards;
}

.phone-screen-card.is-active {
  display: flex;
}

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

.phone-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.phone-brand-mini {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.phone-pill-badge {
  background: rgba(20, 184, 166, 0.2);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.3);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

/* Hero Gauge Card inside phone */
.phone-hero-gauge {
  background: linear-gradient(145deg, #133a35 0%, #0d2825 100%);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 20px;
  padding: 20px;
  color: #ffffff;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.4);
  margin-bottom: 14px;
}

.gauge-label {
  font-size: 0.76rem;
  color: #a7f3d0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 650;
  margin-bottom: 8px;
}

.gauge-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.amount-number {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.amount-period {
  font-size: 0.88rem;
  color: #6ee7b7;
}

.gauge-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

.gauge-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #14b8a6 100%);
  border-radius: inherit;
}

.gauge-footer {
  font-size: 0.74rem;
  color: #99f6e4;
}

/* Mini Action Card in phone */
.phone-mini-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}

.mini-action-head {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f59e0b;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.mini-action-q {
  font-size: 0.84rem;
  color: #e4e4e7;
  margin-bottom: 8px;
}

.mini-action-verdict {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
}

/* Peek List */
.phone-peek-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.peek-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.78rem;
}

.peek-name {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d4d4d8;
}

.dot-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-emerald { background: #10b981; }
.dot-teal { background: #14b8a6; }
.dot-amber { background: #f59e0b; }
.dot-violet { background: #8b5cf6; }

.peek-val {
  color: #ffffff;
  font-weight: 700;
}

/* Simulator Screen Card */
.sim-screen-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sim-screen-input-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.sim-label {
  font-size: 0.72rem;
  color: #a1a1aa;
  display: block;
  margin-bottom: 6px;
}

.sim-input-display {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.sim-input-display small {
  font-size: 1rem;
  color: #14b8a6;
}

.sim-helper {
  font-size: 0.74rem;
  color: #71717a;
}

.sim-result-card {
  border-radius: 16px;
  padding: 16px;
}

.sim-result-card--positive {
  background: #0e3029;
  border: 1px solid #14b8a6;
}

.verdict-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.verdict-metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.metric-desc {
  font-size: 0.76rem;
  color: #a7f3d0;
}

.metric-val {
  font-size: 1.15rem;
  color: #ffffff;
}

.metric-val small {
  font-size: 0.75rem;
  color: #6ee7b7;
}

.verdict-advice {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #d1fae5;
  margin: 0;
}

.sim-impact-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  color: #94a3b8;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

/* Poches Screen */
.poches-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.poche-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
}

.poche-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.poche-title {
  font-size: 0.82rem;
  color: #ffffff;
}

.poche-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
}

.poche-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 7px;
}

.poche-fill {
  height: 100%;
  border-radius: inherit;
}

.poche-card--emerald .poche-fill { background: #10b981; }
.poche-card--teal .poche-fill { background: #14b8a6; }
.poche-card--amber .poche-fill { background: #f59e0b; }
.poche-card--violet .poche-fill { background: #8b5cf6; }

.poche-foot {
  font-size: 0.74rem;
  color: #a1a1aa;
}

/* Goal Screen */
.goal-screen-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.goal-card-highlight {
  background: linear-gradient(145deg, #241e3d 0%, #171329 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 20px;
  padding: 20px;
  color: #ffffff;
}

.goal-icon-wrap {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.goal-card-highlight h3 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.goal-amounts {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.goal-amounts strong {
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.goal-amounts span {
  font-size: 0.85rem;
  color: #c4b5fd;
}

.goal-progress-track {
  height: 7px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 9px;
}

.goal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
  border-radius: inherit;
}

.goal-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #ddd6fe;
}

.goal-tip-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 9px;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #a1a1aa;
}

.tip-icon {
  color: #a78bfa;
  flex-shrink: 0;
}

.phone-bottom-home-bar {
  width: 110px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  margin: 12px auto 6px;
  border-radius: 999px;
}

/* ── Section Structure ───────────────────────────────────────────────────── */
.app-section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-heading-centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.app-eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading-centered h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--ink-1);
  margin-bottom: 16px;
}

.section-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.56;
  color: var(--ink-3);
  margin: 0 auto;
}

/* ── Features Grid ───────────────────────────────────────────────────────── */
.app-section--features {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.feature-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 34px -10px rgba(15, 118, 110, 0.12);
}

.feature-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-tag {
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-line);
  padding: 4px 10px;
  border-radius: 999px;
}

.feature-card__title {
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.22;
}

.feature-card__lead {
  font-size: 0.94rem;
  font-weight: 650;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.38;
}

.feature-card__desc {
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--ink-3);
  margin: 0;
}

/* ── Comparison Table ────────────────────────────────────────────────────── */
.app-section--comparison {
  background: var(--bg);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

html[dir="rtl"] .comparison-table {
  text-align: right;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.comparison-table th {
  background: var(--surface-2);
  color: var(--ink-1);
  font-weight: 750;
  font-size: 0.88rem;
}

.comparison-table .col-highlight {
  background: rgba(20, 184, 166, 0.07);
  color: var(--accent);
}

th.col-highlight {
  background: rgba(20, 184, 166, 0.15) !important;
  color: var(--accent) !important;
  font-size: 1rem !important;
}

.badge-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f766e;
  font-weight: 700;
}

.badge-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-weight: 600;
}

.badge-neutral {
  color: var(--ink-4);
  font-weight: 550;
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.app-section--how {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  opacity: 0.9;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 750;
  color: var(--ink-1);
  margin-bottom: 12px;
  line-height: 1.25;
}

.step-desc {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

.steps-cta-center {
  display: flex;
  justify-content: center;
}

/* ── Reviews Grid ────────────────────────────────────────────────────────── */
.app-section--reviews {
  background: var(--bg);
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px -4px rgba(0, 0, 0, 0.04);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink-2);
  margin: 0 0 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.94rem;
  color: var(--ink-1);
}

.author-meta {
  font-size: 0.78rem;
  color: var(--ink-4);
}

.verified-badge {
  margin-left: auto;
  color: #10b981;
}

html[dir="rtl"] .verified-badge {
  margin-left: 0;
  margin-right: auto;
}

/* ── FAQ Accordion ───────────────────────────────────────────────────────── */
.product-shell--narrow {
  max-width: 820px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 6px 20px -6px rgba(15, 118, 110, 0.1);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: var(--ink-4);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(90deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.62;
}

.faq-answer p {
  margin: 0;
}

/* ── Final CTA Box with QR Code ──────────────────────────────────────────── */
.app-section--final-cta {
  padding-bottom: clamp(60px, 9vw, 110px);
}

.final-cta-box {
  background: linear-gradient(135deg, #0c2a26 0%, #081d1a 100%);
  border-radius: 32px;
  padding: clamp(36px, 6vw, 72px);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  box-shadow: 0 25px 60px -15px rgba(12, 42, 38, 0.45);
  border: 1px solid rgba(45, 212, 191, 0.2);
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(45, 212, 191, 0.15);
  color: #5eead4;
  border: 1px solid rgba(45, 212, 191, 0.3);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.final-cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
  color: #ffffff;
  margin-bottom: 18px;
}

.final-cta-copy p {
  font-size: 1.1rem;
  line-height: 1.55;
  color: #c5ded8;
  max-width: 520px;
  margin-bottom: 30px;
}

.final-cta-buttons {
  margin-bottom: 22px;
}

.final-cta-security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #94b8b0;
  margin: 0 !important;
}

/* QR Code Card */
.final-cta-qr {
  display: flex;
  justify-content: center;
}

.qr-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  color: #0c0c0e;
  box-shadow: 0 15px 35px -8px rgba(0, 0, 0, 0.35);
  max-width: 250px;
}

.qr-svg-wrapper {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.qr-label {
  font-size: 0.88rem;
  font-weight: 750;
  margin-bottom: 4px;
}

.qr-sub {
  font-size: 0.72rem;
  color: var(--ink-4);
  line-height: 1.35;
  display: block;
}

/* ── Footer Rating & CTA Updates ─────────────────────────────────────────── */
.footer-app-desc {
  font-size: 0.84rem;
  color: var(--ink-3);
  line-height: 1.45;
  margin-bottom: 14px;
}

.footer-app-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.footer-rating-pill .rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
}

.footer-rating-pill strong {
  color: var(--ink-1);
}

.footer-rating-pill small {
  color: var(--ink-4);
}

.footer-app-sublink a {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 650;
  text-decoration: none;
}

.footer-app-sublink a:hover {
  text-decoration: underline;
}

/* ── Responsive Rules ────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .app-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .app-hero__content {
    text-align: center;
  }
  .app-hero__lead {
    margin-inline: auto;
  }
  .app-hero__actions {
    justify-content: center;
  }
  .app-hero__note {
    justify-content: center;
  }
  .app-hero__stats {
    margin-inline: auto;
    justify-content: center;
  }
  .app-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .final-cta-copy p {
    margin-inline: auto;
  }
  .final-cta-buttons {
    display: flex;
    justify-content: center;
  }
  .final-cta-security {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .app-features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .app-hero__stats {
    flex-direction: column;
    align-items: stretch;
  }
  .stat-sep {
    display: none;
  }
  .stat-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .app-hero__actions .google-play-btn {
    width: 100%;
    justify-content: center;
  }
  .app-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}
