/* ============================================================
   SECTIONS.CSS — Stats, How It Works, Who Can Join,
                  Features, Multi-Tenant, CTA, Contact, Footer
============================================================ */

/* ── STATS BAR ── */
#stats-vbees {
  background: var(--gray-light);
  padding: 60px 24px;
  border-bottom: 1px solid var(--gray-mid);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-mid);
  position: relative;
  transition: background .25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(254,153,39,.03); }
.stat-icon {
  width: 54px; height: 54px;
  background: rgba(254,153,39,.10);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: background .25s;
}
.stat-item:hover .stat-icon { background: rgba(254,153,39,.18); }
.stat-icon i { color: var(--amber); font-size: 22px; }
.stat-title  { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 5px; }
.stat-desc   { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── HOW IT WORKS ── */
#how-works {
  background: #fff;
  padding: 100px 24px;
}
.how-header { text-align: center; margin-bottom: 70px; }

.steps-track {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line */
.steps-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 8px);
  right: calc(10% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(254,153,39,.2));
  z-index: 0;
  pointer-events: none;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
  transition-property: opacity, transform;
  transition-timing-function: ease;
  transition-duration: .5s;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Karla', sans-serif;
  font-weight: 800; font-size: 22px;
  color: var(--amber);
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(254,153,39,.18);
  transition: transform .25s, box-shadow .25s;
  flex-shrink: 0;
}
.step-card:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(254,153,39,.32);
}
.step-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700; font-size: 12.5px;
  text-align: center; color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .4px;
}
.step-desc {
  font-size: 12px; color: var(--text-muted);
  text-align: center; line-height: 1.65;
}
.step-icon-box {
  width: 46px; height: 46px;
  background: rgba(254,153,39,.09);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 14px auto 0;
  transition: background .25s;
}
.step-card:hover .step-icon-box { background: rgba(254,153,39,.18); }
.step-icon-box i { color: var(--amber); font-size: 18px; }

/* ── WHO CAN JOIN ── */
#who-join {
  background: var(--navy);
  padding: 100px 24px;
}
.who-header { text-align: center; margin-bottom: 64px; }

.who-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.who-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px 14px;
  text-align: center;
  cursor: pointer;
  transition: transform .3s, background .3s, border-color .3s;
}
.who-card:hover {
  transform: translateY(-9px);
  background: rgba(254,153,39,.08);
  border-color: rgba(254,153,39,.28);
}
.who-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
  transition: transform .25s;
}
.who-card:hover .who-icon { transform: scale(1.12); }
.who-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700; font-size: 12px;
  color: #fff; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 9px;
}
.who-desc { font-size: 11.5px; color: var(--text-soft); line-height: 1.65; }

/* ── FEATURES ── */
#features-vbees {
  background: #fff;
  padding: 100px 24px;
}
.features-header { text-align: center; margin-bottom: 64px; }

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.feat-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all .3s;
}
.feat-card:hover {
  border-color: var(--amber);
  background: rgba(254,153,39,.04);
  transform: translateY(-5px);
  box-shadow: var(--shadow-amber);
}
.feat-icon {
  width: 56px; height: 56px;
  background: rgba(254,153,39,.11);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background .25s;
}
.feat-card:hover .feat-icon { background: rgba(254,153,39,.2); }
.feat-icon i  { color: var(--amber); font-size: 22px; }
.feat-title   { font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 8px; }
.feat-desc    { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ── MULTI-TENANT ── */
#multi-tenant {
  background: var(--gray-light);
  padding: 100px 24px;
  border-top: 1px solid var(--gray-mid);
}
.tenant-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tenant-text .sec-heading { margin-bottom: 20px; }
.tenant-body {
  font-size: 15px; color: #475569;
  line-height: 1.8; margin-bottom: 20px;
}
.tenant-highlight {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  border-left: 4px solid var(--amber);
  box-shadow: var(--shadow-sm);
  margin-top: 28px;
}
.tenant-highlight strong { font-size: 14px; color: var(--navy); display: block; margin-bottom: 4px; }
.tenant-highlight span   { font-size: 12.5px; color: var(--text-muted); }

