/* ===================
   DEALRADAR — THEME CSS
   =================== */

/* Variables */
:root {
  --bg: #f7f8f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f2f5;
  --fg: #0f1111;
  --fg-muted: #565d66;
  --accent: #e97425;
  --accent-dim: rgba(233, 116, 37, 0.08);
  --accent-glow: rgba(233, 116, 37, 0.2);
  --border: #e8e8e8;
  --radius: 8px;
  --radius-lg: 16px;
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ===================
   NAVBAR
   =================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 32px;
  height: 32px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-deals-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.2s;
}
.nav-deals-text:hover { color: #c9621e; }

/* ===================
   HERO
   =================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px 80px;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,116,37,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-weight: 600;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
}
.headline-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Radar visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.radar-container {
  position: relative;
  width: 280px;
  height: 280px;
}
.radar-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(233,116,37,0.2));
}
.sweep-arm {
  transform-origin: 140px 140px;
  animation: sweep 4s linear infinite;
}
@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.radar-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: radar-pulse 4s ease-out infinite;
}
@keyframes radar-pulse {
  0% { transform: scale(0.6); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0; }
}

.deal-counter {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
}
.counter-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.counter-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}

/* ===================
   HOW IT WORKS
   =================== */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--fg);
  margin-bottom: 64px;
  line-height: 1.1;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 280px;
  text-align: center;
  transition: background 0.2s;
}
.step:hover { background: var(--bg-card-hover); }
.step-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}
.step-icon svg { width: 100%; height: 100%; }
.step-title {
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  padding: 0 20px;
  opacity: 0.6;
}

/* ===================
   TELEGRAM PREVIEW
   =================== */
.telegram-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px;
}
.telegram-content { }
.telegram-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.telegram-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg);
}
.tf-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Phone mockup */
.telegram-mockup {
  display: flex;
  justify-content: center;
}
.phone-frame {
  background: #1a1a1a;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 40px;
  padding: 12px;
  width: 300px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,184,0,0.1);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #1a1a1a;
  border-radius: 20px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}
