/* =====================================================
   PCMojo — Shared Stylesheet
   Light Theme · DM Sans · Permanent Marker · Space Mono
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Permanent+Marker&family=Space+Mono:wght@400;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bg:            #F6F4F0;
  --surface:       #FFFFFF;
  --surface2:      #F0EDE7;
  --accent:        #D49500;
  --accent-light:  #F0AB00;
  --accent-dark:   #B87E00;
  --text:          #1A1814;
  --text2:         #3D3830;
  --muted:         #8A8478;
  --success:       #2E9B57;
  --success-light: rgba(46,155,87,0.12);
  --border:        rgba(0,0,0,0.08);
  --border-accent: rgba(212,149,0,0.25);
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.04);
  --radius:        12px;
  --max-w:         1080px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Section Wrapper ─── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px;
}
.section--sm {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
}

/* ─── Section Labels & Headings ─── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--text2);
  margin: 0 0 48px;
  max-width: 56ch;
}

/* ─── Logo ─── */
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.logo-wordmark {
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.logo-pc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
}
.logo-mojo {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
}
.logo-tagline {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

/* ─── Buttons ─── */
.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 2px 12px rgba(212,149,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(212,149,0,0.4);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  transform: translateY(-1px);
  background: rgba(212,149,0,0.05);
}
.btn-ghost {
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  color: var(--text2);
}
.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(0,0,0,0.07);
}
.btn-full { width: 100%; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  background: rgba(246,244,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-cta { flex-shrink: 0; }

/* ─── Footer ─── */
footer {
  background: var(--surface2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 24px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ─── Hero ─── */
.hero-wrap {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 88px 24px 80px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 20px;
}
.hero-mojo {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  color: var(--text2);
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-sub--lg {
  font-size:  22px;
  font-weight: 00;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Page Header (non-hero pages) ─── */
.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 60px;
  text-align: center;
}
.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-header .section-sub { margin: 0 auto; }
.page-header--compact {
  padding: 52px 24px 44px;
}

/* ─── Pain Grid ─── */
.pain-section { background: var(--bg); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.pain-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.pain-card p {
  font-size: 15px;
  color: var(--text2);
  margin: 0;
  line-height: 1.55;
}

/* ─── Feature Snapshot Grid ─── */
.feature-snap-section { background: var(--surface2); }
.feature-snap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.feature-snap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.feature-snap-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.feature-snap-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.feature-snap-card p {
  font-size: 15px;
  color: var(--text2);
  margin: 0;
  line-height: 1.55;
}
.see-all-link {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  gap: 4px;
  transition: gap 0.15s;
}
.see-all-link:hover { gap: 8px; }

/* ─── Testimonials ─── */
.testimonial-section { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.stars {
  color: var(--accent-light);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.testimonial-role {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

/* ─── Feature List (features.html) ─── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.feature-card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
  background: rgba(212,149,0,0.1);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.feature-card-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.25;
}
.feature-card-body p {
  font-size: 15px;
  color: var(--text2);
  margin: 0 0 18px;
  line-height: 1.6;
  max-width: 64ch;
}
.feature-card-body p:last-child { margin-bottom: 0; }

/* ─── Keyboard Chord Example ─── */
.kbd-example {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.kbd-label {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-left: 4px;
}
.kbd {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  background: rgba(212,149,0,0.1);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 5px;
  padding: 4px 10px;
  min-width: 28px;
  text-align: center;
  display: inline-block;
}
.kbd:first-child {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212,149,0,0.3);
}
.kbd-gold {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212,149,0,0.3);
}
.kbd-arrow {
  color: var(--muted);
  font-size: 14px;
}

/* ─── CTA Banner ─── */
.cta-banner-wrap {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
}
.cta-banner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.cta-banner-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

/* ─── Pricing Grid ─── */
.pricing-section { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pricing-card--highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow), 0 0 0 1px var(--border-accent);
}
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.pricing-badge--beta {
  background: rgba(0,0,0,0.06);
  color: var(--text2);
  border: 1px solid var(--border);
}
.pricing-badge--best {
  background: rgba(212,149,0,0.12);
  color: var(--accent-dark);
  border: 1px solid var(--border-accent);
}
.pricing-badge--empty {
  visibility: hidden;
}
.pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}
.pricing-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
  min-height: 40px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0 20px;
}
.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Billing Toggle ─── */
.billing-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}
.billing-toggle-btn {
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--text2);
  transition: all 0.2s;
}
.billing-toggle-btn--active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(212,149,0,0.3);
}
.billing-toggle-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--surface);
  background: rgba(212, 148, 0, 0.818);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}
