/* ─── HOME PAGE STYLES ─────────────────────────────────────────────────────── */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap');

/* ─── CSS Variables (landing palette) ──────────────────────────── */
:root {
  --home-accent: #C2856A;
  --home-bg: #FAF8F5;
  --home-dark: #2E2E2E;
  --home-tag-bg: #EAEBD8;
  --home-tag-color: #3a4a2e;
  --home-card-border: #e8e4de;
}

/* ─── Base override for landing ────────────────────────────────── */
.home-body {
  background: var(--home-bg);
  font-family: Inter, Arial, sans-serif;
}

.home-body * { box-sizing: border-box; }

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-section {
  padding: 80px 0;
}

/* ─── Typography ────────────────────────────────────────────────── */
.home-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.25;
  color: var(--home-dark);
  margin-bottom: 20px;
}

.text-white { color: #fff !important; }
.text-center { text-align: center; }

.home-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 680px;
  margin: 0 auto 32px;
}

/* ─── CTA Button ────────────────────────────────────────────────── */
.cta-btn {
  display: inline-block;
  background: var(--home-accent);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #b07460;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

/* ─── Check icons ───────────────────────────────────────────────── */
.check-icon {
  color: var(--home-accent);
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

.check-icon-white {
  color: #fff;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--home-card-border);
  height: 60px;
}

.home-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  letter-spacing: 6px;
  color: #7A8A6A;
  font-weight: 400;
}

.home-nav-cta {
  background: var(--home-accent);
  color: #fff;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.home-nav-cta:hover { background: #b07460; text-decoration: none; color: #fff; }

/* ═══════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--home-bg);
  padding-top: 60px;
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 120px;
  font-weight: 400;
  color: #7A8A6A;
  opacity: 0.06;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 20px;
  transition: transform 0.1s ease-out;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2;
  color: var(--home-dark);
  margin-bottom: 20px;
  min-height: 1.2em;
}

.hero-h1::after {
  content: '|';
  color: var(--home-accent);
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

.hero-h1.typing-done::after {
  display: none;
}

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

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0;
  font-size: 15px;
  line-height: 1.5;
  padding: 6px 0;
  color: #444;
}

.hero-price-note {
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
}

.hero-cta { font-size: 18px; padding: 18px 40px; }

.hero-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-inner {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  background: #EAEBD8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
  border: 2px dashed #C8C9B8;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2 — VALUE
════════════════════════════════════════════════════════════ */
.value-section { background: var(--home-bg); }

.value-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 560px;
  text-align: left;
}

.value-bullets li {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  border-bottom: 1px solid #f0ede8;
}

.value-bullets li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   SECTION 3 — FOR WHO
════════════════════════════════════════════════════════════ */
.for-who-section {
  background: var(--home-dark);
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.white-card {
  background: #fff;
  border: 1px solid var(--home-card-border);
  border-radius: 16px;
  padding: 24px 20px;
}

.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--home-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4 — INSIDE
════════════════════════════════════════════════════════════ */
.inside-section { background: var(--home-bg); }

.counter-block {
  margin: 0 auto 36px;
  display: inline-block;
}

.counter-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(64px, 10vw, 96px);
  font-weight: 400;
  color: var(--home-accent);
  line-height: 1;
}

.counter-plus {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 72px);
  color: var(--home-accent);
}

.counter-label {
  font-size: 16px;
  color: #888;
  margin-top: 4px;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.tag {
  background: var(--home-tag-bg);
  color: var(--home-tag-color);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.8);
}

.tag.popped {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.inside-highlight {
  font-size: 17px;
  font-weight: 500;
  color: var(--home-dark);
  margin: 0 auto 32px;
  max-width: 620px;
}

.inside-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.inside-bullets {
  list-style: none;
  padding: 0;
}

.inside-bullets li {
  display: flex;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
  border-bottom: 1px solid #f0ede8;
}

.inside-bullets li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   SECTION 5 — WHY
════════════════════════════════════════════════════════════ */
.why-section { background: #fff; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--home-bg);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--home-card-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(194, 133, 106, 0.18);
  border-color: var(--home-accent);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.why-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  color: var(--home-dark);
  margin-bottom: 8px;
}

.why-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6 — START
════════════════════════════════════════════════════════════ */
.start-section {
  background: rgba(194, 133, 106, 0.08);
}

.start-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 32px 0;
}

.start-item {
  font-size: 20px;
  font-weight: 500;
  color: var(--home-dark);
}

.start-note {
  font-size: 16px;
  color: #666;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7 — AUTHOR
════════════════════════════════════════════════════════════ */
.author-section { background: var(--home-bg); }

.author-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.author-photo-inner {
  width: 100%;
  aspect-ratio: 1;
  background: #EAEBD8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
  border: 2px dashed #C8C9B8;
}

.author-p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 8 — REVIEWS CAROUSEL
════════════════════════════════════════════════════════════ */
.reviews-section { background: #fff; }

.carousel-wrapper {
  position: relative;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 32px) / 3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--home-card-border);
  background: #f9f9f9;
  aspect-ratio: 3/4;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--home-card-border);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--home-dark);
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
  line-height: 1;
  padding: 0;
}

