/* =====================================================
   LANDING PAGE — Variant: MINIMAL (Editorial Minimalist)
   Palette: Off-white + Near-black + Single Cobalt Accent
   Type: Fraunces (serif display) + Inter (body) + JetBrains Mono (labels)
   ===================================================== */

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

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  --paper-100: #FFFFFF;
  --paper-200: #FAFAF8;
  --paper-300: #F2F1ED;
  --paper-400: #E7E5DF;
  --paper-500: #D8D5CC;

  --ink-900:  #111110;
  --ink-800:  #1C1B19;
  --ink-700:  #33322E;

  --bg:             var(--paper-200);
  --bg-card:        var(--paper-100);
  --bg-elevated:    var(--paper-300);
  --border:         var(--paper-500);
  --border-subtle:  rgba(17, 17, 16, 0.1);
  --border-light:   var(--paper-400);

  --text:           var(--ink-900);
  --text-secondary: #55534C;
  --text-muted:     #83807A;
  --text-dimmed:    #A6A39A;

  --accent:         #1D4ED8;
  --accent-dim:     rgba(29, 78, 216, 0.06);
  --accent-mid:     rgba(29, 78, 216, 0.12);
  --accent-border:  rgba(29, 78, 216, 0.28);
  --accent-glow:    rgba(29, 78, 216, 0.18);

  --violet:         #1D4ED8;
  --violet-dim:     rgba(29, 78, 216, 0.06);
  --violet-border:  rgba(29, 78, 216, 0.2);

  --green:          #146C43;
  --green-dim:      rgba(20, 108, 67, 0.06);
  --green-border:   rgba(20, 108, 67, 0.22);

  --amber:          #B4530A;
  --amber-dim:      rgba(180, 83, 10, 0.06);
  --amber-border:   rgba(180, 83, 10, 0.22);

  --grad-brand:     var(--accent);
  --grad-green:     var(--green);
  --grad-text:      var(--accent);

  --max-w:          1100px;
  --radius:         2px;
  --radius-sm:      2px;
  --radius-xs:      2px;

  --shadow-sm:      0 1px 2px rgba(17,17,16,0.04);
  --shadow-md:      0 6px 24px rgba(17,17,16,0.06);
  --shadow-lg:      0 14px 40px rgba(17,17,16,0.08);
  --shadow-glow:    0 0 0 1px var(--accent-border);

  --ease-out:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:     all 0.3s var(--ease-out);
}

