/* ============================================================
   styles/style.css — DoneAgo
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background: #F3F4F6;
  color: #111827;
  min-height: 100vh;
  padding-top: 69px;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.nav-brand-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 17px;
  text-decoration: none;
  transition: color .2s;
}

.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #1d1d1f;
}

/* Keep header above scrim */
.site-header { z-index: 10000; }

/* Mobile drawer */
#mobile-drawer {
  display: none;
  position: fixed;
  top: 69px; left: 0; right: 0; bottom: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.4);
}

#mobile-drawer.open { display: block; }

#mobile-drawer-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 8px 24px 20px;
  z-index: 9991;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

#mobile-drawer-panel ul { list-style: none; display: flex; flex-direction: column; }

#mobile-drawer-panel ul li a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  text-decoration: none;
  border-bottom: 1px solid;
  transition: color 0.2s;
}

#mobile-drawer-panel ul li:last-child a { border-bottom: none; }

#mobile-drawer-panel ul li a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}


/* ============================================================
   HERO
   ============================================================ */

:root {
  --demo-bg:         #F3F4F6;
  --demo-surface:    #FFFFFF;
  --demo-border:     #E5E7EB;
  --demo-text:       #111827;
  --demo-text-3:     #6B7280;
  --demo-hint:       #6366F1;
  --demo-btn-bg:     #111111;
  --demo-btn-border: rgba(99,102,241,0.3);
  --demo-btn-text:   #ffffff;
  --demo-flash:      #6366F1;
}

.hero-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 96px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  color: var(--demo-text);
}

.hero h1 em {
  font-style: normal;
  display: inline-block;
  color: var(--demo-text);
  border: 2.5px solid var(--demo-text);
  border-radius: 999px;
  padding: 0 18px 4px;
  margin-left: 4px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 18px;
  color: var(--demo-text-3);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* Store buttons */
.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}

.hero-mockup {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
}

.hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--demo-btn-bg);
  color: var(--demo-btn-text);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid var(--demo-btn-border);
  transition: opacity 0.2s, transform 0.15s;
  position: relative;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
}

.store-btn:hover { opacity: .85; transform: translateY(-1px); }

.store-btn-text { display: flex; flex-direction: column; line-height: 1; }

.store-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 3px;
}

.store-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ios-badge {
  position: absolute;
  top: -7px; right: -7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #6366F1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

/* Demo hint */
.demo-hint {
  font-size: 11px;
  color: var(--demo-text-3);
  margin-bottom: 10px;
  font-family: 'DM Mono', monospace;
  letter-spacing: .02em;
}

.demo-hint span { color: var(--demo-hint); }

/* Demo cards grid */
.state-cards-demo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.demo-card {
  background: var(--demo-surface);
  border-radius: 16px;
  padding: 14px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--demo-border);
  text-align: left;
}

.demo-card.flash { border-color: var(--demo-flash); }

.demo-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.demo-card-icon { font-size: 24px; line-height: 1; display: flex; align-items: center; }
.demo-card-icon i { font-size: 28px; }
.demo-card-menu { color: var(--demo-text-3); font-size: 18px; line-height: 1; letter-spacing: 1px; }

.demo-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--demo-text);
  margin-bottom: 6px;
}

.demo-card-trackers { margin: 0 -14px; }

.demo-tracker { border-top: 1px solid var(--demo-border); padding: 6px 14px; }

.demo-tracker-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--demo-text-3);
  margin-bottom: 3px;
}

.demo-tracker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.demo-tracker-time { font-size: 11px; color: var(--demo-text-3); flex: 1; }

.demo-pill {
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  min-width: 64px;
  text-align: center;
  transition: opacity .15s, transform .1s;
}

.demo-pill:hover  { opacity: .85; }
.demo-pill:active { transform: scale(.95); }
.demo-pill.animating { transform: scale(.93); }

