@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@700;800;900&family=Inter:wght@400;500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: #0A0A0A; color: #fff; }

/* ── TICKER ── */
@keyframes ticker    { 0% { transform: translateX(0) }  100% { transform: translateX(-50%) } }
@keyframes float     { 0%,100% { transform: translateY(0) }  50% { transform: translateY(-8px) } }
@keyframes pulse-anim{ 0%,100% { opacity:1; transform:scale(1) }  50% { opacity:0.4; transform:scale(0.8) } }

.ticker { background: #FF6B00; padding: 9px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; gap: 48px; animation: ticker 22s linear infinite; }
.ticker-item  { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; display: flex; align-items: center; gap: 12px; }
.ticker-item::after { content: '◆'; font-size: 7px; opacity: 0.5; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #0f0f0f 50%, #120c08 100%);
  padding: 80px 96px 100px;           /* ← 96px */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #1a1a1a;
}
.hero-glow {
  position: absolute; top: -100px; right: -50px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: center; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,107,0,0.4);
  background: rgba(255,107,0,0.06);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #FF6B00; font-weight: 600; margin-bottom: 28px; border-radius: 2px;
}
.pulse { width: 6px; height: 6px; background: #FF6B00; border-radius: 50%; animation: pulse-anim 1.5s infinite; }

.hero-h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 62px; font-weight: 900;
  line-height: 0.95; letter-spacing: -3px;
  margin-bottom: 24px; color: #fff;
}
.hero-h1 .orange  { color: #FF6B00; }
.hero-h1 .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,0.2); color: transparent; }