/* Right side: forums → arrow → result */
.tenant-right {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 16px;
}
.tenant-forums { display: flex; flex-direction: column; gap: 14px; }
.forum-card {
  background: #fff;
  border-radius: 13px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--amber);
}
.forum-icon {
  width: 42px; height: 42px;
  background: rgba(254,153,39,.10);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.forum-icon i { color: var(--amber); font-size: 17px; }
.forum-name  { font-weight: 700; font-size: 13.5px; color: var(--navy); }
.forum-sub   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.tenant-arrow-col {
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--amber); opacity: .5;
  font-weight: 900;
}

.tenant-result {
  background: var(--navy);
  border-radius: 22px;
  padding: 36px 24px;
  text-align: center;
  color: #fff;
}
.result-brand {
  font-family: 'Karla', sans-serif;
  font-weight: 800; font-size: 34px;
  color: var(--amber);
  display: block; margin-bottom: 8px;
}
.result-body { font-size: 14px; color: #CBD5E1; line-height: 1.75; }
.result-badge {
  margin-top: 20px;
  padding: 12px;
  background: rgba(254,153,39,.10);
  border: 1px solid rgba(254,153,39,.2);
  border-radius: 10px;
  font-size: 12px; color: var(--amber); font-weight: 600;
}

/* ── CTA ── */
#cta-vbees {
  background: linear-gradient(135deg, var(--amber) 0%, #f97316 100%);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-vbees::before {
  content: '🚀';
  position: absolute; font-size: 200px;
  left: -40px; top: -30px;
  opacity: .07; pointer-events: none;
  line-height: 1;
}
#cta-vbees::after {
  content: '🐝';
  position: absolute; font-size: 180px;
  right: -30px; bottom: -20px;
  opacity: .07; pointer-events: none;
  line-height: 1;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--navy); line-height: 1.2;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(15,23,42,.65);
  margin-bottom: 44px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── CONTACT STRIP ── */
#contact-vbees {
  background: var(--navy);
  padding: 64px 24px;
}
.contact-strip {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex; align-items: center; gap: 14px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(254,153,39,.11);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--amber); font-size: 19px; }
.contact-lbl { font-size: 11px; color: #64748B; margin-bottom: 3px; }
.contact-val { font-size: 14px; color: #fff; font-weight: 600; }

/* ── FOOTER ── */
#vbees-footer {
  background: #060C18;
  padding: 28px 24px;
  text-align: center;
}
#vbees-footer p { font-size: 12px; color: #475569; line-height: 1.8; }
#vbees-footer span { color: var(--amber); font-weight: 600; }

/* ============================================================
   RESPONSIVE BREAKPOINTS — SECTIONS
============================================================ */
.footer-inline-img {
    height: 12px;
    width: auto;
    display: inline;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
/* 1200px */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .who-grid      { grid-template-columns: repeat(3, 1fr); }
  .steps-track   { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .steps-track::before { display: none; }
}

/* 1024px */
@media (max-width: 1024px) {
  .tenant-layout { grid-template-columns: 1fr; gap: 48px; }
  .tenant-right  { grid-template-columns: 1fr 36px 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gray-mid); }
}

/* 768px */
@media (max-width: 768px) {
  #how-works, #who-join, #features-vbees,
  #multi-tenant, #cta-vbees { padding: 72px 20px; }
  #stats-vbees { padding: 48px 20px; }
  #contact-vbees { padding: 48px 20px; }

  .steps-track   { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .who-grid      { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .tenant-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .tenant-arrow-col { transform: rotate(90deg); }

  .contact-strip { gap: 32px; }
}

/* 480px */
@media (max-width: 480px) {
  #how-works, #who-join, #features-vbees,
  #multi-tenant, #cta-vbees { padding: 56px 16px; }
  #stats-vbees { padding: 36px 16px; }

  .stats-grid   { grid-template-columns: 1fr; }
  .stat-item    { border-right: none; border-bottom: 1px solid var(--gray-mid); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-child(3) { border-top: none; }

  .steps-track  { grid-template-columns: 1fr; gap: 24px; }
  .who-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }

  .cta-title    { font-size: 28px; }
  .cta-sub      { font-size: 14px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  .contact-strip { flex-direction: column; gap: 24px; }
  .contact-item  { width: 100%; justify-content: center; }
}