:root {
  --yellow: #FFE32E;
  --yellow-soft: #FFF6B0;
  --yellow-hover: #FFD400;
  --black: #1A1A1A;
  --gray-900: #2B2B2B;
  --gray-700: #555;
  --gray-500: #8A8A8A;
  --gray-200: #EEEEEE;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --green: #19B47A;
  --radius-card: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.10);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Manrope", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--gray-100);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.logo-mark {
  width: 36px; height: 36px; background: var(--yellow); border-radius: 8px;
  display: grid; place-items: center; font-size: 22px;
}
.logo-sub { font-size: 11px; color: var(--gray-500); font-weight: 500; margin-top: 2px; }
.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
  padding: 10px 14px; border-radius: var(--radius-pill); font-weight: 600;
  font-size: 14px; color: var(--gray-700);
}
.nav a:hover { background: var(--gray-100); color: var(--black); }
.header-cta { display: flex; gap: 8px; align-items: center; }
.btn-tg { padding: 10px 14px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px; color: var(--gray-700); }
.btn-tg:hover { color: var(--black); }
.btn-login { padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; }
.btn-login:hover { background: var(--gray-100); }
.btn-yellow {
  background: var(--yellow); color: var(--black); padding: 12px 22px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; transition: background 0.15s;
}
.btn-yellow:hover { background: var(--yellow-hover); }
@media (max-width: 768px) {
  .nav { display: none; }
  .btn-tg, .btn-login { display: none; }
}

