

body.page-add-your-business-online .hub-cta .hub-btn {
  color: #f8fafc;
}


.hub-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  background: #f9fafb;
  line-height: 1.65;
}

.hub-page a {
  color: #2563eb;
  text-decoration: none;
}

.hub-page a:hover {
  text-decoration: underline;
}

/* =========================
   HERO SECTION
========================= */
.hub-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 80px 20px;
}

.hub-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.hub-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 12px;
}

.hub-hero-card h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hub-lead {
  font-size: 1.05rem;
  color: #e5e7eb;
  max-width: 600px;
  margin-bottom: 32px;
}

/* =========================
   HERO CTA BUTTONS
========================= */
.hub-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hub-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  background: #334155;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.hub-btn:hover {
  background: #475569;
  text-decoration: none;
}

.hub-btn.primary {
  background: #2563eb;
  color: #fff;
}

.hub-btn.primary:hover {
  background: #1d4ed8;
}

/* =========================
   HERO SIDE PANEL
========================= */
.hub-side {
  background: rgba(255,255,255,0.05);
  padding: 28px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.hub-side h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hub-side p {
  color: #d1d5db;
  font-size: 0.95rem;
}

.hub-side-list {
  margin-top: 20px;
}

.hub-side-item {
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.hub-side-item strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
}

/* =========================
   SECTIONS
========================= */
.hub-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px;
}

.hub-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.hub-section p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 16px;
}

.hub-section ul {
  padding-left: 20px;
}

.hub-section li {
  margin-bottom: 10px;
}

/* =========================
   CARDS GRID
========================= */
.hub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.hub-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.hub-card strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
}

/* =========================
   STEPS
========================= */
.hub-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.hub-step {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
}

.hub-step-number {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #2563eb;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* =========================
   FAQ
========================= */
.hub-faq details {
  background: #fff;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.hub-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}

.hub-faq p {
  margin-top: 10px;
}

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

  .hub-hero-card h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .hub-hero {
    padding: 60px 16px;
  }

  .hub-section {
    padding: 50px 16px;
  }

  .hub-btn {
    width: 100%;
    text-align: center;
  }
}

