/* ============================================================
   MAYA BLUEPRINT — by VisioNYC
   Font: Raleway | Palette: Navy / Gold / White
   ============================================================ */

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

:root {
  --navy:       #0d1b3e;
  --navy-light: #1a2d5a;
  --gold:       #f0a500;
  --gold-light: #ffc72c;
  --white:      #ffffff;
  --gray-light: #f7f8fc;
  --gray-mid:   #e4e7f0;
  --text:       #2d2d2d;
  --text-muted: #6b7280;
  --red:        #e53e3e;
  --green:      #38a169;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 40px rgba(13, 27, 62, 0.10);
  --shadow-lg:  0 20px 60px rgba(13, 27, 62, 0.16);
}

html, body {
  min-height: 100%;
  font-family: 'Raleway', sans-serif;
  background: var(--gray-light);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 60px;
}

/* ============================================================
   WIDGET SHELL
   ============================================================ */
.widget {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  touch-action: pan-y;
}

/* ---- Header ---- */
.widget-header {
  background: var(--navy);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.widget-logo {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}

.progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.progress-bar {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.step-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 0.06em;
}

/* ---- Screen / Step ---- */
.screen {
  padding: 36px 32px 24px;
  animation: fadeSlideIn 0.32s ease forwards;
}

.screen.slide-back {
  animation: fadeSlideInLeft 0.32s ease forwards;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0);    }
}

@keyframes fadeSlideInLeft {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0);     }
}

/* ---- Maya Label ---- */
.maya-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.maya-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.maya-name {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.maya-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 26px;
}

/* ---- Text Input ---- */
.input-field {
  width: 100%;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--gray-light);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.input-field:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13, 27, 62, 0.07);
}

.input-field::placeholder { color: var(--text-muted); font-weight: 400; }

/* ---- Option Cards (single + multi) ---- */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.option-card {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 16px;
  background: var(--gray-light);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  text-align: left;
  font-family: 'Raleway', sans-serif;
}

.option-card:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateX(2px);
}

.option-card.selected {
  background: var(--navy);
  border-color: var(--navy);
}

.option-card.multi-selected {
  background: rgba(240, 165, 0, 0.06);
  border-color: var(--gold);
}

.option-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 1px;
  transition: all 0.15s;
}

.option-card.selected .option-check {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.option-card.multi-selected .option-check {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.option-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.option-card.selected .option-label { color: var(--white); }

.option-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}

.option-card.selected .option-sub { color: rgba(255, 255, 255, 0.60); }

/* ---- Contact Fields ---- */
.contact-fields { display: flex; flex-direction: column; gap: 14px; }

.field-group label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ---- Error ---- */
.error-msg {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px;
}

.error-msg.show { display: block; }

/* ---- Nav Row ---- */
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 32px 28px;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-back {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.2s;
  flex-shrink: 0;
}

.btn-back:hover { color: var(--navy); }
.btn-back.invisible { visibility: hidden; pointer-events: none; }

.btn-next {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  padding: 13px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  flex: 1;
  max-width: 260px;
}

.btn-next:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(240, 165, 0, 0.38);
}

.btn-skip {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 0;
  transition: color 0.2s;
  width: 100%;
  text-align: center;
  margin-top: -8px;
}

.btn-skip:hover { color: var(--navy); }

/* ============================================================
   INTRO SCREEN
   ============================================================ */
.intro-screen {
  padding: 48px 32px 40px;
  text-align: center;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240, 165, 0, 0.10);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.intro-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

.intro-avatar {
  width: 70px;
  height: 70px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
}

.intro-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.intro-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.intro-body strong { color: var(--navy); font-weight: 700; }

.btn-start {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  padding: 17px 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.03em;
  display: inline-block;
}

.btn-start:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.40);
}

.intro-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: 0.03em;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
  padding: 60px 32px;
  text-align: center;
}

.loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--gray-mid);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin: 0 auto 22px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.loading-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 32px;
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 240px;
  margin: 0 auto;
  text-align: left;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.loading-step:nth-child(1) { animation-delay: 0.4s; }
.loading-step:nth-child(2) { animation-delay: 1.4s; }
.loading-step:nth-child(3) { animation-delay: 2.5s; }
.loading-step:nth-child(4) { animation-delay: 3.6s; }

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

.loading-step-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   BLUEPRINT OUTPUT
   ============================================================ */
#output {
  width: 100%;
  max-width: 720px;
  margin-top: 28px;
}

#output.hidden { display: none; }

