/* Phase 12H.3 — Trust, conversion, product proof (no motion) */

.eb-founder__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .eb-founder__grid {
    grid-template-columns: minmax(200px, 280px) 1fr;
  }
}
.eb-founder__photo {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background: var(--eb-surface-elevated, #f1f5f9);
  border: 1px solid var(--eb-border, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eb-founder__photo-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eb-text-muted, #64748b);
}

.eb-founder__logos {
  margin-top: 1rem;
}

.eb-founder__logo-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #0b1220 0%, #1e293b 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.eb-founder__logo-img {
  display: block;
  width: min(200px, 100%);
  height: auto;
}

.eb-founder__brand-line {
  margin: 0.65rem 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eb-primary, #2563eb);
}

.eb-founder__brand-line strong {
  color: var(--eb-text, #0f172a);
  font-weight: 700;
}

.eb-pilot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.eb-pilot__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eb-proof-gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.eb-proof-gallery__tab {
  font-size: 0.8125rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--eb-border);
  background: var(--eb-card);
  color: var(--eb-text-muted);
  cursor: pointer;
}
.eb-proof-gallery__tab.is-active {
  border-color: var(--eb-primary, #2563eb);
  color: var(--eb-primary, #2563eb);
  font-weight: 600;
}
.eb-proof-gallery__stage {
  position: relative;
}
.eb-proof-gallery__track {
  display: grid;
}
.eb-proof-slide {
  display: none;
  margin: 0;
}
.eb-proof-slide.is-active {
  display: block;
}
.eb-proof-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--eb-border, #e2e8f0);
}
.eb-proof-gallery__nav {
  display: none;
}
@media (max-width: 767px) {
  .eb-proof-gallery__nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }
  .eb-proof-gallery__prev,
  .eb-proof-gallery__next {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--eb-border);
    background: var(--eb-card);
    color: var(--eb-text);
    font-size: 1.25rem;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .eb-proof-gallery__track {
    display: block;
  }
  .eb-proof-slide {
    display: none;
  }
  .eb-proof-slide.is-active {
    display: block;
  }
}

.eb-pricing-teaser__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.eb-pricing-teaser__card--featured {
  border-color: var(--eb-primary, #2563eb);
}
.eb-pricing-teaser__price {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.35rem 0;
}
.eb-pricing-teaser__price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--eb-text-muted, #64748b);
}

.eb-cap-highlights__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.eb-cap-highlights__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.eb-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.eb-wa-btn__icon {
  flex-shrink: 0;
}

.eb-pricing-enterprise__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.eb-mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--eb-border, #e2e8f0);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}
.eb-mobile-sticky.is-visible {
  display: grid;
}
@media (min-width: 768px) {
  .eb-mobile-sticky {
    display: none !important;
  }
}
body.eb-has-mobile-sticky {
  padding-bottom: 52px;
}
.eb-mobile-sticky__btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.65rem 0.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--eb-text, #0f172a);
  border: none;
  background: transparent;
}
.eb-mobile-sticky__btn--primary {
  background: var(--eb-primary, #2563eb);
  color: #fff;
}
.eb-mobile-sticky__btn--wa {
  color: #128c7e;
}
