/* LeadHot — Theme CSS */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0C0C0E;
  --surface: #141416;
  --surface-2: #1C1C1F;
  --border: #2A2A2E;
  --text: #F0EDE6;
  --text-muted: #8A8890;
  --accent: #FF5722;
  --accent-dim: rgba(255, 87, 34, 0.12);
  --accent-glow: rgba(255, 87, 34, 0.25);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1100px;
  --section-pad: 100px 24px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-logo::after {
  content: '.';
  color: var(--accent);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 680px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-top: 16px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 87, 34, 0.25);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Lead Preview Card */
.hero-cta-area { display: flex; justify-content: center; }

.lead-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 0 0 1px rgba(255,87,34,0.08), 0 24px 48px rgba(0,0,0,0.5), 0 0 80px var(--accent-glow);
}

.lpc-header {
  background: linear-gradient(135deg, rgba(255,87,34,0.15), rgba(255,87,34,0.05));
  border-bottom: 1px solid rgba(255,87,34,0.15);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lpc-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lpc-badge {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lpc-body { padding: 18px; }

.lpc-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.lpc-row:last-child { border-bottom: none; }

.lpc-row span:first-child { color: var(--text-muted); }
.lpc-row span:last-child { font-weight: 600; color: var(--text); }

.lpc-footer {
  padding: 14px 18px;
  background: var(--surface-2);
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--border);
}

.lpc-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.lpc-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Hero Background Art */
.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.art-ring {
  position: absolute;
  border: 1px solid rgba(255, 87, 34, 0.07);
  border-radius: 50%;
}

.art-ring-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.art-ring-2 { width: 900px; height: 900px; top: -350px; right: -300px; }
.art-ring-3 { width: 1200px; height: 1200px; top: -500px; right: -450px; }

.art-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 80% 50%, black, transparent);
}

/* === DIFFERENTIATORS === */
.differentiators {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.diff-card {
  background: var(--bg);
  padding: 48px 44px;
  transition: background 0.2s;
}

.diff-card:hover { background: var(--surface); }

.diff-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.diff-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.diff-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === PRICING === */
.pricing {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.price-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: rgba(255,87,34,0.3);
  transform: translateY(-2px);
}

.price-card-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255,87,34,0.06) 0%, var(--surface-2) 100%);
}

.pc-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pc-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
}

.pc-price strong { color: var(--text); }

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pc-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 50%;
  margin-top: 2px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23FF5722' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pc-popular {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 24px;
  font-style: italic;
}

/* === PROMISE === */
.promise {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.promise-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.promise-left p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.promise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.ptag {
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.objection-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.obj-header {
  padding: 12px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.obj-quote {
  padding: 24px 24px 16px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  font-style: italic;
}

.obj-response {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.test-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.test-card:hover {
  border-color: rgba(255, 87, 34, 0.25);
  transform: translateY(-2px);
}

.test-stars {
  display: flex;
  gap: 4px;
}

.test-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.test-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.test-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 87, 34, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.test-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.test-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.test-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === CLOSING === */
.closing {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.closing .container { max-width: 760px; }

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.closing-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

.closing-vibe {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vibe-tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.footer-logo::after { content: '.'; color: var(--accent); }

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 28px;
}

.sep { color: var(--border); }

.footer-legal {
  color: var(--border);
  font-size: 0.75rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-headline { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-cta-area { justify-content: flex-start; }

  .diff-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .promise-layout { grid-template-columns: 1fr; gap: 40px; }

  .hero-bg-art { display: none; }
  .nav { padding: 16px 24px; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .hero { padding: 120px 24px 60px; }
  .closing { padding: 80px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep { display: none; }
  .diff-card { padding: 32px 28px; }
}