.blueprint {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Header */
.bp-header {
  background: var(--navy);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.bp-logo {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bp-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.bp-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  margin-top: 7px;
  font-weight: 500;
}

.bp-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  white-space: nowrap;
}

/* Market Data */
.bp-market {
  background: var(--navy);
  padding: 32px 40px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bp-market .bp-section-label { color: var(--gold); }

.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.market-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.market-stat-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.market-stat-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.market-stat-context {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.market-opportunity {
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.20);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.market-opp-label {
  font-size: 10px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.market-opp-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  font-style: italic;
}

/* Section wrapper */
.bp-section {
  padding: 36px 40px;
  border-bottom: 1px solid var(--gray-mid);
}

.bp-section:last-of-type { border-bottom: none; }

.bp-section-label {
  font-size: 10px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Score */
.score-layout {
  display: flex;
  gap: 32px;
  align-items: center;
}

.score-gauge-wrap { flex-shrink: 0; text-align: center; }

.score-gauge { width: 116px; height: 116px; }

.gauge-bg   { fill: none; stroke: var(--gray-mid); stroke-width: 8; }
.gauge-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s ease;
}
.gauge-number {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 22px;
  fill: var(--navy);
}
.gauge-denom {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 9px;
  fill: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.score-gauge-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
}

.score-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.score-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-bar-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  width: 72px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.score-bar-track {
  flex: 1;
  height: 5px;
  background: var(--gray-mid);
  border-radius: 5px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: var(--navy);
  transition: width 1s ease;
}

.score-bar-fill.low  { background: var(--red); }
.score-bar-fill.mid  { background: var(--gold); }
.score-bar-fill.high { background: var(--green); }

.score-bar-val {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  width: 28px;
  text-align: right;
}

.score-summary {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 16px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

/* Insights */
.insights-list { display: flex; flex-direction: column; gap: 14px; }

.insight-card {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.insight-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.insight-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.insight-body {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Packages */
.packages-list { display: flex; flex-direction: column; gap: 10px; }

.package-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
}

.package-card.highlighted {
  border-color: var(--gold);
  background: rgba(240, 165, 0, 0.04);
}

.pkg-level { width: 88px; flex-shrink: 0; }

.pkg-level-name {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
}

.package-card.highlighted .pkg-level-name { color: var(--gold); }

.pkg-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--gray-mid);
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-card.highlighted .pkg-tag {
  background: rgba(240, 165, 0, 0.18);
  color: var(--gold);
}

.pkg-content { flex: 1; }

.pkg-focus {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}

.pkg-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

.pkg-price {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Priority */
.bp-priority {
  background: var(--navy);
  padding: 28px 40px;
}

.priority-label {
  font-size: 10px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.priority-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}

/* CTA */
.bp-cta {
  padding: 40px 40px 36px;
  text-align: center;
}

.cta-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.cta-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-main {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  padding: 15px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.btn-cta-main:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.38);
}

.btn-cta-outline {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-cta-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Footer */
.bp-footer {
  padding: 18px 40px;
  border-top: 1px solid var(--gray-mid);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  gap: 12px;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  body { background: #fff; }
  #app { padding: 0; }

  .widget        { display: none !important; }
  .no-print      { display: none !important; }

  #output {
    margin: 0;
    max-width: 100%;
  }

  .blueprint { box-shadow: none; border-radius: 0; }

  .bp-header,
  .bp-market,
  .bp-priority {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .score-bar-fill,
  .gauge-fill {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .bp-cta { page-break-inside: avoid; }
}

/* ============================================================
   SCROLL WRAPPER (desktop: transparent pass-through)
   ============================================================ */
#scroll-wrap {
  width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {

  /* Pin html/body so scroll-wrap owns all scrolling (iOS iframe fix) */
  html, body {
    height: 100%;
    overflow: hidden;
    background: var(--white);
  }

  /* Scroll container — the ONLY scrollable element on mobile */
  #scroll-wrap {
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    background: var(--white);
  }

  /* App: full width, no padding, white bg — no "frame" gap */
  #app {
    padding: 0;
    background: var(--white);
    min-height: 100%;
    align-items: stretch;
  }

  /* Widget: edge-to-edge, flat on mobile */
  .widget {
    max-width: 100%;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
  }

  .widget-header {
    border-radius: 0;
    padding: 14px 20px;
  }

  .screen { padding: 28px 20px 16px; }

  /* Sticky Continue — always visible even with long option lists */
  .nav-row {
    position: sticky;
    bottom: 0;
    background: var(--white);
    z-index: 100;
    border-top: 1px solid var(--gray-mid);
    padding: 12px 20px calc(14px + env(safe-area-inset-bottom, 0px));
    margin: 0;
  }

  /* Blueprint output: full width, no top gap */
  #output {
    max-width: 100%;
    margin-top: 0;
  }

  .blueprint { border-radius: 0; }

  .bp-header  { padding: 24px 20px; flex-direction: column; gap: 10px; }
  .bp-title   { font-size: 22px; }
  .bp-header-right { display: none; }

  .bp-section  { padding: 24px 20px; }
  .bp-priority { padding: 20px; }
  .bp-cta      { padding: 28px 20px; }
  .bp-footer   { padding: 16px 20px; flex-direction: column; text-align: center; }

  .bp-market    { padding: 24px 20px; }
  .market-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .market-stat  { padding: 14px 12px; }
  .market-stat-num { font-size: 20px; }

  .score-layout { flex-direction: column; gap: 24px; }
  .score-bars   { width: 100%; }

  .package-card { flex-wrap: wrap; gap: 10px; }
  .pkg-price    { width: 100%; text-align: left; }
  .pkg-level    { width: auto; }

  .cta-buttons  { flex-direction: column; align-items: stretch; }
  .btn-cta-main, .btn-cta-outline { text-align: center; }

  .intro-screen { padding: 32px 20px 28px; }
  .intro-title  { font-size: 22px; }
}