.pill-green  { background: #10b981; }
.pill-orange { background: #f97316; }
.pill-red    { background: #f87171; }
.pill-blue   { background: #60a5fa; }
.pill-purple { background: #a855f7; }
.pill-pink   { background: #f472b6; }

/* Fade-up animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero > * { animation: fadeUp .6s ease both; }
.hero > *:nth-child(1) { animation-delay: .05s; }
.hero > *:nth-child(2) { animation-delay: .12s; }
.hero > *:nth-child(3) { animation-delay: .19s; }
.hero > *:nth-child(4) { animation-delay: .26s; }
.hero > *:nth-child(5) { animation-delay: .33s; }
.hero > *:nth-child(6) { animation-delay: .40s; }


/* ============================================================
   SAMPLE CARDS — USE CASES
   ============================================================ */

#sample-cards {
  background: #fff;
  padding: 80px 24px 100px;
}

.sc-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.sc-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.sc-desc {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}

.sc-about-link {
  margin-top: 28px;
  text-align: center;
}

.sc-about-link a {
  font-size: 14px;
  color: #6366F1;
  text-decoration: none;
  font-weight: 500;
}

.sc-about-link a:hover { text-decoration: underline; }

.sc-eyebrow-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 14px;
}

.sc-board {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sc-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}

.sc-col:first-child { padding-left: 0; }
.sc-col:last-child  { padding-right: 0; }
.sc-col + .sc-col   { border-left: 1px solid #E5E7EB; }

.sc-col-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.sc-col-header i { font-size: 18px; }
.sc-col-header.blue   { background: #2563EB; }
.sc-col-header.green  { background: #16A34A; }
.sc-col-header.orange { background: #EA580C; }
.sc-col-header.purple { background: #7C3AED; }

.sc-task {
  border-radius: 10px;
  border: 1.5px solid;
  padding: 12px 14px;
  background: #fff;
}

.sc-task.blue   { border-color: #2563EB; }
.sc-task.green  { border-color: #16A34A; }
.sc-task.orange { border-color: #EA580C; }
.sc-task.purple { border-color: #7C3AED; }

.sc-task-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 3px;
}

.sc-task-states { font-size: 12px; color: #9CA3AF; }
.sc-task-states .active { color: #374151; font-weight: 500; }
.sc-task-states .sep { margin: 0 4px; color: #D1D5DB; }


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #111111;
  border-top: 1px solid #383838;
  padding: 28px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 13px; color: #A3A3A3; }

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #A3A3A3;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: #ffffff; }
.footer-link i { font-size: 16px; }
.footer-link .link-text-underline { text-decoration: underline; text-underline-offset: 3px; }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
  /* Header */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Hero demo cards — horizontal scroll */
  .state-cards-demo {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: none;
    width: calc(100% + 48px);
  }

  .state-cards-demo::-webkit-scrollbar { display: none; }
  .demo-card { flex: 0 0 220px; min-width: 220px; }
  .state-cards-demo::after { content: ''; display: block; flex: 0 0 24px; min-width: 24px; }

  /* Sample cards */
  .sc-board {
    grid-template-columns: 1fr;
    border: none;
    padding: 0;
    gap: 16px;
  }

  .sc-col {
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 16px;
  }

  .sc-col:first-child { padding-left: 16px; }
  .sc-col:last-child  { padding-right: 16px; }
  .sc-col + .sc-col   { border-left: 1px solid #E5E7EB; }

  /* Footer */
  .site-footer { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-links { gap: 14px; }
}

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */

.screenshots-section {
  padding: 80px 24px;
  background: #ffffff;
}

.screenshots-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* Mobile screenshots — 2 portraits, side by side */
.screenshots-mobile { display: none; } /* toggled by JS */

.screenshots-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.screenshot-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Desktop screenshots — 7 portraits, horizontal scroll */
.screenshots-desktop { display: none; } /* toggled by JS */

.screenshots-scroll {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screenshots-scroll::-webkit-scrollbar { display: none; }

.screenshot-img-desktop {
  flex: 0 0 auto;
  width: 200px;
  height: auto;
  border-radius: 16px;
  display: block;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.screenshot-img-desktop:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* sc-task row with relative time */
.sc-task-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sc-task-time {
  font-size: 11px;
  color: #111827;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

#features {
  background: #F3F4F6;
  padding: 80px 24px 100px;
}

.feat-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E5E7EB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
}

.feat-card {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.feat-icon {
  font-size: 32px;
  line-height: 1;
}

.feat-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -.01em;
}

.feat-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature platform badges */
.feat-badge {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .03em;
  color: #9CA3AF;
  white-space: nowrap;
}

/* ============================================================
   FAQ SECTION (homepage)
   ============================================================ */

#faq {
  background: #fff;
  padding: 80px 24px 100px;
}

.faq-home-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-home-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}

.faq-home-item {
  border-radius: 12px;
  overflow: hidden;
  background: #F3F4F6;
}

.faq-home-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  line-height: 1.4;
  transition: background 0.15s;
}

.faq-home-question:hover { background: #E5E7EB; }

.faq-home-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #6B7280;
  transition: transform 0.25s ease;
}

.faq-home-item.open .faq-home-chevron {
  transform: rotate(180deg);
}

.faq-home-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.28s ease;
  padding: 0 20px;
}

.faq-home-item.open .faq-home-answer {
  padding: 0 20px 18px;
}

.faq-home-answer p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.75;
}

.faq-home-answer ul {
  padding-left: 32px;
  margin-top: 8px;
}

.faq-home-answer ul li {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .faq-home-question { font-size: 14px; }
}

.feat-badge-ios, .feat-badge-android, .feat-badge-both { background: none; color: #9CA3AF; }

/* ============================================================
   SOCIAL PROOF SECTION
   ============================================================ */

#social-proof {
  padding: 48px 24px;
  border-bottom: 1px solid #E5E7EB;
}

.proof-section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.proof-cards-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.proof-card {
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 20px 32px;
  border: 1px solid #E5E7EB;
  justify-content: center;
  background: #EEF2FF;
}

.proof-card:first-child {
  border-radius: 16px 0 0 16px;
}

.proof-card:last-child {
  border-radius: 0 16px 16px 0;
  border-left: none;
}

.proof-card:only-child {
  border-radius: 16px;
}

.proof-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-card-platform {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.proof-card-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 1px;
  min-height: 20px;
}

.proof-card-desc {
  font-size: 13px;
  color: #6B7280;
}

.proof-card-desc strong {
  color: #111827;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #E5E7EB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}

.review-card {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.review-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.75;
  font-style: italic;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #9CA3AF;
}

.review-name {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.proof-review-block {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
}

.proof-review-block .proof-cards-row {
  border-bottom: 1px solid #E5E7EB;
}

.proof-review-block .review-grid {
  border: none;
  border-radius: 0;
  margin-top: 0;
}

.proof-review-block .proof-card:first-child {
  border-radius: 0;
}

.proof-review-block .proof-card:last-child {
  border-radius: 0;
  border-left: none;
}

.proof-review-block .proof-card:only-child {
  border-radius: 0;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */

#how-it-works {
  background: #F3F4F6;
  padding: 80px 24px 80px;
  border-bottom: none;
}

.hiw-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 8px;
}

.hiw-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.hiw-desc {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
}

.hiw-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}

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

.hiw-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  border-right: 1px solid #E5E7EB;
}

.hiw-step:last-child {
  border-right: none;
}
.hiw-step-number {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 4px;
}

.hiw-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -.01em;
}

.hiw-step-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.75;
}

.hiw-closing {
  font-size: 16px;
  color: #111827;
  line-height: 1.75;
  font-weight: 400;
  max-width: 640px;
  border-top: 1px solid #C7D2FE;
  padding-top: 32px;
}

@media (max-width: 600px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hiw-step {
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
  }

  .hiw-step:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   WHY DONEAGO SECTION
   ============================================================ */

#why-doneago {
  background: #fff;
  padding: 80px 24px 100px;
}

.why-inner {
  max-width: 640px;
  margin: 0 auto;
}

.why-heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #111827;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 32px;
}

.why-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.why-body p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.8;
  font-weight: 300;
}

.why-solution {
  border-top: 1px solid #C7D2FE;
  padding-top: 32px;
  padding-bottom: 48px;
}

.why-solution p {
  font-size: 17px;
  color: #111827;
  line-height: 1.75;
  font-weight: 400;
}

#final-cta {
  padding: 80px 24px;
  text-align: center;
}

.final-cta-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta-inner img {
  border-radius: 14px;
}

.final-cta-inner h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0;
}

.final-cta-inner p {
  font-size: 16px;
  color: #6B7280;
  margin: 0;
  line-height: 1.6;
}

.final-cta-inner .store-btns {
  margin-top: 8px;
}