.hero-sub { font-size: 15px; color: #4a4a4a; line-height: 1.8; max-width: 440px; margin-bottom: 40px; }

.hero-cta-wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-hero {
  height: 52px; padding: 0 36px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: #FF6B00; border: none; color: #fff;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border-radius: 2px;
}
.btn-hero:hover { background: #e55f00; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,0,0.3); }

.trust-note { font-size: 12px; color: #333; display: flex; align-items: center; gap: 6px; }
.trust-dot  { width: 4px; height: 4px; background: #22c55e; border-radius: 50%; }

/* Chart card */
.chart-card {
  background: linear-gradient(145deg, #111, #0f0f0f);
  border: 1px solid #1e1e1e;
  padding: 22px; border-radius: 4px;
  animation: float 4s ease-in-out infinite;
}

/* ── MEDIUM HERO CARD ── */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 500px; /* було 360px */
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.chart-card.ba-card {
  width: 100%;
  max-width: 520px;
  height: fit-content;

  padding: 26px;
  border-radius: 20px;

  background: linear-gradient(145deg, #111, #0f0f0f);
  border: 1px solid #1e1e1e;

  animation: float 4s ease-in-out infinite;

  box-shadow:
    0 12px 40px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.02) inset;
}

/* Header */
.ba-header {
  margin-bottom: 22px !important;
}

/* Toggle */
.ba-tog-item {
  padding: 7px 16px !important;
  font-size: 10px !important;
}

/* Chart */
.ba-bars-wrap {
  height: 110px !important; /* було 80px */
  margin-bottom: 20px !important;
}

.ba-bars {
  gap: 4px !important;
}

/* Stats */
.ba-stats {
  gap: 12px !important;
  padding-top: 16px !important;
}

.ba-stat-label {
  font-size: 10px !important;
  margin-bottom: 6px !important;
}

.ba-stat-val {
  font-size: 19px !important;
  font-weight: 800 !important;
}

/* Typography */
.cc-pair {
  font-size: 18px !important;
}

.cc-sub {
  font-size: 10px !important;
}

/* Hover */
.chart-card.ba-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,0,0.2);

  box-shadow:
    0 16px 50px rgba(255,107,0,0.05),
    0 12px 40px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 1024px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chart-card.ba-card {
    max-width: 100%;
    min-height: auto;
  }
}

@media (max-width: 768px) {

  .chart-card.ba-card {
    padding: 22px;
    border-radius: 18px;
  }

  .ba-bars-wrap {
    height: 95px !important;
  }

  .ba-stat-val {
    font-size: 17px !important;
  }
}
.cc-top    { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.cc-pair   { font-family: 'Cabinet Grotesk', sans-serif; font-size: 16px; font-weight: 800; color: #fff; }
.cc-sub    { font-size: 10px; color: #333; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.cc-badge  { font-size: 11px; font-weight: 700; color: #22c55e; background: rgba(34,197,94,0.08); padding: 4px 10px; border: 1px solid rgba(34,197,94,0.15); border-radius: 2px; }
.bars      { display: flex; align-items: flex-end; gap: 3px; height: 72px; margin-bottom: 16px; }
.b         { flex: 1; border-radius: 1px; }
.cc-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.cc-price  { font-family: 'Cabinet Grotesk', sans-serif; font-size: 30px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.cc-diff   { font-size: 13px; color: #22c55e; font-weight: 600; }
.cc-meta   { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding-top: 12px; border-top: 1px solid #1e1e1e; }
.cc-m      { font-size: 10px; color: #333; text-transform: uppercase; letter-spacing: 0.5px; }
.cc-m b    { display: block; color: #666; font-weight: 600; margin-top: 2px; font-size: 11px; }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: #0A0A0A; }
.stat  {
  padding: 32px 40px;
  border-right: 1px solid #161616; border-bottom: 1px solid #161616;
  position: relative; overflow: hidden;
}
.stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #FF6B00, transparent); }
.stat-n { font-family: 'Cabinet Grotesk', sans-serif; font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -1.5px; line-height: 1; }
.stat-n em { color: #FF6B00; font-style: normal; }
.stat-l { font-size: 11px; color: #333; text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; }

/* ── SECTION BASE ── */
.sec { padding: 80px 96px; }                /* ← 96px */
.sec-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #FF6B00; font-weight: 600; margin-bottom: 14px; }
.sec-eyebrow::before { content: ''; width: 16px; height: 2px; background: #FF6B00; }
.sec-h { font-family: 'Cabinet Grotesk', sans-serif; font-size: 38px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 48px; color: #fff; }

/* ── CURRICULUM ── */
.curriculum { background: linear-gradient(180deg, #0A0A0A, #0d0d0d); }
.skills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #161616; }
.skill { background: #0d0d0d; padding: 32px; border-left: 2px solid transparent; transition: all 0.2s; }
.skill:hover { background: #111; border-left-color: #FF6B00; }
.skill-n { font-size: 10px; color: #FF6B00; letter-spacing: 3px; font-weight: 700; margin-bottom: 14px; }
.skill-t { font-family: 'Cabinet Grotesk', sans-serif; font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.skill-d { font-size: 13px; color: #3a3a3a; line-height: 1.7; }

/* ── FOR WHO ── */
.for-who { background: #0d0d0d; border-top: 1px solid #161616; border-bottom: 1px solid #161616; }
.fw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #161616; margin-top: 48px; }
.fw-card { background: #0d0d0d; padding: 36px; display: flex; gap: 20px; transition: background 0.2s; }
.fw-card:hover { background: #111; }
.fw-icon { width: 48px; height: 48px; background: #111; border: 1px solid #1e1e1e; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; border-radius: 2px; }
.fw-t { font-family: 'Cabinet Grotesk', sans-serif; font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.fw-d { font-size: 13px; color: #3a3a3a; line-height: 1.7; }

/* ── PRICING TEASER ── */
.pricing-teaser { background: linear-gradient(135deg, #0d0d0d, #110d08); border-top: 1px solid #161616; }
.pt-inner {
  background: linear-gradient(135deg, #111, #0f0e0d);
  border: 1px solid #1e1e1e;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  border-radius: 4px;
}
.pt-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,107,0,0.06), transparent 70%);
  pointer-events: none;
}
.pt-plan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,107,0,0.2);
  background: rgba(255,107,0,0.04);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FF6B00;
  cursor: default;
}

.pt-plan .pt-plan-price {
  color: rgba(255,107,0,0.5);
  font-weight: 600;
}

.pt-plan.hot {
  border-color: #FF6B00;
  background: rgba(255,107,0,0.10);
  color: #FF6B00;
}

.pt-plan.hot .pt-plan-price {
  color: rgba(255,107,0,0.7);
}
.btn-explore {
  position: relative; z-index: 1;
  height: 52px; padding: 0 40px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: transparent; border: 1.5px solid #FF6B00; color: #FF6B00;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap; border-radius: 2px;
}
.btn-explore:hover { background: #FF6B00; color: #fff; }
/* ── PRICING CARDS ── */
.pricing-cards-section {
  background: linear-gradient(135deg, #0d0d0d, #110d08);
  border-top: 1px solid #161616;
  padding: 80px 96px;
}

.pricing-cards-sub {
  font-size: 14px;
  color: #3a3a3a;
  margin-bottom: 48px;
  margin-top: 8px;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pricing-card {
  background: #111;
  border: 1px solid #1e1e1e;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: #2a2a2a;
  transform: translateY(-3px);
}
.pricing-card--featured {
  border-color: #FF6B00;
  background: #141414;
}
.pricing-card--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0; right: 0;
  background: #FF6B00;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 12px;
}

.pricing-card__tier {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 16px;
  color: #555;
  border: 1px solid #222;
  align-self: flex-start;
}
.pricing-card--featured .pricing-card__tier {
  background: #FF6B00;
  color: #fff;
  border-color: #FF6B00;
}

.pricing-card__name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.pricing-card__desc {
  font-size: 12px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-card__price {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #FF6B00;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__period {
  font-size: 11px;
  color: #333;
  margin-bottom: 20px;
}

.pricing-card__divider {
  height: 1px;
  background: #1a1a1a;
  margin-bottom: 18px;
}
.pricing-card--featured .pricing-card__divider { background: #2a2a2a; }

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 24px;
}
.pricing-card__features li {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.pricing-card__features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #FF6B00;
  flex-shrink: 0;
  margin-top: 5px;
}
.pricing-card--featured .pricing-card__features li { color: #888; }

.pricing-card__btn {
  display: block;
  height: 44px;
  line-height: 42px;
  text-align: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,107,0,0.35);  /* ← помаранчева грань */
  color: #FF6B00;                           /* ← помаранчевий текст */
  background: transparent;
  transition: all 0.2s;
  margin-top: auto;
}
.pricing-card__btn:hover {
  background: rgba(255,107,0,0.1);         /* ← напівпрозорий ховер */
  border-color: #FF6B00;
  color: #FF6B00;
}
.pricing-card--featured .pricing-card__btn {
  background: #FF6B00;
  border-color: #FF6B00;
  color: #fff;
}
.pricing-card--featured .pricing-card__btn:hover {
  background: rgba(255,107,0,0.15);
  color: #FF6B00;
}
/* index.css */
.pricing-card__btn--owned {
    border-color: rgba(34,197,94,0.4);
    color: rgba(34,197,94,0.8);
    cursor: default;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-cards-section { padding: 60px 40px; }
  .pricing-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-cards-section { padding: 48px 24px; }
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { order: 0; }
}
/* ── REVIEWS ── */
.reviews { background: #0d0d0d; border-top: 1px solid #161616; }
.rv-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #161616; margin-top: 48px; }
.rv { background: #0d0d0d; padding: 32px; transition: background 0.2s; }
.rv:hover { background: #111; }
.rv-stars  { color: #FF6B00; font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; }
.rv-text   { font-size: 14px; color: #3a3a3a; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-av     { width: 40px; height: 40px; background: #111; border: 1px solid #1e1e1e; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #FF6B00; font-family: 'Cabinet Grotesk', sans-serif; border-radius: 2px; flex-shrink: 0; }
.rv-name   { font-size: 13px; font-weight: 700; color: #fff; }
.rv-role   { font-size: 10px; color: #333; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.rv-profit { font-size: 11px; color: #22c55e; font-weight: 700; margin-top: 3px; }

/* ── CONTACT ── */
.contact { background: linear-gradient(135deg, #0A0A0A, #100d0a); border-top: 1px solid #161616; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-desc  { font-size: 14px; color: #3a3a3a; line-height: 1.8; margin-bottom: 32px; max-width: 380px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link  { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #3a3a3a; text-decoration: none; transition: color 0.2s; }
.contact-link:hover { color: #FF6B00; }
.contact-link-icon { width: 36px; height: 36px; border: 1px solid #1e1e1e; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: border-color 0.2s; }
.contact-link:hover .contact-link-icon { border-color: #FF6B00; }

.form-wrap  { background: #0d0d0d; border: 1px solid #1e1e1e; padding: 36px; border-radius: 4px; }
.form-title { font-family: 'Cabinet Grotesk', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.form-row   { margin-bottom: 16px; }
.form-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #333; font-weight: 600; display: block; margin-bottom: 8px; }
.form-input { width: 100%; height: 44px; background: #111; border: 1px solid #1e1e1e; padding: 0 14px; font-size: 14px; color: #fff; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; border-radius: 2px; }
.form-input:focus { border-color: #FF6B00; }
.form-textarea { width: 100%; height: 100px; background: #111; border: 1px solid #1e1e1e; padding: 12px 14px; font-size: 14px; color: #fff; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; resize: none; border-radius: 2px; }
.form-textarea:focus { border-color: #FF6B00; }
.form-input::placeholder, .form-textarea::placeholder { color: #2a2a2a; }
.btn-send { width: 100%; height: 48px; font-family: 'Cabinet Grotesk', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; background: #FF6B00; border: none; color: #fff; cursor: pointer; transition: all 0.2s; border-radius: 2px; margin-top: 8px; }
.btn-send:hover { background: #e55f00; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,0,0.25); }

/* ── CTA ── */
.cta { background: #FF6B00; padding: 80px 96px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; } /* ← 96px */
.cta-t { font-family: 'Cabinet Grotesk', sans-serif; font-size: 52px; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 0.95; }
.cta-t span { -webkit-text-stroke: 2px rgba(255,255,255,0.3); color: transparent; }
.cta-right  { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.btn-cta    { height: 56px; padding: 0 40px; font-family: 'Cabinet Grotesk', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; background: #1A1A1A; border: 2px solid #1A1A1A; color: #fff; cursor: pointer; white-space: nowrap; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; border-radius: 2px; }
.btn-cta:hover { background: transparent; color: #1A1A1A; }
.cta-note   { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .hero { padding: 60px 40px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .chart-card { max-width: 400px; animation: none; }

  .sec { padding: 60px 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }

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

  .pt-inner { grid-template-columns: 1fr; gap: 32px; }
  .btn-explore { width: 100%; justify-content: center; }

  .rv-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .cta { padding: 60px 40px; grid-template-columns: 1fr; gap: 32px; }
  .cta-right { align-items: flex-start; }
  .btn-cta { width: 100%; justify-content: center; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  .ticker-inner { gap: 32px; }

  .hero { padding: 48px 24px 64px; }
  .hero-h1 { font-size: 44px; letter-spacing: -2px; }
  .hero-sub { font-size: 14px; }
  .hero-cta-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-hero { width: 100%; justify-content: center; }
  .chart-card { max-width: 100%; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px; }
  .stat-n { font-size: 28px; }

  .sec { padding: 48px 24px; }
  .sec-h { font-size: 30px; letter-spacing: -1px; margin-bottom: 32px; }

  .skills { grid-template-columns: 1fr; }
  .skill { padding: 24px; }

  .fw-card { padding: 24px; flex-direction: column; gap: 12px; }

  .pt-inner { padding: 32px 24px; }
  .pt-plans { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .pt-plan  { font-size: 11px; }

  .rv { padding: 24px; }

  .contact-desc { max-width: 100%; }
  .form-wrap { padding: 24px; }

  .cta { padding: 48px 24px; }
  .cta-t { font-size: 36px; letter-spacing: -1.5px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .hero-h1 { font-size: 36px; letter-spacing: -1.5px; }
  .hero-badge { font-size: 10px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .sec-h { font-size: 26px; }
  .cta-t { font-size: 30px; }
}