/* ============================================================
   BestlifeBots – Landing Page Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --brand-400:  #7c5cfc;
  --brand-500:  #6438f5;
  --brand-600:  #5227d4;
  --accent-400: #22d3ee;
  --accent-500: #06b6d4;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-900:   #0f172a;
  --gray-950:   #020617;
  --surface:    #0f172a;
  --surface-card: #1e293b;
  --border:     #2d3f55;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: #fff; color: var(--gray-900); -webkit-font-smoothing: antialiased; }
a { color: var(--brand-500); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand-logo { width: 36px; height: 36px; border-radius: 10px; overflow: hidden; }
.nav-brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: -.02em; }
.nav-brand-name span { color: var(--brand-400); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.65); transition: color .15s; }
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-signin {
  font-size: .875rem; font-weight: 600;
  color: rgba(255,255,255,.7); transition: color .15s; padding: 8px 16px;
}
.nav-signin:hover { color: #fff; }
.nav-cta {
  padding: 9px 22px;
  background: var(--brand-500);
  color: #fff;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 700;
  border: 2px solid var(--brand-500);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 7px;
}
.nav-cta:hover {
  background: #7c5cfc;
  border-color: #7c5cfc;
  color: #fff;
  box-shadow: 0 0 28px rgba(100,56,245,.4);
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--gray-950);
  padding: 140px 28px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .35;
}
.hero-bg-orb-1 { width: 500px; height: 500px; background: var(--brand-500); top: -100px; left: -100px; }
.hero-bg-orb-2 { width: 400px; height: 400px; background: var(--accent-500); bottom: -80px; right: -60px; }
.hero-bg-orb-3 { width: 300px; height: 300px; background: #8b5cf6; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(100,56,245,.15);
  border: 1px solid rgba(100,56,245,.35);
  color: #a5b4fc;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 32px;
  position: relative;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #22d3ee; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(34,211,238,.7);} 70%{box-shadow:0 0 0 7px rgba(34,211,238,0);} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  position: relative;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--brand-400) 0%, var(--accent-400) 60%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.55);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.65;
  position: relative;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 70px;
  position: relative;
}
.hero-btn-primary {
  padding: 15px 38px;
  background: var(--brand-500);
  color: #fff;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-display);
  border: 2px solid var(--brand-500);
  cursor: pointer;
  transition: all .25s;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 0 40px rgba(100,56,245,.3);
}
.hero-btn-primary:hover {
  background: #7c5cfc; border-color: #7c5cfc;
  color: #fff;
  box-shadow: 0 0 60px rgba(100,56,245,.5);
  transform: translateY(-2px) scale(1.02);
}
.hero-btn-secondary {
  padding: 15px 32px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 9px;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }

/* Code preview card */
.hero-code-card {
  display: inline-block;
  background: #020617;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 22px 28px;
  text-align: left;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(100,56,245,.15);
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

.code-dots { display: flex; gap: 6px; margin-bottom: 16px; }
.code-dots span { width: 12px; height: 12px; border-radius: 50%; }
.code-dots .red   { background: #ff5f57; }
.code-dots .yellow{ background: #febc2e; }
.code-dots .green { background: #28c840; }
.code-filename    { font-size: .7rem; color: rgba(255,255,255,.3); margin-left: auto; font-family: monospace; }

.code-content { font-family: 'Courier New', monospace; font-size: .8rem; line-height: 1.8; }
.c-comment { color: #475569; }
.c-tag     { color: #f472b6; }
.c-attr    { color: #fde68a; }
.c-val     { color: #86efac; }
.c-keyword { color: #93c5fd; }

/* ── LOGOS BAR ────────────────────────────────────────────── */
.logos-bar {
  background: #fff;
  padding: 28px 28px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}
.logos-bar-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}
.logos-bar-items {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 32px;
  opacity: .45;
}
.logos-bar-items span {
  font-size: .875rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: -.01em;
}

/* ── AI PROVIDERS STRIP ───────────────────────────────────── */
.ai-strip {
  background: var(--gray-950);
  padding: 36px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ai-strip-label { font-size: .75rem; color: rgba(255,255,255,.35); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px; font-weight: 600; }
.ai-providers { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.ai-provider-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  transition: all .2s;
}
.ai-provider-item:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.ai-provider-item img { width: 24px; height: 24px; object-fit: contain; }
.ai-provider-item span { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.7); }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 100px 28px; }
.section-dark { background: var(--gray-950); }
.section-gray { background: #f8fafc; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(100,56,245,.1);
  color: var(--brand-400);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(100,56,245,.25);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title.dark { color: #fff; }
.section-title.light { color: var(--gray-900); }
.section-sub { font-size: 1.05rem; color: rgba(255,255,255,.5); max-width: 540px; line-height: 1.65; }
.section-sub.light { color: var(--gray-500); }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px;
  transition: all .25s;
}
.feature-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(100,56,245,.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feature-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; font-family: var(--font-display); }
.feature-desc  { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.step { text-align: center; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--brand-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-display);
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(100,56,245,.4);
}
.step-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; font-family: var(--font-display); }
.step-desc  { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.65; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.pricing-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all .2s;
}
.pricing-card:hover { border-color: rgba(100,56,245,.3); transform: translateY(-2px); }
.pricing-card.popular {
  background: rgba(100,56,245,.12);
  border-color: var(--brand-400);
  box-shadow: 0 0 40px rgba(100,56,245,.2);
}
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand-500);
  color: #fff; padding: 4px 16px;
  border-radius: 999px; font-size: .7rem; font-weight: 800;
  white-space: nowrap; letter-spacing: .05em; text-transform: uppercase;
}
.pricing-name  { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }
.pricing-price sup  { font-size: 1.25rem; vertical-align: super; font-weight: 700; }
.pricing-price span { font-size: .9rem; color: rgba(255,255,255,.35); font-weight: 400; }
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 20px 0; }
.pricing-features { flex: 1; margin-bottom: 24px; }
.pricing-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; color: rgba(255,255,255,.6);
  padding: 5px 0;
}
.pricing-features li i { color: var(--brand-400); font-size: .8rem; flex-shrink: 0; }
.pricing-btn {
  display: block; width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-size: .9rem; font-weight: 700;
  text-align: center;
  transition: all .2s;
  cursor: pointer; border: none;
}
.pricing-btn-primary {
  background: var(--brand-500); color: #fff;
  box-shadow: 0 0 20px rgba(100,56,245,.3);
}
.pricing-btn-primary:hover { background: #7c5cfc; color: #fff; box-shadow: 0 0 35px rgba(100,56,245,.5); transform: translateY(-1px); }
.pricing-btn-outline {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12) !important;
}
.pricing-btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* CTA Band */
.cta-section {
  background: linear-gradient(135deg, var(--brand-500) 0%, #8b5cf6 50%, var(--accent-500) 100%);
  padding: 80px 28px;
  text-align: center;
}
.cta-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -.03em; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.cta-btn {
  padding: 16px 44px;
  background: #fff;
  color: var(--brand-600);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  border: none;
}
.cta-btn:hover { transform: translateY(-2px) scale(1.02); color: var(--brand-700); box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.cta-note { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 16px; }

/* Footer */
.footer {
  background: var(--gray-950);
  border-top: 1px solid var(--border);
  padding: 50px 28px 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand-logo { width: 32px; height: 32px; border-radius: 8px; overflow: hidden; }
.footer-brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; }
.footer-brand-name span { color: var(--brand-400); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.35); line-height: 1.6; }
.footer-links h4 { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links ul li a { font-size: .875rem; color: rgba(255,255,255,.4); transition: color .15s; display: block; padding: 3px 0; }
.footer-links ul li a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.25); }
.footer-powered { font-size: .8rem; color: rgba(255,255,255,.25); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 120px 20px 80px; }
  .section { padding: 70px 20px; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-code-card { padding: 18px 20px; }
}