.telegram-chat {
  background: #0f0f0f;
  border-radius: 28px;
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--fg);
}
.chat-status {
  font-size: 0.7rem;
  color: #22c55e;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg { display: flex; flex-direction: column; gap: 4px; }
.chat-msg.incoming { align-items: flex-start; }
.msg-bubble {
  background: #1e1e1e;
  border-radius: 14px 14px 14px 4px;
  padding: 10px 12px;
  max-width: 240px;
  border: 1px solid rgba(255,255,255,0.05);
}
.msg-product {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.product-img-placeholder {
  width: 52px;
  height: 52px;
  background: rgba(255,184,0,0.15);
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(255,184,0,0.2);
}
.product-details { flex: 1; }
.product-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-prices {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}
.price-old {
  font-size: 0.65rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.price-new {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}
.price-discount {
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(255,184,0,0.15);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
}
.product-rating {
  font-size: 0.6rem;
  color: var(--fg-muted);
}
.msg-link {
  font-size: 0.68rem;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 600;
}
.msg-time {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  padding-left: 4px;
}

/* ===================
   MONETIZATION
   =================== */
.monetization {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.rev-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.rev-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.rev-card.featured {
  border-color: rgba(255,184,0,0.3);
  background: linear-gradient(135deg, rgba(255,184,0,0.05) 0%, transparent 60%);
}
.rev-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.rev-card-icon svg { width: 100%; height: 100%; }
.rev-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 10px;
}
.rev-card-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.rev-card-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}

.commission-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.commission-header {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 20px;
  background: rgba(255,184,0,0.06);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.commission-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--fg);
}
.commission-row:last-child { border-bottom: none; }
.commission-rate {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}
.commission-disclaimer {
  padding: 12px 20px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ===================
   VISION
   =================== */
.vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px;
}
.vision-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.vp {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vp-marker {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.vp-marker svg { width: 100%; height: 100%; }
.vp-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.vp-text strong { color: var(--fg); }

.vision-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.vs { }
.vs-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.vs-label {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ===================
   CLOSING
   =================== */
.closing {
  padding: 120px 48px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing-accent {
  color: var(--accent);
  font-style: italic;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tag {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ===================
   FOOTER
   =================== */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--fg);
}
.footer-logo {
  width: 24px;
  height: 24px;
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-links {
  font-size: 0.75rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.5;
}

/* ===================
   RESPONSIVE
   =================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding: 80px 32px 60px; }
  .hero-visual { order: -1; }
  .telegram-preview { grid-template-columns: 1fr; gap: 60px; }
  .vision { grid-template-columns: 1fr; gap: 60px; }
  .rev-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 24px 40px; }
  .hero-headline { font-size: 2.5rem; }
  .how-it-works, .telegram-preview, .monetization, .vision, .closing { padding: 60px 24px; }
  .section-headline { font-size: 1.8rem; }
  .steps { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
  .step { max-width: 100%; }
  .rev-cards { grid-template-columns: 1fr; }
  .commission-header, .commission-row { font-size: 0.8rem; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .phone-frame { width: 260px; }
  .closing-headline { font-size: 1.8rem; }
}

/* ===================
   EMAIL SIGNUP SECTION
   =================== */
.email-signup {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}
.email-signup-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.email-signup-headline {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.email-signup-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-top: -12px;
}
.email-signup-social {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: -8px;
}
.email-signup-social strong {
  color: var(--accent);
}
.email-signup-form {
  width: 100%;
  max-width: 480px;
}
.email-signup-row {
  display: flex;
  gap: 10px;
}
.email-signup-input {
  flex: 1;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}
.email-signup-input:focus {
  border-color: var(--accent);
}
.email-signup-btn {
  padding: 13px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.email-signup-btn:hover:not(:disabled) { opacity: 0.88; }
.email-signup-btn:disabled { opacity: 0.6; cursor: default; }
.email-signup-msg {
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.email-signup-msg.success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.email-signup-msg.error {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}
@media (max-width: 600px) {
  .email-signup { padding: 48px 24px; }
  .email-signup-headline { font-size: 1.5rem; }
  .email-signup-row { flex-direction: column; }
  .email-signup-btn { width: 100%; }
}

/* ── Black Friday / Cyber Monday hub styles ─────────────────────────────── */
.bf-hero { padding: 60px 48px 56px; border-bottom: 2px solid rgba(233,116,37,0.3); }
.bf-hero-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.bf-eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #e97425; margin-bottom: 16px; background: rgba(233,116,37,0.12); padding: 4px 14px; border-radius: 20px; border: 1px solid rgba(233,116,37,0.25); }
.bf-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.8rem); color: #fff; margin: 0 0 16px; line-height: 1.15; letter-spacing: -0.02em; }
.bf-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 0 32px; }
.bf-countdown-wrap { margin-bottom: 32px; }
.bf-countdown-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.bf-live-label { color: #4ade80 !important; }
.bf-countdown { display: flex; align-items: center; justify-content: center; gap: 12px; }
.bf-unit { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 20px; min-width: 76px; }
.bf-num { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: #e97425; line-height: 1; letter-spacing: -0.03em; }
.bf-unit-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-top: 4px; }
.bf-sep { font-size: 1.6rem; font-weight: 900; color: rgba(233,116,37,0.5); margin-top: -12px; }
.bf-email-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto 8px; }
.bf-email-input { flex: 1; padding: 13px 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; font-size: 0.95rem; color: #fff; outline: none; }
.bf-email-input::placeholder { color: rgba(255,255,255,0.35); }
.bf-email-input:focus { border-color: #e97425; background: rgba(255,255,255,0.1); }
.bf-email-btn { padding: 13px 22px; background: #e97425; color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 0.9rem; border: none; border-radius: 10px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.bf-email-btn:hover { background: #c9621e; }
.bf-email-fine { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin: 0; }
.bf-signup-error { font-size: 0.8rem; color: #f87171; margin: 4px 0 0; }
.bf-signup-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25); color: #4ade80; padding: 14px 20px; border-radius: 10px; font-size: 0.9rem; font-weight: 600; max-width: 500px; margin: 0 auto 16px; }
.bf-cat-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 28px; }
.bf-cat-chip { padding: 7px 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.8); text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.bf-cat-chip:hover { background: rgba(233,116,37,0.15); border-color: rgba(233,116,37,0.4); color: #e97425; }
.bf-badge-legend { background: rgba(233,116,37,0.06); border-bottom: 1px solid var(--border); padding: 12px 48px; }
.bf-legend-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.bf-legend-title { font-size: 0.78rem; font-weight: 700; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-right: 4px; }
.bf-badge-item { font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 6px; }
.badge-lowest { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.badge-matches { background: rgba(250,204,21,0.12); color: #facc15; border: 1px solid rgba(250,204,21,0.2); }
.badge-inflated { background: rgba(248,113,113,0.12); color: #f87171; border: 1px solid rgba(248,113,113,0.2); }
.badge-none { background: rgba(150,150,150,0.1); color: #999; border: 1px solid rgba(150,150,150,0.15); }
.bf-deals-section, .bf-predictions-section, .bf-cats-section, .bf-faq-section, .bf-cm-link-section { padding: 60px 48px; }
.bf-deals-section { background: var(--bg); }
.bf-predictions-section { background: rgba(96,165,250,0.03); border-top: 1px solid var(--border); }
.bf-cats-section { background: var(--bg); border-top: 1px solid var(--border); }
.bf-faq-section { background: var(--bg-card); border-top: 1px solid var(--border); }
.bf-cm-link-section { background: var(--bg); border-top: 1px solid var(--border); padding: 40px 48px; }
.bf-deals-inner { max-width: 1200px; margin: 0 auto; }
.bf-section-title { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--fg); margin: 0 0 8px; letter-spacing: -0.01em; }
.bf-section-sub { font-size: 0.9rem; color: var(--fg-muted); margin: 0 0 32px; line-height: 1.6; }
.bf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bf-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.bf-card:hover { border-color: rgba(233,116,37,0.3); box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.bf-card-img-wrap { position: relative; background: var(--bg); height: 140px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); overflow: hidden; text-decoration: none; }
.bf-card-img { width: 100%; height: 100%; object-fit: cover; }
.bf-card-img-ph { width: 52px; height: 52px; border-radius: 10px; background: rgba(233,116,37,0.08); border: 1px solid rgba(233,116,37,0.15); display: flex; align-items: center; justify-content: center; position: absolute; }
.bf-card-discount { position: absolute; top: 10px; right: 10px; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 0.75rem; padding: 3px 8px; border-radius: 6px; }
.bf-card-body { padding: 14px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.bf-card-name { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--fg); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }
.bf-card-prices { display: flex; align-items: baseline; gap: 8px; }
.bf-card-orig { font-size: 0.78rem; color: var(--fg-muted); text-decoration: line-through; }
.bf-card-price { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; color: var(--accent); letter-spacing: -0.02em; }
.bf-real-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.bf-badge-lowest { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.bf-badge-matches_bf { background: rgba(250,204,21,0.12); color: #facc15; border: 1px solid rgba(250,204,21,0.2); }
.bf-badge-inflated { background: rgba(248,113,113,0.12); color: #f87171; border: 1px solid rgba(248,113,113,0.2); }
.bf-card-cta { display: block; width: 100%; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 0.8rem; padding: 10px; border-radius: var(--radius); text-align: center; text-decoration: none; transition: background 0.2s; margin-top: auto; box-sizing: border-box; }
.bf-card-cta:hover { background: #c9621e; }
.bf-empty { text-align: center; padding: 48px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.bf-empty p { color: var(--fg-muted); margin: 0 0 20px; }
.bf-pred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bf-pred-card { background: var(--bg-card); border: 1px solid rgba(96,165,250,0.2); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.bf-pred-card:hover { border-color: rgba(96,165,250,0.5); transform: translateY(-2px); }
.bf-pred-img { width: 100%; height: 100px; object-fit: cover; border-bottom: 1px solid rgba(96,165,250,0.15); }
.bf-pred-body { padding: 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.bf-pred-name { font-size: 0.78rem; font-weight: 700; color: var(--fg); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bf-pred-prices { display: flex; align-items: baseline; gap: 8px; }
.bf-pred-cur { font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: var(--accent); }
.bf-pred-low { font-size: 0.7rem; color: var(--fg-muted); }
.bf-pred-pct { font-size: 0.72rem; font-weight: 700; color: #60a5fa; background: rgba(96,165,250,0.1); border-radius: 4px; padding: 2px 6px; display: inline-block; }
.bf-pred-trend { font-size: 0.7rem; color: #4ade80; }
.bf-cat-section { margin-bottom: 48px; }
.bf-cat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.bf-cat-title { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; color: var(--fg); margin: 0; }
.bf-cat-more { font-size: 0.82rem; font-weight: 700; color: var(--accent); text-decoration: none; border: 1px solid var(--accent); border-radius: 6px; padding: 5px 12px; transition: background 0.2s, color 0.2s; }
.bf-cat-more:hover { background: var(--accent); color: #fff; }
.bf-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bf-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
.bf-faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.bf-faq-q { padding: 18px 20px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--fg); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bf-faq-q::-webkit-details-marker { display: none; }
.bf-faq-q::after { content: '+'; font-size: 1.2rem; color: var(--accent); flex-shrink: 0; }
details[open] .bf-faq-q::after { content: '\2212'; }
.bf-faq-a { padding: 0 20px 18px; margin: 0; font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }
.bf-cm-link-card { background: var(--bg-card); border: 1px solid rgba(96,165,250,0.2); border-radius: var(--radius-lg); padding: 28px 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.bf-cm-link-icon { font-size: 2.5rem; }
.bf-cm-link-body { flex: 1; min-width: 200px; }
.bf-cm-link-title { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; color: var(--fg); margin: 0 0 6px; }
.bf-cm-link-desc { font-size: 0.88rem; color: var(--fg-muted); margin: 0; }
.bf-cm-link-btn { padding: 12px 22px; background: rgba(96,165,250,0.15); border: 1px solid rgba(96,165,250,0.3); border-radius: 10px; font-family: var(--font-display); font-weight: 900; font-size: 0.85rem; color: #60a5fa; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.bf-cm-link-btn:hover { background: rgba(96,165,250,0.25); }
@media (max-width: 1024px) { .bf-grid, .bf-pred-grid, .bf-cat-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===================
   PRICE TRUST BADGES — shared across all deal card contexts
   =================== */
.price-trust-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
/* 🏆 Lowest in 90 days — bold green */
.ptb-green-bold {
  background: rgba(74,222,128,0.18);
  color: #22c55e;
  border: 1px solid rgba(74,222,128,0.35);
  font-weight: 900;
}
/* 🏆 Lowest in 30 days — standard green */
.ptb-green {
  background: rgba(74,222,128,0.12);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.2);
}
/* 📉 Lower than last month — teal */
.ptb-teal {
  background: rgba(45,212,191,0.12);
  color: #2dd4bf;
  border: 1px solid rgba(45,212,191,0.25);
}
/* ⚡ Just dropped — orange */
.ptb-orange {
  background: rgba(251,146,60,0.12);
  color: #fb923c;
  border: 1px solid rgba(251,146,60,0.25);
}
@media (max-width: 768px) {
  .bf-hero { padding: 40px 24px 44px; }
  .bf-badge-legend { padding: 12px 24px; }
  .bf-deals-section, .bf-predictions-section, .bf-cats-section, .bf-faq-section, .bf-cm-link-section { padding: 48px 24px; }
  .bf-grid, .bf-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bf-pred-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-unit { min-width: 60px; padding: 10px 14px; }
  .bf-num { font-size: 1.5rem; }
  .bf-email-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .bf-grid, .bf-cat-grid { grid-template-columns: 1fr; }
  .bf-pred-grid { grid-template-columns: 1fr; }
  .bf-cm-link-card { flex-direction: column; text-align: center; }
}