/* ForFuture Landing — brand from newLogo2 (#00D2FF) */
:root {
  --brand: #00d2ff;
  --brand-deep: #00a8cc;
  --header-h: 80px;
  --bg: #ecfafe;
  --card: #ffffff;
  --text: #111318;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: #cceef8;
  --accent: #00d2ff;
  --accent-soft: #d6f4fc;
  --cta: #111318;
  --cta-hover: #2a2f36;
  --shadow: 0 1px 3px rgba(17, 19, 24, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 168, 204, 0.12);
  --max-w: 1120px;
  --radius-card: 20px;
  --radius-pill: 999px;
  --section-y: 96px;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

.section {
  padding: var(--section-y) 0;
}

.section--subtle {
  background: var(--card);
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
}

.section-sub--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111318;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 0;
  gap: 24px;
}

.logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.logo-wordmark-header {
  display: block;
  height: 28px;
  width: auto;
}

@media (min-width: 768px) {
  .logo-wordmark-header {
    height: 36px;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-switch-btn {
  min-width: 36px;
  padding: 6px 10px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.lang-switch-btn:hover {
  color: #fff;
}

.lang-switch-btn.is-active {
  background: #fff;
  color: #111318;
}

.site-header .btn-primary {
  background: #ffffff;
  color: #111318;
}

.site-header .btn-primary:hover {
  background: var(--accent-soft);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: var(--bg);
  padding: 24px;
  border-top: 1px solid var(--border);
  z-index: 99;
}

.nav-mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile a {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.lang-switch--mobile {
  align-self: flex-start;
  margin-bottom: 8px;
  background: rgba(17, 19, 24, 0.06);
  border-color: var(--border);
}

.lang-switch--mobile .lang-switch-btn {
  color: var(--text-secondary);
}

.lang-switch--mobile .lang-switch-btn:hover {
  color: var(--text);
}

.lang-switch--mobile .lang-switch-btn.is-active {
  background: var(--cta);
  color: #fff;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--cta);
  color: #fff;
}

.btn-primary:hover {
  background: var(--cta-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--card);
}

.btn-sm {
  padding: 12px 22px;
  font-size: 14px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-download-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
}

.store-download-grid--center {
  justify-content: center;
  margin: 0 auto 8px;
}

.store-download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.store-badge-link,
.store-qr-link {
  display: block;
  transition: opacity 0.2s, transform 0.2s;
}

.store-badge-link:hover,
.store-qr-link:hover {
  opacity: 0.88;
}

.store-badge-link:active,
.store-qr-link:active {
  transform: scale(0.98);
}

.store-badge-img {
  display: block;
  width: 140px;
  height: 42px;
}

.store-qr {
  display: block;
  width: 112px;
  height: 112px;
  padding: 8px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.store-qr-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.store-badge {
  display: block;
  height: 48px;
  transition: opacity 0.2s;
}

.store-badge:hover {
  opacity: 0.85;
}

.store-badge svg {
  height: 48px;
  width: auto;
}

/* Download top */
.download-top {
  padding: 28px 0;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-bottom: none;
}

.download-top-title,
.download-top-sub {
  color: #fff;
}

.store-badge--dark svg rect {
  fill: #111318;
}

.download-top-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.download-top-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.download-top-sub {
  font-size: 15px;
  opacity: 0.92;
}

.download-top-badges {
  justify-content: center;
}

@media (min-width: 768px) {
  .download-top-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .download-top-badges {
    flex-shrink: 0;
  }
}

/* Hero */
.hero {
  padding: 64px 0 48px;
  overflow: hidden;
}

.hero-intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--brand-deep);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 0;
}

.hero-media-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 28px;
}

.hero-phone {
  margin: 0;
  flex-shrink: 0;
  background: transparent;
}

.hero-phone-img {
  display: block;
  width: min(280px, 78vw);
  height: auto;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-store-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.hero-download-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.hero-video-wrap {
  margin: 0;
  flex-shrink: 0;
}

.hero-video {
  display: block;
  width: min(160px, 38vw);
  height: auto;
  border-radius: 10px;
  background: #111318;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

@media (max-width: 520px) {
  .store-download-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.hero-learn-more {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-deep);
  margin-bottom: 0;
  transition: opacity 0.2s;
}

.hero-learn-more:hover {
  opacity: 0.75;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
}

.trust-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-trust-pills {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  max-width: 420px;
  margin-top: 28px;
}

.hero-trust-pills .trust-pill {
  display: flex;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  padding: 14px 18px;
  color: var(--text);
  background: linear-gradient(135deg, #ffffff 0%, #f3fcff 100%);
  border: 1px solid rgba(0, 210, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 168, 204, 0.12);
}

.hero-trust-pills .trust-pill::before {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

@media (min-width: 768px) {
  .hero-trust-pills {
    max-width: 360px;
  }
}

@media (min-width: 768px) {
  .hero-media-row {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .hero-phone-img {
    width: min(300px, 34vw);
  }

  .hero-store-col {
    width: auto;
    flex: 1;
    min-width: 0;
    justify-content: center;
  }

  .hero-video {
    width: 180px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 88px 0 72px;
  }

  .hero-phone-img {
    width: 300px;
  }
}

/* Trust bar */
.trust-bar {
  padding: 20px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar p {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Comparison */
.comparison {
  display: grid;
  gap: 24px;
}

.comparison-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.comparison-card--highlight {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.comparison-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.comparison-card--highlight h3 {
  color: var(--text);
}

.comparison-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.comparison-card--highlight ul li {
  color: var(--text);
}

.comparison-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.comparison-card--highlight ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .comparison {
    grid-template-columns: 1fr 1fr;
  }
}

/* Goals section — app-style semicircle gauges */
.goals-showcase {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.goals-dash-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 20px 24px;
}

.goals-dash-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  padding: 8px 0 16px;
}

.goal-dash {
  flex: 0 1 168px;
  min-width: 148px;
  max-width: 180px;
  text-align: center;
  --arc-length: 204.2;
  --arc-filled: 0;
}

.goal-dash-amount {
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

.goal-dash-ring-wrap {
  position: relative;
  width: 154px;
  height: 146px;
  margin: 0 auto;
}

.goal-dash-svg {
  display: block;
  width: 154px;
  height: 146px;
}

.goal-dash-track {
  fill: none;
  stroke: var(--border);
  stroke-width: 10.4;
  stroke-linecap: round;
}

.goal-dash-progress {
  fill: none;
  stroke-width: 10.4;
  stroke-linecap: round;
}

.goal-dash-inner {
  fill: var(--goal-soft, var(--accent-soft));
  stroke: none;
}

.goal-dash-inner-ring {
  fill: none;
  stroke: var(--border);
  stroke-width: 1.35;
  opacity: 0.9;
}

.goal-dash-midline {
  stroke: var(--border);
  stroke-width: 1;
  opacity: 0.65;
}

.goal-dash-face {
  position: absolute;
  left: 0;
  right: 0;
  top: 27px;
  height: 104px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.goal-dash-pct {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: var(--text);
}

.goal-dash-days {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  margin-top: -10px;
  font-size: 12.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.goal-dash-title {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

.feature-grid {
  display: grid;
  gap: 20px;
}

.feature-grid--2 {
  grid-template-columns: 1fr;
}

.feature-grid--3 {
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .feature-grid--2,
  .feature-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Easy tracking */
.methods-grid {
  display: grid;
  gap: 24px;
}

.method-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.method-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--cta);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.method-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.method-demo {
  background: var(--bg);
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  margin-bottom: 12px;
}

.method-demo strong {
  color: var(--text);
}

.method-arrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.method-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

@media (min-width: 1024px) {
  .methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Progress loop */
.loop-steps {
  display: grid;
  gap: 0;
  position: relative;
}

.loop-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.loop-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.loop-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
}

.loop-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  padding-top: 10px;
}

.loop-step p {
  font-size: 16px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .loop-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .loop-step {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }

  .loop-step:not(:last-child)::before {
    left: 50%;
    top: 24px;
    width: 100%;
    height: 2px;
    transform: translateX(24px);
  }

  .loop-step-num {
    margin: 0 auto 16px;
  }

  .loop-step h3 {
    padding-top: 0;
  }
}

/* Trust points */
.trust-grid {
  display: grid;
  gap: 24px;
}

.trust-point {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.trust-point:last-child {
  border-bottom: none;
}

.trust-point h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-point p {
  font-size: 16px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
  }

  .trust-point {
    border-bottom: none;
    padding: 0;
  }
}

/* Pricing */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}

.pricing-row:last-of-type {
  border-bottom: none;
  margin-bottom: 28px;
}

.pricing-row .price {
  font-weight: 700;
  font-size: 18px;
}

.pricing-row .badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-deep);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
}

.pricing-trust {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.faq-question:hover {
  color: var(--text-secondary);
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Final CTA */
.final-cta {
  background: var(--brand-deep);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.final-cta .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.final-cta .section-sub {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 32px;
}

.final-cta .btn-primary {
  background: #fff;
  color: var(--cta);
}

.final-cta .btn-primary:hover {
  background: var(--bg);
}

.final-cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.final-cta .store-qr {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.final-cta .store-qr-label {
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.footer-wordmark-wrap {
  display: inline-block;
  background: #111318;
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 0;
}

.footer-wordmark-wrap .logo-wordmark {
  height: 18px;
  width: auto;
  display: block;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--card);
  border-top: 1px solid var(--border);
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(17, 19, 24, 0.06);
}

.mobile-cta-bar .btn {
  width: 100%;
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }

  .section {
    padding: 64px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .goal-dash-progress {
    transition: none;
  }
}
