/*
 * LeadFreak — Shared Brand CSS
 * Used across all static pages for consistent design.
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --amber: #f59e0b;
  --red: #ef4444;
  --dark: #050507;
  --card: rgba(15, 23, 42, 0.7);
  --bg-panel: rgba(3, 7, 18, 0.6);
  --glass-blur: blur(20px);
  --primary-glow: rgba(245, 158, 11, 0.4);
  --border: rgba(255,255,255,0.07);
  --text: #e2e8f0;
  --muted: #64748b;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--amber); text-decoration: none; }

/* ── Utility Classes ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container { max-width: 1180px; margin: 0 auto; }

.section { padding: 96px 24px; }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; line-height: 1.15; margin-bottom: 20px;
}

.section-sub {
  font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 600px;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 800; font-size: 15px; font-family: inherit;
  cursor: pointer; transition: all .2s; border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(245,158,11,.35);
}

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(5,5,7,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 22px; font-weight: 900; color: #fff;
  letter-spacing: -0.5px; text-decoration: none;
}

.logo-bolt { color: var(--amber); }
.logo-red { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: color .15s; text-decoration: none;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  color: #fff !important; padding: 9px 20px; border-radius: 8px;
  font-weight: 800 !important;
}

.nav-hamburger {
  display: none; background: none; border: none;
  color: #fff; font-size: 22px; cursor: pointer;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: #030305; border-top: 1px solid var(--border);
  padding: 60px 40px 24px;
}

.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 320px;
}

.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.footer-links div {
  display: flex; flex-direction: column; gap: 10px;
}

.footer-links strong {
  font-size: 12px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}

.footer-links a {
  font-size: 13px; color: var(--muted); transition: color .15s;
}
.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted); text-align: center;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--amber); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(245,158,11,.12) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25);
  border-radius: 100px; padding: 7px 16px;
  font-size: 12px; font-weight: 700; color: var(--amber);
  letter-spacing: 1px; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--amber);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,158,11,.5)} 50%{box-shadow:0 0 0 6px transparent} }
.hero h1 {
  font-size: clamp(40px, 6vw, 82px); font-weight: 900;
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px); color: var(--muted);
  max-width: 620px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; margin-top: 72px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 36px; font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; }

/* ── Cards ─────────────────────────────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px; margin-top: 56px;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  backdrop-filter: var(--glass-blur);
  border-radius: 16px; padding: 32px; transition: all .3s;
  position: relative; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.card:hover {
  border-color: rgba(245,158,11,.6); transform: translateY(-4px);
  box-shadow: 0 15px 40px var(--primary-glow);
}
.card-icon { font-size: 36px; margin-bottom: 20px; }
.card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Steps ─────────────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 28px; left: 16%; right: 16%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(245,158,11,.4), transparent);
}
.step { text-align: center; padding: 24px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff; margin: 0 auto 20px;
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Pricing ───────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.plan {
  background: var(--card); border: 1px solid var(--border);
  backdrop-filter: var(--glass-blur); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 20px; padding: 36px; position: relative; transition: all .3s;
}
.plan.featured {
  border-color: rgba(245,158,11,.6);
  background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(239,68,68,.05));
  box-shadow: 0 15px 50px var(--primary-glow);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff;
  font-size: 11px; font-weight: 800; padding: 5px 16px;
  border-radius: 100px; white-space: nowrap;
}
.plan-name {
  font-size: 14px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.plan-price { font-size: 48px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.plan-price sup { font-size: 22px; font-weight: 700; color: var(--amber); vertical-align: super; }
.plan-price sub { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 32px;
}
.plan-features li { font-size: 14px; display: flex; align-items: flex-start; gap: 10px; }
.plan-features li::before { content: '✓'; color: var(--amber); font-weight: 800; flex-shrink: 0; }

/* ── Comparison Table ──────────────────────────────────────────── */
.comparison-table {
  width: 100%; max-width: 1000px; margin: 0 auto; border-collapse: collapse;
  background: var(--card); border: 1px solid var(--border);
  backdrop-filter: var(--glass-blur); border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.comparison-table th, .comparison-table td {
  padding: 18px 24px; text-align: center; border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: rgba(255,255,255,.03); font-size: 16px; font-weight: 800; color: #fff;
  border-bottom: 2px solid var(--border);
}
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 700; color: #fff; }
.comparison-table td { color: var(--muted); font-size: 15px; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td.check { color: var(--amber); font-weight: 900; font-size: 18px; }
.comparison-table td.cross { color: rgba(239,68,68,.5); font-weight: 900; font-size: 14px; }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.testimonial {
  background: var(--bg-panel); border: 1px solid var(--border);
  backdrop-filter: var(--glass-blur); box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 16px; padding: 28px;
}
.testimonial-text {
  font-size: 15px; color: var(--text); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: #fff; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ── CTA Band ──────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(239,68,68,.08));
  border-top: 1px solid rgba(245,158,11,.15);
  border-bottom: 1px solid rgba(245,158,11,.15);
  padding: 80px 24px; text-align: center;
}

/* ── Contact Form ──────────────────────────────────────────────── */
.contact-form {
  background: var(--bg-panel); border: 1px solid var(--border);
  backdrop-filter: var(--glass-blur); box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 20px; padding: 48px; max-width: 600px; margin: 56px auto 0; text-align: left;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-size: 14px; font-family: inherit; transition: .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-group textarea { height: 140px; resize: vertical; }

/* ── Legal Pages ───────────────────────────────────────────────── */
.legal-page {
  max-width: 800px; margin: 0 auto; padding: 120px 24px 80px;
}
.legal-page h1 { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.legal-page .updated { font-size: 13px; color: var(--muted); margin-bottom: 48px; }
.legal-page h2 { font-size: 20px; font-weight: 800; margin: 40px 0 16px; color: var(--amber); }
.legal-page p, .legal-page li {
  font-size: 15px; color: #b0bec5; line-height: 1.8; margin-bottom: 14px;
}
.legal-page ul, .legal-page ol { padding-left: 24px; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(5,5,7,.98); flex-direction: column;
    align-items: center; padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .steps, .pricing-grid, .testimonials { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { gap: 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}
