* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #000b1e; color: #fff; line-height: 1.6; overflow-x: hidden; }
#particles-js { position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: -1; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glow { 0%,100% { box-shadow: 0 0 10px rgba(255,164,58,0.4); } 50% { box-shadow: 0 0 30px rgba(255,164,58,0.8); } }
@keyframes orbit { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.fade-in { animation: fadeIn 1.2s ease-out; }
.hover-glow:hover { animation: glow 2s infinite; transform: scale(1.05); transition: all 0.3s; }
.logo-orbit { animation: orbit 30s linear infinite; display: inline-block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.nav { background: rgba(0,0,0,0.7); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 100; padding: 1rem 0; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 1.8rem; font-weight: bold; text-decoration: none; color: #fff; display: flex; align-items: center; gap: 10px; }
.brand img { width: 50px; }
.links { display: flex; gap: 1.5rem; align-items: center; }
.links a { color: #ddd; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.links a:hover { color: #FFA43A; }
.btn { 
  display: inline-block;
  padding: 0.9rem 2rem; 
  border-radius: 50px; 
  text-decoration: none; 
  font-weight: bold; 
  transition: all 0.3s; 
  margin: 0.8rem 0.6rem; /* Added margin around buttons */
}
.btn.primary { background: linear-gradient(45deg, #007BFF, #FFA43A); color: white; }
.btn:hover { transform: translateY(-3px); }

.pagehead { text-align: center; padding: 10rem 0 6rem; }
.kicker { color: #FFA43A; font-size: 1.1rem; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.lede { font-size: 1.3rem; color: #aaa; max-width: 700px; margin: 0 auto 3rem; } /* Added bottom margin */

.section { padding: 6rem 0; } /* Increased overall section padding */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,164,58,0.3); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.4s; }
.tag { background: #FFA43A; color: #000; display: inline-block; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.9rem; margin-bottom: 1rem; }
.price { font-size: 3rem; color: #FFA43A; font-weight: bold; margin: 1rem 0; }
.list { list-style: none; text-align: left; margin: 1.5rem 0; }
.list li { padding: 0.7rem 0; display: flex; align-items: center; }
.list li::before { content: "✓"; color: #007BFF; font-weight: bold; margin-right: 1rem; font-size: 1.3rem; }
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }

/* ===== IMPROVED CTA SPACING ===== */
/* This fixes the overlapping buttons on FAQ, Pricing custom section, and Home hero */
.hero-cta, 
div[style*="text-align:center"][style*="margin-top"] {  /* Targets the "Still have questions?" and custom pricing areas */
  margin-top: 4rem !important;   /* Drops buttons lower */
  margin-bottom: 2rem;
}
.hero-cta a.btn {
  margin: 0.8rem 1rem;           /* Extra space between multiple buttons */
}

/* ===== FOOTER (unchanged from last fix) ===== */
.footer { background: #000; padding: 3rem 0; margin-top: 5rem; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer .small { color: #ccc; }
.badge { 
  background: rgba(255,164,58,0.3);
  color: #ffffff;
  padding: 0.6rem 1.2rem; 
  border-radius: 30px; 
  font-size: 0.95rem; 
  font-weight: 500;
  transition: all 0.3s;
}
.badge:hover {
  background: #FFA43A;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-inner, .footer-grid { flex-direction: column; text-align: center; }
  .links { flex-direction: column; gap: 1rem; margin-top: 1rem; }
  h1 { font-size: 2.8rem; }
  .hero-cta, div[style*="text-align:center"] { margin-top: 3rem !important; }
  .btn { padding: 0.8rem 1.6rem; margin: 0.6rem 0; display: block; max-width: 280px; margin-left: auto; margin-right: auto; }
}