/* HERO */
.hero { padding: 56px 0 32px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-soft); padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  font-size: 56px; line-height: 1.05; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 span { background: var(--yellow); padding: 0 8px; border-radius: 8px; }
.hero-sub {
  font-size: 19px; color: var(--gray-700); margin-bottom: 32px; max-width: 520px;
}
.hero-stats {
  display: flex; gap: 32px; margin-bottom: 32px;
  background: var(--white); padding: 18px 24px; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); width: fit-content;
}
.hero-stat-num { font-size: 22px; font-weight: 800; }
.hero-stat-label { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.hero-cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-yellow-lg {
  background: var(--yellow); color: var(--black); padding: 18px 32px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 17px;
  border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(255, 227, 46, 0.4);
  transition: all 0.15s; display: inline-block;
}
.btn-yellow-lg:hover { background: var(--yellow-hover); transform: translateY(-1px); }
.hero-trust {
  display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-700);
}
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--white);
  margin-left: -8px; background: linear-gradient(135deg, #FFD24A, #FFA92B);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.avatar:nth-child(1) { background: linear-gradient(135deg, #FFD24A, #FFA92B); }
.avatar:nth-child(2) { background: linear-gradient(135deg, #B5E48C, #76C893); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #B6CCFE, #6E92F7); }
.avatar:nth-child(4) { background: linear-gradient(135deg, #F8B5C0, #E76F8E); }
.hero-art {
  border-radius: 36px; aspect-ratio: 1.05/1;
  display: grid; place-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FFE890 0%, #FFD400 100%);
}
.hero-art::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%);
}
.hero-art-inner {
  width: 70%; aspect-ratio: 1; background: var(--white);
  border-radius: 28px; display: grid; place-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative; z-index: 1;
}
.hero-art-emoji { font-size: 120px; line-height: 1; }
.hero-art-chip {
  position: absolute; background: var(--white); padding: 10px 16px;
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 2;
}
.hero-art-chip.tl { top: 20px; left: 20px; }
.hero-art-chip.br { bottom: 20px; right: 20px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-art { max-width: 400px; margin: 0 auto; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ALT */
.alt { padding: 64px 0; background: var(--white); }
.alt-head { text-align: center; margin-bottom: 48px; }
.alt-head h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.alt-head p { color: var(--gray-700); font-size: 17px; max-width: 600px; margin: 0 auto; }
.alt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.alt-card {
  background: var(--gray-100); border-radius: var(--radius-card); padding: 32px 28px;
}
.alt-icon {
  width: 56px; height: 56px; background: var(--white); border-radius: 16px;
  display: grid; place-items: center; font-size: 28px; margin-bottom: 20px;
}
.alt-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.alt-card p { color: var(--gray-700); font-size: 15px; }
@media (max-width: 768px) {
  .alt-grid { grid-template-columns: 1fr; }
  .alt-head h2 { font-size: 28px; }
}

/* PACKAGES */
.packs { padding: 80px 0; }
.packs-head { text-align: center; margin-bottom: 48px; }
.packs-head h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.packs-head p { color: var(--gray-700); font-size: 17px; }
.packs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pack-card {
  background: var(--white); border-radius: var(--radius-card); padding: 32px 28px;
  box-shadow: var(--shadow-card); position: relative;
  display: flex; flex-direction: column; transition: all 0.2s;
  border: 2px solid transparent;
}
.pack-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.pack-card.featured { border-color: var(--yellow); background: linear-gradient(180deg, #FFFCE3 0%, var(--white) 80%); }
.pack-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--black); color: var(--yellow); padding: 6px 14px;
  border-radius: var(--radius-pill); font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
.pack-name { font-size: 14px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.pack-tag { font-size: 18px; font-weight: 700; margin: 6px 0 16px; }
.pack-price { font-size: 38px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.pack-price small { font-size: 16px; font-weight: 600; color: var(--gray-500); }
.pack-meta { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.pack-features { list-style: none; margin-bottom: 28px; flex: 1; }
.pack-features li {
  display: flex; gap: 10px; align-items: flex-start; padding: 8px 0;
  font-size: 14px; color: var(--gray-900); border-bottom: 1px solid var(--gray-100);
}
.pack-features li:last-child { border-bottom: none; }
.pack-check {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: grid; place-items: center; font-size: 11px; margin-top: 2px;
}
.pack-cta {
  background: var(--gray-100); color: var(--black); padding: 14px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; text-align: center; display: block;
  transition: background 0.15s;
}
.pack-cta:hover { background: var(--gray-200); }
.pack-card.featured .pack-cta { background: var(--yellow); }
.pack-card.featured .pack-cta:hover { background: var(--yellow-hover); }
.pack-custom { background: var(--gray-900); color: var(--white); }
.pack-custom .pack-name, .pack-custom .pack-meta { color: rgba(255,255,255,0.6); }
.pack-custom .pack-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.08); }
.pack-custom .pack-price { color: var(--white); }
.pack-custom .pack-cta { background: var(--yellow); }
@media (max-width: 1100px) { .packs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .packs-grid { grid-template-columns: 1fr; }
  .packs-head h2 { font-size: 30px; }
}

/* HOW */
.how { padding: 72px 0; background: var(--white); }
.how-head { text-align: center; margin-bottom: 48px; }
.how-head h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-step {
  background: var(--gray-100); border-radius: var(--radius-card); padding: 32px;
}
.how-num {
  width: 44px; height: 44px; background: var(--yellow);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 20px; font-weight: 800; margin-bottom: 20px;
}
.how-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.how-step p { color: var(--gray-700); font-size: 15px; }
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-head h2 { font-size: 28px; }
}

/* PROOF */
.proof { padding: 72px 0; }
.proof-head { text-align: center; margin-bottom: 40px; }
.proof-head h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.proof-head p { color: var(--gray-700); font-size: 17px; }
.proof-banner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: var(--white); border-radius: var(--radius-card);
  padding: 32px; box-shadow: var(--shadow-card); margin-bottom: 32px;
}
.proof-stat-num { font-size: 32px; font-weight: 800; line-height: 1; }
.proof-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 6px; }
.proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card {
  background: var(--white); border-radius: var(--radius-card); padding: 28px;
  box-shadow: var(--shadow-card);
}
.proof-card-head { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.proof-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #FFD24A, #FFA92B);
  display: grid; place-items: center; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.proof-name { font-weight: 700; font-size: 15px; }
.proof-role { font-size: 12px; color: var(--gray-500); }
.proof-text { font-size: 14px; color: var(--gray-900); line-height: 1.55; }
.proof-stars { color: #FFB800; margin-bottom: 12px; font-size: 14px; }
@media (max-width: 900px) {
  .proof-banner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proof-cards { grid-template-columns: 1fr; }
  .proof-head h2 { font-size: 28px; }
}

/* FAQ */
.faq { padding: 72px 0; background: var(--white); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 40px; }
.faq-head h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.faq-item {
  background: var(--gray-100); border-radius: 16px; margin-bottom: 12px; padding: 4px;
}
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer;
  text-align: left; padding: 18px 24px; font: inherit;
  font-weight: 700; font-size: 16px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--gray-500); transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  padding: 0 24px 18px; color: var(--gray-700); font-size: 15px;
  display: none; line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }
@media (max-width: 768px) { .faq-head h2 { font-size: 28px; } }

/* FINAL CTA */
.final {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--black) 0%, #2A2A2A 100%);
  color: var(--white); text-align: center;
}
.final h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.final h2 span { background: var(--yellow); color: var(--black); padding: 0 12px; border-radius: 10px; }
.final p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 32px; }
.final-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-tg-final {
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 18px 32px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 17px; border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; display: inline-block;
}
.btn-tg-final:hover { background: rgba(255,255,255,0.18); }
@media (max-width: 768px) { .final h2 { font-size: 28px; } }

/* FOOTER */
.footer { padding: 48px 0 32px; background: #1A1A1A; color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer h4 { color: var(--white); font-size: 14px; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 11px; color: rgba(255,255,255,0.5); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   NEW COMPONENTS — v2 redesign
   ============================================================ */

/* Import Manrope from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root { --font: 'Manrope', -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif; }

/* LOGO with real image */
.logo-img {
  width: 36px; height: 36px; border-radius: 8px;
  object-fit: cover; display: block;
}

/* HERO — performer card on right */
.hero-performer {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover); padding: 20px 24px;
  min-width: 260px; max-width: 320px;
}
.hero-performer-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.hero-performer-photo {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.hero-performer-badge {
  font-size: 11px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-performer-name { font-size: 14px; font-weight: 700; }
.hero-performer-meta { font-size: 12px; color: var(--gray-500); }

/* Chain steps in performer card */
.chain-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.chain-step {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--gray-500); padding: 5px 0;
  border-radius: 8px; transition: all 0.3s;
}
.chain-step--done { color: var(--gray-900); }
.chain-step--active {
  color: var(--black); font-weight: 600;
  background: var(--yellow-soft); margin: 0 -8px; padding: 5px 8px;
}
.chain-step-icon {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 10px; margin-top: 1px;
  background: var(--gray-200); color: var(--gray-500);
}
.chain-step--done .chain-step-icon { background: var(--green); color: var(--white); }
.chain-step--active .chain-step-icon { background: var(--yellow); color: var(--black); }

/* Hero grid updated */
.hero-grid-v2 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px; align-items: start;
}
@media (max-width: 960px) {
  .hero-grid-v2 { grid-template-columns: 1fr; }
  .hero-performer { max-width: 100%; }
}

/* BULLETS with + icon */
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-bullet {
  display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700);
}
.hero-bullet-icon {
  flex-shrink: 0; color: var(--yellow-hover); font-weight: 800; font-size: 18px; line-height: 1.3;
}
.hero-bullet strong { color: var(--black); }

/* H1 with DKI slot + highlight span */
.hero-h1 { font-size: 52px; line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.hero-h1 .hero-highlight { background: var(--yellow); padding: 0 8px; border-radius: 8px; display: inline; }
@media (max-width: 900px) { .hero-h1 { font-size: 36px; } }
@media (max-width: 600px) { .hero-h1 { font-size: 28px; } }

/* CHAIN SECTION */
.chain-section { padding: 64px 0; background: var(--white); }
.chain-section-head { text-align: center; margin-bottom: 40px; }
.chain-section-head h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.chain-section-head p { color: var(--gray-700); font-size: 16px; margin-top: 10px; }
.chain-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.chain-step-card {
  background: var(--gray-100); border-radius: 18px; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.chain-step-card-num {
  width: 36px; height: 36px; background: var(--yellow);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 16px; font-weight: 800;
}
.chain-step-card p { font-size: 14px; color: var(--gray-700); }
@media (max-width: 900px) { .chain-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .chain-steps-grid { grid-template-columns: 1fr; } }

/* TARIFFS — per-action pricing */
.pack-price-unit {
  font-size: 13px; color: var(--gray-500); font-weight: 500; margin-bottom: 2px;
}
.pack-price-big {
  font-size: 42px; font-weight: 800; line-height: 1; letter-spacing: -0.03em;
}
.pack-price-small {
  font-size: 13px; color: var(--gray-500); margin-bottom: 20px;
}

/* SOURCE TOGGLE (Реальные люди / Боты) */
.source-toggle {
  display: inline-flex; background: var(--gray-200); border-radius: var(--radius-pill);
  padding: 4px; gap: 4px; margin-bottom: 32px;
}
.source-toggle-btn {
  padding: 10px 20px; border-radius: var(--radius-pill); font-weight: 700;
  font-size: 14px; border: none; cursor: pointer; background: transparent;
  color: var(--gray-700); transition: all 0.15s;
}
.source-toggle-btn.active { background: var(--white); color: var(--black); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* PERFORMERS SECTION */
.performers { padding: 72px 0; background: var(--gray-100); }
.performers-head { text-align: center; margin-bottom: 40px; }
.performers-head h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.performers-head p { color: var(--gray-700); font-size: 16px; margin-top: 10px; }
.performers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.performer-card {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.performer-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
}
.performer-card-body { padding: 16px; }
.performer-card-name { font-weight: 700; font-size: 15px; }
.performer-card-role { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; }
.performer-card-quote { font-size: 13px; color: var(--gray-700); line-height: 1.5; font-style: italic; }
@media (max-width: 900px) { .performers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .performers-grid { grid-template-columns: 1fr; } }

/* HOW IT WORKS — 5 steps */
.how-steps-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1000px) { .how-steps-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .how-steps-5 { grid-template-columns: 1fr; } }

/* FOOTER v2 */
.footer-grid-6 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 32px; }
@media (max-width: 1000px) { .footer-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .footer-grid-6 { grid-template-columns: 1fr 1fr; } }

/* Eyebrow chip */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-soft); padding: 7px 14px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 700;
  margin-bottom: 20px; color: var(--black);
}

/* CTA button primary */
.btn-cta {
  display: inline-block; background: var(--yellow); color: var(--black);
  padding: 18px 32px; border-radius: var(--radius-pill); font-weight: 800;
  font-size: 17px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,227,46,.4); transition: all .15s;
}
.btn-cta:hover { background: var(--yellow-hover); transform: translateY(-1px); }

/* Hint badge for featured pack */
.pack-badge-v2 {
  display: inline-block; background: var(--black); color: var(--yellow);
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 8px;
}
