/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

@media (min-width: 768px) {
  .hero { padding: 120px 0 80px; }
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,92,197,0.07) 0%, transparent 65%);
  top: -240px; right: -200px;
  opacity: 1;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,92,197,0.05) 0%, transparent 65%);
  bottom: -160px; left: -120px;
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-base));
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  position: relative; z-index: 1;
}

@media (min-width: 768px) {
  .hero::after { display: none; }
}

/* ===== HERO INNER LAYOUT ===== */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    gap: 72px;
    align-items: center;
    justify-content: space-between;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
  min-width: 0;
}

/* ===== HERO VISUAL — PHONE ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  order: 1;
  /* Peek effect: телефон виглядає знизу, трохи обрізаний */
  margin-bottom: -60px;
  overflow: hidden;
  padding-top: 8px;
}

.hero-visual .hero-bunny-stage {
  position: relative;
}

/* На мобільному телефон менший і "виглядає знизу" */
.hero-visual .hero-phone {
  width: 220px;
  filter: drop-shadow(0 -8px 32px rgba(58,92,197,0.18));
}

@media (min-width: 768px) {
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    width: 320px;
    flex-shrink: 0;
    margin-bottom: 0;
    overflow: visible;
    padding-top: 0;
  }
  .hero-visual .hero-phone {
    width: 300px;
    filter: none;
  }
}

.hero-bunny-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bunny-halo {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,92,197,0.07) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-bunny-halo {
    width: 300px;
    height: 300px;
  }
}

.hero-phone {
  width: 240px;
  height: auto;
  animation: phoneFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-phone {
    width: 300px;
  }
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  40%       { transform: translateY(-12px) rotate(0.5deg); }
  70%       { transform: translateY(-6px) rotate(-0.5deg); }
}

/* ===== HERO BADGE ===== */
.hero-badge { display: flex; }
.hero-badge .badge {
  font-size: 11px;
  padding: 5px 12px;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

/* ===== HERO TITLE ===== */
.hero-title {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--text-primary);
}
.hero-title .line-thin {
  font-weight: 300;
  color: var(--text-secondary);
  display: block;
  font-size: 0.85em;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) { .hero-title { font-size: 72px; } }

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #090C1C 0%, #3A5CC5 50%, #090C1C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: titleShine 6s ease infinite;
}

@keyframes titleShine {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 380px;
  font-weight: 400;
}
.hero-subtitle strong { color: var(--text-primary); font-weight: 700; }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 480px) {
  .hero-cta { flex-direction: row; }
  .hero-cta .btn { flex: 1; }
}
@media (min-width: 768px) {
  .hero-cta { flex-direction: column; max-width: 360px; }
  .hero-cta .btn { flex: unset; }
}

/* ===== TRUST ROW ===== */
.hero-trust {
  display: flex;
  align-items: center;
  padding-top: 4px;
}
.trust-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 3px;
}
.trust-num {
  font-size: 18px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.trust-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.trust-divider {
  width: 1px; height: 28px;
  background: linear-gradient(180deg, transparent, rgba(9,12,28,0.12), transparent);
}

/* ===== BADGE LIVE ===== */
.badge-live {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* ===== TICKER MARQUEE ===== */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(4,4,4,0.80);
  padding: 11px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-item b {
  font-style: normal;
  color: var(--text-secondary);
  font-weight: 800;
  margin-left: 5px;
}
.ticker-sep {
  color: rgba(255,255,255,0.12);
  font-size: 8px;
  flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 40px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
  opacity: 0.85;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: rgba(100,130,255,0.6);
  flex-shrink: 0;
}

.section-title {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0;
}
@media (min-width: 768px) { .section-title { font-size: 40px; } }

/* ===== HOW IT WORKS ===== */
.how-section { padding-top: 0; }

.steps-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.32s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
}
.step-row:hover { padding-left: 8px; }

@media (min-width: 768px) {
  .step-row {
    grid-template-columns: 64px 1fr 200px;
    align-items: center;
    gap: 40px;
    padding: 36px 0;
  }
}

.step-row-num {
  font-size: 11px; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.10em;
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s;
  text-transform: uppercase;
}
.step-row:hover .step-row-num { color: var(--gold); }

.step-row-title {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 5px;
}
@media (min-width: 768px) { .step-row-title { font-size: 23px; } }

.step-row-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.75;
}

