/* ── TAYO BOT FYI — Landing Page Styles ─────────────────── */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #060d17;
  color: #e2e8f0;
  min-height: 100vh;
}

/* ── Top Nav ─────────────────────────────────────────────── */
.top-nav {
  background: #0a0e1a;
  border-bottom: 1px solid #1f2937;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-nav .logo {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-nav .logo span { color: #7c3aed; }
.top-nav .nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top-nav .nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}
.top-nav .nav-links a:hover { color: #c084fc; }
.top-nav .nav-links .btn-sm {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c084fc;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.top-nav .nav-links .btn-sm:hover { background: rgba(124, 58, 237, 0.12); }

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 13, 23, 0) 100%);
  padding: 80px 40px 60px;
  text-align: center;
}
.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section h1 .gradient {
  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section .subtitle {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-section .btn-hero {
  padding: 14px 36px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-section .btn-hero.primary {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.hero-section .btn-hero.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}
.hero-section .btn-hero.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #c084fc;
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.hero-section .btn-hero.secondary:hover {
  background: rgba(124, 58, 237, 0.1);
}

/* ── Partners ──────────────────────────────────────────────── */
.partners {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.partners .partner-logo {
  font-size: 12px;
  color: #64748b;
  padding: 8px 16px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.4);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── Products Section ──────────────────────────────────────── */
.products-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.products-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.products-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.products-section .section-header p {
  color: #94a3b8;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
}
.product-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.product-card:hover::before { opacity: 1; }
.product-card .card-icon { font-size: 40px; margin-bottom: 16px; }
.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card .card-link {
  font-size: 12px;
  color: #c084fc;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.product-card:hover .card-link { gap: 10px; }
.product-card .tag {
  display: inline-block;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.3px;
}
.tag-free {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.tag-core {
  background: rgba(124, 58, 237, 0.12);
  color: #c084fc;
  border: 1px solid rgba(124, 58, 237, 0.2);
}
.tag-ai {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* ── Stats Section ─────────────────────────────────────────── */
.stats-section {
  padding: 60px 40px;
  background: rgba(124, 58, 237, 0.04);
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-item .stat-num {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .stat-label {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  padding: 80px 40px;
  text-align: center;
}
.cta-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-section p {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 32px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 40px;
  border-top: 1px solid #1f2937;
  text-align: center;
  color: #475569;
  font-size: 12px;
}
.footer a {
  color: #64748b;
  text-decoration: none;
}
.footer a:hover {
  color: #c084fc;
}


/* ── Pricing Section ─────────────────────────────────────── */
.pricing-section {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-section .section-header p {
  color: #94a3b8;
  font-size: 15px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.pricing-card {
  background: rgba(20, 25, 38, 0.9);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
  margin-top: 8px;
}
.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: #c084fc;
  margin: 16px 0;
  line-height: 1;
}
.pricing-price small {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}
.pricing-features li {
  font-size: 13px;
  color: #94a3b8;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-features li:last-child {
  border-bottom: none;
}