.carousel-arrow:hover { background: var(--home-accent); border-color: var(--home-accent); color: #fff; }
.carousel-arrow:disabled { opacity: 0.35; cursor: default; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-card-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel-dot.active { background: var(--home-accent); }

/* ═══════════════════════════════════════════════════════════
   SECTION 9 — COMMUNITY
════════════════════════════════════════════════════════════ */
.community-section { background: var(--home-dark); }

.community-sub {
  font-size: 16px;
  color: #aaa;
  margin: 0 auto 32px;
  max-width: 600px;
  line-height: 1.7;
}

.community-bullets {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.community-bullets li {
  display: flex;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 16px;
  color: #ddd;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.community-bullets li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   SECTION 10 — AUDIENCE
════════════════════════════════════════════════════════════ */
.audience-section { background: var(--home-bg); }

.progress-bars { margin-top: 40px; }

.pb-item { margin-bottom: 28px; }

.pb-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pb-label {
  font-size: 15px;
  color: var(--home-dark);
  font-weight: 500;
}

.pb-pct {
  font-size: 14px;
}

.pb-track {
  height: 8px;
  background: #EAEBD8;
  border-radius: 100px;
  overflow: hidden;
}

.pb-fill {
  height: 100%;
  background: var(--home-accent);
  border-radius: 100px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 11 — PRICE
════════════════════════════════════════════════════════════ */
.price-section { background: #fff; }

.price-card {
  max-width: 480px;
  background: var(--home-bg);
  border-radius: 20px;
  padding: 36px;
  margin: 0 auto;
  text-align: left;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.price-table thead { display: none; }

.price-table tbody td {
  padding: 12px 0;
  border-bottom: 1px solid var(--home-card-border);
  font-size: 15px;
  background: transparent;
  vertical-align: top;
}

.price-table tbody tr:hover { background: transparent; }
.price-table tbody td:first-child { color: #888; width: 45%; }
.price-table tbody td:last-child { color: var(--home-dark); font-weight: 400; }

.price-note-block {
  background: rgba(194, 133, 106, 0.10);
  border-left: 3px solid var(--home-accent);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 12 — STEPS
════════════════════════════════════════════════════════════ */
.steps-section { background: var(--home-bg); }

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px 0 32px;
  flex-wrap: nowrap;
}

.step-item {
  text-align: center;
  flex: 1;
  max-width: 220px;
  opacity: 0;
  transform: translateY(24px);
}

.step-item.appeared {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--home-accent);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-text {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}

.step-arrow {
  font-size: 28px;
  color: var(--home-accent);
  flex-shrink: 0;
  padding: 0 16px;
  margin-bottom: 28px;
}

.steps-note {
  font-size: 16px;
  color: #888;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 13 — FINAL CTA
════════════════════════════════════════════════════════════ */
.final-cta-section { background: var(--home-dark); }

.final-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 36px;
}

.final-tag {
  background: rgba(255,255,255,0.10);
  color: #ddd;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
}

.pulse-wrap {
  position: relative;
  display: inline-block;
}

.final-cta-btn {
  font-size: 19px;
  padding: 20px 48px;
  position: relative;
  z-index: 1;
}

.final-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--home-accent);
  z-index: -1;
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.home-footer {
  background: #222;
  padding: 24px 0;
}

.home-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
  flex-wrap: wrap;
  gap: 12px;
}

.home-footer a {
  color: #888;
  text-decoration: underline;
}

.home-footer a:hover { color: #ccc; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS — General
════════════════════════════════════════════════════════════ */

/* Fade up */
.fade-up-item {
  opacity: 0;
  transform: translateY(28px);
  transition: none;
}

.fade-up-item.appeared {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Slide in */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: none;
}
.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: none;
}
.slide-in-left.appeared,
.slide-in-right.appeared {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ═══════════════════════════════════════════════════════════
   MODAL
════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: modal-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover { color: #555; }

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--home-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: icon-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.modal-icon svg {
  width: 28px;
  height: 28px;
}

@keyframes icon-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.modal-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--home-dark);
  margin-bottom: 10px;
}

.modal-sub {
  font-size: 15px;
  color: #6B6B6B;
  margin-top: 0;
  line-height: 1.6;
}

.modal-tg-btn {
  display: block;
  background: var(--home-accent);
  color: #fff;
  border-radius: 12px;
  padding: 14px 28px;
  margin: 20px auto 0;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}

.modal-tg-btn:hover { background: #b07460; text-decoration: none; color: #fff; }

.modal-fine {
  font-size: 12px;
  color: #aaa;
  margin-top: 12px;
}

/* Confetti */
.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  top: 40%;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 1; }
  100% { transform: translateY(350px) rotate(720deg); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img-placeholder { display: none; }

  .hero-bullets li { justify-content: center; }

  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-photo { max-width: 320px; margin: 0 auto; }

  .inside-bullets-grid {
    grid-template-columns: 1fr;
  }

  .hero-parallax-bg { display: none; }

  .steps-row {
    flex-wrap: wrap;
    gap: 32px;
  }

  .step-arrow { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .home-section { padding: 56px 0; }

  .home-h2 { font-size: 26px; }

  .cards-grid-4 { grid-template-columns: 1fr; }

  .why-cards { grid-template-columns: 1fr; }

  .review-card {
    flex: 0 0 calc(100% - 0px);
  }

  .carousel-track-wrap {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-track {
    transition: none;
  }

  .review-card {
    scroll-snap-align: start;
  }

  .carousel-arrow { display: none; }

  .steps-row { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { display: none; }

  .home-footer-inner { flex-direction: column; text-align: center; }

  .cta-btn { width: 100%; text-align: center; }

  .hero-cta {
    position: sticky;
    bottom: 16px;
    width: calc(100% - 48px);
    display: block;
    text-align: center;
    box-shadow: 0 4px 20px rgba(194,133,106,0.35);
  }

  .inside-bullets-grid { grid-template-columns: 1fr; }

  .price-card { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small (≤480px)
════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .home-container { padding: 0 16px; }
  .home-nav-brand { font-size: 20px; letter-spacing: 4px; }
  .hero-h1 { font-size: 28px; }
  .counter-number { font-size: 64px; }
}
