/* ─── BRAND HERO ─────────────────────────────────────────── */
.brand-hero {
  min-height: clamp(360px, 28vw, 540px);
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}
.brand-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, var(--brand-glow, rgba(37,99,235,0.2)) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(26,79,160,0.15) 0%, transparent 60%);
}
.brand-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.brand-breadcrumb {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
  gap: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}
.brand-breadcrumb:hover {
  color: rgba(255,255,255,1);
}
.brand-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.brand-logo-img {
  height: 70px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.brand-logo-wrap--dual .brand-logo-img {
  height: 52px;
  max-width: 150px;
}
.brand-logo-divider {
  color: rgba(255,255,255,0.35);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}
.brand-logo-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.brand-logo-icon svg {
  width: 36px;
  height: 36px;
}
.brand-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.brand-hero-desc {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-wrap: pretty;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.brand-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.brand-hero-tags span {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 400;
  padding: 5px 14px;
  border-radius: 40px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}

/* ─── BRAND OVERVIEW ─────────────────────────────────────── */
.brand-overview {
  background: var(--white);
  padding: 6rem 2rem;
}
.brand-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.brand-overview .section-title {
  text-wrap: balance;
}
.brand-overview .section-desc {
  text-wrap: pretty;
}
.brand-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.brand-stat {}
.brand-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.brand-stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
}

/* ─── BRAND HIGHLIGHTS ───────────────────────────────────── */
.brand-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand-highlight-card {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: none;
  border-radius: 0;
  padding: 1.1rem 0;
  border-top: 1px solid var(--gray-200);
}
.brand-highlight-card:first-child {
  border-top: none;
  padding-top: 0;
}
.brand-highlight-card:last-child {
  padding-bottom: 0;
}
.bh-icon {
  width: 20px;
  height: 20px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bh-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-bright);
}
.brand-highlight-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  text-wrap: balance;
}
.brand-highlight-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── BRAND CTA ──────────────────────────────────────────── */
.brand-cta {
  background: var(--navy);
  padding: 5rem 2rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .brand-overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 560px) {
  .brand-hero {
    padding: 6rem 1.25rem 4rem;
  }
  .brand-stats {
    gap: 1.5rem;
  }
}