.pricing-price-old-row {
  min-height: 20px;
  text-align: left;
}
.pricing-billing-row {
  height: 18px;
  line-height: 18px;
  margin-bottom: 4px;
  text-align: left;
}
.pricing-price-meta {
  min-height: 36px;
  margin-bottom: 4px;
}
.pricing-price-old {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}
.pricing-price-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  display: block;
}

/* ─── FAQ ─── */
.faq-section { background: var(--surface2); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}
.faq-a {
  font-size: 15px;
  color: var(--text2);
  margin: 0;
  line-height: 1.6;
}

/* ─── About Story ─── */
.about-story-section { background: var(--bg); }
.about-story-inner {
  max-width: 72ch;
  margin: 0 auto;
}
.about-story {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.75;
  margin: 0;
}

/* ─── Values Grid ─── */
.values-section { background: var(--surface); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.value-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.value-card p {
  font-size: 14px;
  color: var(--text2);
  margin: 0;
  line-height: 1.6;
}

/* ─── Legal Content ─── */
.legal-section { background: var(--bg); }
.legal-content {
  max-width: 72ch;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 12px;
  line-height: 1.3;
}
.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 8px;
  line-height: 1.4;
}
.legal-content p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin: 0 0 16px;
}
.legal-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}
.legal-content li {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-updated {
  margin-top: 48px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* ─── Download anchor ─── */
#download { scroll-margin-top: 72px; }

/* ─── Checkout Flow ─── */
.checkout-shell {
  background:
    radial-gradient(circle at top, rgba(212,149,0,0.08), transparent 32%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.checkout-shell .section--sm {
  padding-top: 40px;
  padding-bottom: 88px;
}
.timeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}
.timeline-step {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}
.timeline-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.timeline-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.timeline-meta {
  font-size: 12px;
  color: var(--muted);
}
.timeline-line {
  height: 2px;
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
}
.timeline-line--complete {
  background: linear-gradient(90deg, var(--success), #5fc285);
}
.timeline-step--complete .timeline-dot {
  border-color: var(--success);
  background: var(--success);
  box-shadow: 0 0 0 6px var(--success-light);
}
.timeline-step--complete .timeline-label,
.timeline-step--complete .timeline-meta {
  color: var(--success);
}
.timeline-step--active .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(212,149,0,0.14);
}
.timeline-step--active .timeline-label {
  color: var(--accent-dark);
}
.timeline-step--active .timeline-meta {
  color: var(--accent);
}
.timeline-step--pending .timeline-label {
  color: var(--text2);
}

.checkout-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.checkout-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212,149,0,0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.checkout-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.checkout-copy {
  margin: 0 0 24px;
  color: var(--text2);
  font-size: 17px;
}
.checkout-meta {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.checkout-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface2);
}
.checkout-meta-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.checkout-meta-value {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--text);
  text-align: right;
}
.checkout-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.checkout-error {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}
.checkout-error p {
  margin: 0 0 12px;
  color: var(--text2);
  font-size: 14px;
}

.download-card {
  text-align: center;
}
.download-card .checkout-plan-badge {
  justify-content: center;
}
.download-note {
  margin: 16px auto 0;
  max-width: 42ch;
  color: var(--text2);
  font-size: 15px;
}
.download-note--muted {
  color: var(--muted);
  font-size: 14px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }
  .timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .timeline-line {
    width: 2px;
    height: 24px;
    margin-left: 8px;
  }
}

@media (max-width: 720px) {
  .nav-links { display: none; }

  .pain-grid          { grid-template-columns: 1fr; }
  .feature-snap-grid  { grid-template-columns: 1fr; }
  .testimonial-grid   { grid-template-columns: 1fr; }
  .pricing-grid       { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }

  .feature-card {
    flex-direction: column;
    gap: 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .checkout-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .checkout-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-meta-value {
    text-align: left;
    overflow-wrap: anywhere;
  }
}

/* ─── Activation Steps ─── */

.activation-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.activation-step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}

.activation-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.activation-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.activation-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.activation-step-body {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0 0 16px;
}

.activation-screenshot-placeholder {
  background: var(--surface2);
  border: 2px dashed rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.activation-screenshot {
  display: block;
  max-width: 50%;
  height: auto;
  margin-top: 12px;
  border-radius: 10px;
}

.activation-screenshot-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 720px) {
  .activation-step-card {
    padding: 22px 18px;
  }

  .activation-screenshot-placeholder {
    padding: 36px 16px;
  }
}
