/* =====================================================================
 * CBM — About page visual enhancements (ADDITIVE) · v2
 * about-enhancements.css  —  for the CURRENT (new) About page
 *
 * Append after styles.css. Every selector is a new modifier class, so
 * nothing existing is overridden destructively. Pairs with the updated
 * AboutScreen.jsx / PillarRow.jsx in this folder. All colours, spacing,
 * radii and motion come from existing design tokens.
 * ===================================================================== */

/* ---- 1. Hero: subtle photo + scrim + gold stripe ------------------- */
.cbm-about-hero { position: relative; overflow: hidden; }
.cbm-about-hero__photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.16;
}
.cbm-about-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, var(--cbm-blue) 28%, rgba(8,52,94,0.80) 62%, rgba(8,52,94,0.46) 100%);
}
.cbm-about-hero > .cbm-section__inner { position: relative; z-index: 2; }
.cbm-about-hero__stripe {
  position: absolute; right: -40px; bottom: 0; width: 260px; height: 8px;
  background: linear-gradient(90deg, var(--cbm-blue) 0 33%, var(--cbm-gold) 33% 66%, #fff 66% 100%);
  transform: skewX(-20deg); z-index: 2;
}

/* hero highlight cards — replaces the inline styles, adds a hover lift */
.cbm-about-hls {
  margin-top: 32px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.cbm-about-hl {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,194,14,0.35);
  border-radius: 10px;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.cbm-about-hl:hover { transform: translateY(-3px); border-color: var(--cbm-gold); background: rgba(255,255,255,0.09); }
.cbm-about-hl__icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,194,14,0.15); color: var(--cbm-gold);
}
.cbm-about-hl__icon svg { width: 20px; height: 20px; }
.cbm-about-hl span { font-weight: 600; line-height: 1.3; }

/* ---- 2. Pillars as cards with gold-ring medallions ----------------- */
.cbm-pillars--cards { gap: 24px; }
.cbm-pillars--cards .cbm-pillar {
  background: #fff; border: 1px solid var(--cbm-silver); border-radius: var(--radius-3);
  padding: 38px 30px 34px;
  transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.cbm-pillars--cards .cbm-pillar:hover { box-shadow: var(--shadow-3); transform: translateY(-4px); border-color: rgba(255,194,14,0.55); }
.cbm-pillars--cards .cbm-pillar__icon {
  width: 76px; height: 76px; border-radius: var(--radius-pill);
  background: rgba(8,52,94,0.05); box-shadow: inset 0 0 0 2px var(--cbm-gold); margin-bottom: 22px;
}
.cbm-pillars--cards .cbm-pillar__icon svg { width: 36px; height: 36px; stroke: var(--cbm-blue); stroke-width: 1.6; }
.cbm-pillars--cards .cbm-pillar__desc { max-width: 30ch; }

/* ---- 3. AdTiers: highlight the middle (Business) tier -------------- */
.cbm-tier--featured {
  position: relative; border: 2px solid var(--cbm-gold);
  box-shadow: 0 18px 50px rgba(8,52,94,0.14);
}
.cbm-tier__ribbon {
  position: absolute; top: 0; right: 0; z-index: 2;
  background: var(--cbm-gold); color: var(--cbm-on-accent);
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px;
  border-bottom-left-radius: var(--radius-2);
}
@media (min-width: 901px) { .cbm-tier--featured { transform: translateY(-12px); } }

/* ---- 4. Contact card — elevated, with icons + badge + CTA ---------- */
.cbm-contact-card--about {
  background: #fff; border: 1px solid var(--cbm-silver); border-radius: var(--radius-3);
  box-shadow: var(--shadow-2); padding: 36px 36px 32px;
}
.cbm-about-contact-rule { width: 56px; height: 3px; background: var(--cbm-gold); border: 0; margin: 0 0 24px; }
.cbm-about-contact-line {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--cbm-silver-2);
}
.cbm-about-contact-line:first-of-type { padding-top: 0; }
.cbm-about-contact-line__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,52,94,0.05); box-shadow: inset 0 0 0 2px var(--cbm-gold);
}
.cbm-about-contact-line__icon svg { width: 20px; height: 20px; stroke: var(--cbm-blue); stroke-width: 1.75; }
.cbm-about-contact-line__k {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cbm-muted); margin: 0 0 4px;
}
.cbm-about-contact-line__v {
  font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25;
  color: var(--cbm-blue); margin: 0;
}
.cbm-about-contact-line__v a { color: var(--cbm-blue); text-decoration: none; }
.cbm-about-contact-line__v a:hover { color: var(--cbm-gold-press); }
.cbm-about-contact-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-top: 26px;
}
.cbm-about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; color: var(--cbm-muted);
}
.cbm-about-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: var(--radius-pill);
  background: #1F8A5B; box-shadow: 0 0 0 3px rgba(31,138,91,0.18);
}

/* ---- responsive ---------------------------------------------------- */
@media (max-width: 900px) {
  .cbm-pillars--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cbm-pillars--cards { grid-template-columns: 1fr; }
  .cbm-about-contact-foot { flex-direction: column; align-items: stretch; }
  .cbm-about-contact-foot .cbm-btn { width: 100%; }
}