.step-row-end { display: none; }
@media (min-width: 768px) {
  .step-row-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.step-tag {
  font-size: 12px; font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ===== STORES SECTION ===== */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .stores-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  transition: all 0.22s ease;
  cursor: pointer;
  text-decoration: none; color: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.store-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 12px 32px rgba(9,12,28,0.10);
}

.store-logo {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  color: rgba(255,255,255,0.8);
}

.store-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.store-cashback {
  font-size: 20px; font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.store-cashback-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.stores-cta { display: flex; justify-content: center; }

/* ===== STATS ===== */
.stats-section { padding: 80px 0; position: relative; }

.stats-statement {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 768px) {
  .stats-statement {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

.stats-statement-left { flex: 1; }

.stats-big-num {
  font-size: 64px; font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) { .stats-big-num { font-size: 96px; } }

.stats-big-label {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.65; max-width: 240px;
}

.stats-statement-right {
  flex-shrink: 0;
  min-width: 220px;
}

.stat-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
}
.stat-line-div { height: 1px; background: var(--border); }

.stat-line-num {
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 72px;
}
@media (min-width: 768px) { .stat-line-num { font-size: 30px; } }

.stat-line-label {
  font-size: 13px; color: var(--text-secondary);
  font-weight: 500; line-height: 1.4;
}

/* ===== REVIEWS ===== */
.reviews-feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .reviews-feature { flex-direction: row; gap: 20px; align-items: stretch; }
}

.review-featured {
  flex: 1.5;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.25s;
}
.review-featured:hover { border-color: rgba(255,255,255,0.16); }

.rfeat-quote {
  font-size: 80px; line-height: 0.7;
  color: rgba(255,255,255,0.08);
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 18px;
  user-select: none;
}

.rfeat-text {
  font-size: 17px; line-height: 1.8;
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: -0.01em;
  flex: 1;
  margin-bottom: 28px;
}
@media (min-width: 768px) { .rfeat-text { font-size: 18px; } }

.rfeat-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.rfeat-author-info { display: flex; flex-direction: column; gap: 3px; }
.rfeat-name { font-size: 14px; font-weight: 700; }
.rfeat-meta { font-size: 12px; color: var(--text-muted); }

.review-avatar-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  color: rgba(255,255,255,0.8);
}

.reviews-mini-pair {
  display: flex; flex-direction: column; gap: 16px;
  flex: 1;
}

.review-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px;
  flex: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 0.22s;
  display: flex; flex-direction: column;
}
.review-mini:hover { border-color: var(--border-bright); }

.rmini-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.rmini-name  { font-size: 13px; font-weight: 700; }
.rmini-stars { font-size: 11px; color: var(--text-secondary); letter-spacing: 1px; margin-top: 1px; }
.rmini-amount { margin-left: auto; font-size: 13px; font-weight: 800; color: var(--green); white-space: nowrap; }
.rmini-text { font-size: 13px; color: var(--text-secondary); line-height: 1.72; flex: 1; }

/* ===== CTA BOTTOM ===== */
.cta-section {
  background: #090C1C;
  overflow: hidden;
  position: relative;
}

.cta-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  position: relative;
  box-shadow: none;
}

.cta-orb {
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(58,92,197,0.30) 0%, transparent 70%);
  border-radius: 50%;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-card .cta-title { color: #FFFFFF; }
.cta-card .cta-subtitle { color: rgba(255,255,255,0.60); margin-bottom: 36px; }

.cta-card .btn-gold {
  background: #FFFFFF;
  color: #090C1C;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.cta-card .btn-gold:hover {
  background: #EEF1FF;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
  transform: translateY(-2px);
}
.cta-card .btn-gold::after { display: none; }

.cta-title {
  font-size: 32px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 14px; position: relative;
}
@media (min-width: 768px) { .cta-title { font-size: 56px; } }

.cta-subtitle {
  font-size: 15px; color: var(--text-secondary);
  margin-bottom: 32px; position: relative;
  max-width: 340px; margin-left: auto; margin-right: auto;
  line-height: 1.75;
}

.cta-card .btn { position: relative; }

/* ===== FOOTER ===== */
.footer {
  padding: 28px 0;
  background: #090C1C;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-logo { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; color: #FFFFFF; }
.footer-logo span { color: rgba(255,255,255,0.40); }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.70); }

.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ===== GOLD LINE ===== */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(9,12,28,0.08) 30%, rgba(9,12,28,0.14) 50%, rgba(9,12,28,0.08) 70%, transparent 100%);
  margin-bottom: 0;
}
/* Inside dark sections the gold-line uses white tones */
.cta-section .gold-line,
.footer .gold-line {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.06) 70%, transparent 100%);
}