/* ─── BASE ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }
a { text-decoration: none; color: inherit; }

/* ─── SCROLL PROGRESS ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 500;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 24px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.3px;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  letter-spacing: 0.1px;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 22px !important;
  border-radius: 2px;
  background: var(--text) !important;
  color: var(--paper-100) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.2px;
}
.nav-cta:hover {
  background: var(--accent) !important;
  transform: translateY(-1px);
  color: #fff !important;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}
.nav-toggle:hover { border-color: var(--text); }

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--paper-100);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 100px;
}
.hero-bg { display: none; }
.hero-grid { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: 'JetBrains Mono', monospace;
  cursor: default;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5.8vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 30px;
}
.hero-title .grad {
  font-style: italic;
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.78;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dimmed);
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--paper-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--border);
}
.stat-item:hover { background: var(--paper-200); }
.stat-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.1px;
}
.btn-primary {
  background: var(--text);
  color: var(--paper-100);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}
.btn-large { padding: 17px 40px; font-size: 15px; letter-spacing: -0.2px; }

/* ─── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 116px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-dark {
  max-width: 100%;
  padding: 116px 24px;
  background: var(--paper-300);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-dark > .section-badge,
.section-dark > .section-title,
.section-dark > .section-subtitle,
.section-dark > .problem-list,
.section-dark > .faq-list,
.section-dark > .testimonial-wrap,
.section-dark > .section-quote,
.section-dark > .section-cta {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--text);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.section-badge.amber { color: var(--amber); border-color: var(--amber); }
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 740px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.75;
}
.section-cta { text-align: center; margin-top: 56px; }
.section-quote {
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  color: var(--text);
  font-style: italic;
  max-width: 660px;
  margin: 48px auto 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ─── CARDS GRID ──────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-left: none;
  border-radius: 0;
  padding: 34px 30px;
  transition: var(--transition);
  position: relative;
  counter-increment: card-counter;
}
.cards-grid { counter-reset: card-counter; }
.card::before {
  content: counter(card-counter, decimal-leading-zero);
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.card:hover {
  background: var(--paper-200);
}
.card-icon { display: none; }
.card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── PROBLEM ─────────────────────────────────────────── */
.problem-list {
  display: flex;
  flex-direction: column;
  max-width: 780px;
}
.problem-item {
  display: flex;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.problem-item:last-child { border-bottom: none; }
.problem-item:hover { padding-left: 10px; }
.problem-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.problem-num {
  width: 44px; height: 44px;
  border-radius: 0;
  border: 1px solid var(--text);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.problem-line {
  width: 1px;
  flex: 1;
  min-height: 24px;
  margin-top: 10px;
  background: var(--border);
}
.problem-item:last-child .problem-line { display: none; }
.problem-body { flex: 1; padding-top: 8px; }
.problem-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.problem-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* ─── SOLUTION ────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.solution-card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}
.solution-card:hover {
  background: var(--paper-200);
}
.solution-check {
  width: 34px; height: 34px;
  border-radius: 0;
  background: none;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--green);
  margin-bottom: 22px;
  font-weight: 700;
}
.solution-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.solution-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── TESTIMONIAL ─────────────────────────────────────── */
.testimonial-wrap { max-width: 780px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 48px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 32px;
  font-size: 140px;
  color: var(--text);
  opacity: 0.06;
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 22px;
}
.star { color: var(--amber); font-size: 14px; }
.testimonial-card blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 0;
  background: var(--text);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--paper-100);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; letter-spacing: -0.2px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ─── OFFER ───────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.offer-card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.offer-card:hover { background: var(--paper-200); }
.offer-card.featured {
  background: var(--paper-100);
  box-shadow: inset 0 3px 0 var(--accent);
}
.offer-card.featured:hover { background: var(--paper-200); }
.offer-number {
  font-size: 10px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.offer-icon { display: none; }
.offer-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.offer-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.offer-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.offer-link:hover { opacity: 0.7; }
.urgency {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--paper-100);
  border: 1px solid var(--amber-border);
  border-radius: 0;
  padding: 22px 26px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.urgency-icon { display: none; }
.urgency p { font-size: 14px; color: var(--amber); font-weight: 500; line-height: 1.6; }
.urgency strong { color: var(--text); font-weight: 700; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  width: 24px; height: 24px;
  border-radius: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--text-muted);
}
.faq-item.open .faq-question { color: var(--accent); }
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  border-color: var(--accent);
  color: var(--accent);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  transition: max-height 0.4s var(--ease-out), padding 0.35s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 26px; }

/* ─── FINAL CTA ───────────────────────────────────────── */
.section-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 24px;
  background: var(--paper-300);
  border-top: 1px solid var(--border);
}
.final-bg { display: none; }
.section-final .section-content { position: relative; z-index: 1; }
.section-final .section-title {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.section-final .section-subtitle {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.78;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  padding: 60px 24px 36px;
  border-top: 1px solid var(--border);
  background: var(--paper-200);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 36px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
}
.footer-links-group {
  display: flex;
  gap: 48px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col .col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dimmed);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.footer-links-col a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-dimmed);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ─── REVEAL ANIMATIONS ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(1) { transition-delay: 0s; }
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { top: 0; bottom: auto; left: 25%; right: 25%; width: auto; height: 1px; }
  .solution-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-links-group { gap: 28px; }
}
@media (max-width: 640px) {
  .section { padding: 80px 20px; }
  .section-dark { padding: 80px 20px; }
  .hero { padding: 120px 20px 80px; }
  .hero-title { font-size: 2.3rem; letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions > * { text-align: center; justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 2.4rem; }
  .stat-item { padding: 30px 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
