/* Fan Pajamas - About Us page styles.
 *
 * Extracted from the approved "about us.html" mockup, minus its header/footer rules (already
 * site-wide in fp-header-footer.css) and minus the homepage-only sections that file carries
 * along. Loaded only on the About page; the mockup namespaces its rules under `.about-page`
 * and a body_class filter adds that class for this page only, so nothing here leaks sitewide.
 *
 * FILE ORDER MATTERS and is deliberate:
 *   1. base reset / shared primitives
 *   2. Elementor container reset  <- BEFORE the design rules, so each design rule re-establishes
 *                                    its own padding/gap/display and wins the tie by coming later
 *   3. the mockup design rules (verbatim)
 *   4. media queries
 *   5. theme-override layer       <- AFTER everything, with !important, because elessi-theme
 *                                    stylesheets load after this file
 */

/* ---------- 1. base ---------- */
:root {
  --navy: #061e4a;
  --navy-800: #12336a;
  --ink: #24334d;
  --red: #f7192d;
  --orange: #ff7919;
  --yellow: #ffc323;
  --surface: #f6f8fd;
  --brand-tint: #e9eff9;
  --white: #ffffff;
  --line: #d8e1f0;
  --container: 1344px;
  --shadow: 0 24px 58px rgba(6, 30, 74, 0.15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}
body, button, input { font-family: "Manrope", Arial, sans-serif; }
/* dynamic.css (elessi-theme) styles bare `p` directly (Jost font / line-height 1.6) and loads
   after this file, so its win-on-specificity has to be pre-empted here. Placed early (not in the
   override layer at the end) and kept to ONE extra class of specificity on purpose: every
   component-specific p rule below it in section 3 (`.pod-copy p`, `.about-closing p`, etc.) is
   the same or higher specificity and comes later in the file, so it still wins the cascade. */
.about-page p { font-family: "Manrope", Arial, sans-serif; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
h1, h2, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 20px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(4.25rem, 5.25vw, 5.75rem); line-height: 0.91; }
h2 { font-size: clamp(3.2rem, 4.4vw, 4.8rem); line-height: 0.94; }
h3, h4 { margin-top: 0; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.speed-line {
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 45%, var(--orange) 45% 80%, var(--yellow) 80%);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}
.speed-line-short { width: 108px; height: 4px; }
.speed-line-long { width: 330px; margin-bottom: 24px; }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 30px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--yellow); color: var(--navy); }
:focus-visible { outline: 3px solid rgba(247,25,45,.42); outline-offset: 3px; }

/* ---------- 2. Elementor container reset -------------------------------- */
/* Every Container ships 10px padding and a 20px flex gap by default. This design is
   padding/margin-driven, so clear both here - early, at low specificity, so each design rule
   below re-establishes its own values and wins on load order. Getting this order wrong wipes
   every section padding and grid on the page. */
.about-page .e-con { padding: 0; gap: 0; }

/* Containers the mockup renders as plain blocks. The grid ones (.about-hero-grid, .story-grid,
   .pod-grid, .company-grid, .about-product-grid, .conference-row, .product-specs, .pod-steps)
   declare display:grid in the design rules below and override this on load order. */
.about-page .container,
.about-page .about-hero, .about-page .about-hero-copy, .about-page .about-hero-visual,
.about-page .about-section, .about-page .story-heading, .about-page .story-copy,
.about-page .pod-copy, .about-page .company-copy, .about-page .company-card,
.about-page .about-product-card, .about-page .about-closing,
.about-page .about-section-heading, .about-page .conference-tile { display: block; }


/* ---------- 3. design ---------- */
.about-page main { overflow: hidden; }
.about-page .about-section { padding: 108px 0; }
.about-page .about-section p { color: var(--ink); }
.about-page .about-section-heading { max-width: 810px; margin-bottom: 46px; }
.about-page .about-section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.about-page .about-kicker {
  margin-bottom: 9px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-page .about-heading-line {
  display: block;
  width: 116px;
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--red) 0 44%, var(--orange) 44% 77%, var(--yellow) 77%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}
.about-page .about-hero {
  position: relative;
  min-height: 650px;
  background:
    radial-gradient(circle at 76% 44%, rgba(255,195,35,.2), transparent 17%),
    linear-gradient(115deg, var(--surface) 0 56%, #e6edf8 56% 100%);
}
.about-page .about-hero::after {
  position: absolute;
  top: 55px;
  /* `right` restated as the spec-equivalent `left` (see `.pod-section::before` note below) -
     defensive fix even though this one measured correctly, for consistency/robustness. */
  left: calc(100% - 285px);
  width: 400px;
  height: 300px;
  background: linear-gradient(163deg, var(--red) 0 24%, transparent 24% 35%, var(--orange) 35% 60%, transparent 60% 71%, var(--yellow) 71% 94%, transparent 94%);
  content: "";
  opacity: .96;
  transform: rotate(-7deg);
}
.about-page .about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 72px;
}
.about-page .about-hero-copy { padding: 76px 0; }
.about-page .about-hero-copy h1 { max-width: 650px; margin: 20px 0 17px; }
.about-page .about-hero-copy .about-lead {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.75;
}
.about-page .about-hero-visual {
  position: relative;
  display: grid;
  min-height: 455px;
  place-items: center;
}
.about-page .fan-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(440px, 95%);
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  border: 8px solid white;
  border-radius: 24px;
  background: var(--navy);
  box-shadow: 18px 20px 0 var(--orange), var(--shadow);
  color: white;
  transform: rotate(2.5deg);
}
.about-page .fan-card-top { display: flex; flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 20px; }
.about-page .fan-card-label { color: var(--yellow); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.about-page .fan-card-badge {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 800;
}
.about-page .fan-card-number {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(8rem, 12vw, 11rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .68;
  text-shadow: 6px 6px 0 var(--red);
}
.about-page .fan-card-bottom { display: flex; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 18px; }
.about-page .fan-card-bottom strong { max-width: 210px; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.about-page .fan-card-bottom span {
  padding: 7px 10px;
  border-radius: 6px;
  background: white;
  color: var(--navy);
  font-size: .66rem;
  font-weight: 800;
}
.about-page .hero-stat {
  position: absolute;
  z-index: 4;
  right: -5px;
  bottom: 18px;
  display: grid;
  min-width: 180px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  box-shadow: 0 14px 30px rgba(6,30,74,.14);
}
.about-page .hero-stat strong {
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1;
}
.about-page .hero-stat span { color: var(--ink); font-size: .69rem; font-weight: 800; line-height: 1.35; text-transform: uppercase; }
.about-page .about-proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(32px, calc((100vw - var(--container)) / 2));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  list-style: none;
}
.about-page .about-proof-strip .proof-item {
  display: flex;
  flex-direction: row;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
}
.about-page .about-proof-strip .proof-item + .proof-item { border-left: 1px solid var(--line); }
.about-page .proof-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-tint);
  color: var(--red);
}
.about-page .about-proof-strip .proof-label { font-size: .78rem; font-weight: 800; line-height: 1.35; }
.about-page .story-section { background: white; }
.about-page .story-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  align-items: start;
  gap: 92px;
}
.about-page .story-heading { position: sticky; top: 28px; }
.about-page .story-heading h2 { margin-bottom: 0; }
.about-page .story-copy { display: grid; gap: 26px; }
.about-page .story-copy p { margin: 0; font-size: 1.03rem; line-height: 1.85; }
.about-page .conference-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 7px; }
.about-page .conference-tile {
  position: relative;
  overflow: hidden;
  min-height: 145px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}
.about-page .conference-tile::after {
  position: absolute;
  /* `right` restated as `left` - see `.pod-section::before` note below. Clipped by this card's
     own `overflow:hidden` either way, but kept consistent/defensive. */
  left: calc(100% - 91px);
  bottom: -45px;
  width: 125px;
  height: 125px;
  border: 23px solid rgba(247,25,45,.08);
  border-radius: 50%;
  content: "";
}
.about-page .conference-tile:nth-child(2)::after { border-color: rgba(255,121,25,.1); }
.about-page .conference-tile strong {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.25rem;
  font-style: italic;
  line-height: 1;
}
.about-page .conference-tile:nth-child(2) strong { color: var(--orange); }
.about-page .conference-tile span { position: relative; z-index: 1; color: var(--ink); font-size: .79rem; font-weight: 700; }
.about-page .products-section { background: var(--brand-tint); }
.about-page .products-intro { max-width: 710px; margin: 0 auto 48px; color: var(--ink); text-align: center; }
.about-page .about-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-page .about-product-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 16px 38px rgba(6,30,74,.08);
}
.about-page .about-product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  content: "";
}
.about-page .product-card-top { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 29px; }
.about-page .product-symbol {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 18px;
  background: var(--navy);
  color: white;
}
.about-page .about-product-card:nth-child(2) .product-symbol { background: var(--red); }
.about-page .product-symbol svg { width: 39px; height: 39px; }
.about-page .product-index {
  color: #dce4f1;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}
.about-page .about-product-card h3 {
  margin-bottom: 13px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.7rem;
  font-style: italic;
  line-height: 1;
}
.about-page .about-product-card p { min-height: 78px; margin-bottom: 24px; color: var(--ink); }
.about-page .product-specs { display: grid; gap: 11px; padding: 20px 0 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.about-page .product-specs .spec-item { display: grid; grid-template-columns: 24px 1fr; gap: 9px; color: var(--ink); font-size: .82rem; }
.about-page .product-specs svg { width: 18px; height: 18px; color: var(--red); stroke-width: 2.4; }
.about-page .pod-section {
  position: relative;
  background: var(--navy);
  color: white;
}
.about-page .pod-section::before {
  position: absolute;
  top: -60px;
  /* `right: -80px` alone (no `left`) resolves to `left: 0` instead of the correct ~955px on
     this specific element only (every other `right`-positioned decorative pseudo on this page
     resolves correctly) - stating the equivalent `left` directly sidesteps whatever's making the
     right+width auto-left solve fail here. left = 100% - (width - |right overhang|) = 100% - 310px. */
  left: calc(100% - 310px);
  width: 390px;
  height: 210px;
  background: linear-gradient(164deg, var(--red) 0 31%, transparent 31% 40%, var(--orange) 40% 69%, transparent 69% 78%, var(--yellow) 78%);
  content: "";
  opacity: .92;
  transform: rotate(-8deg);
}
.about-page .pod-section .about-kicker { color: var(--yellow); }
.about-page .pod-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 86px;
}
.about-page .pod-copy p { max-width: 600px; margin-bottom: 0; color: #c5cfe2; line-height: 1.85; }
.about-page .pod-steps { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
.about-page .pod-steps .pod-step {
  display: grid;
  min-height: 92px;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  background: rgba(255,255,255,.055);
}
.about-page .pod-steps strong {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  font-style: italic;
}
.about-page .pod-steps h3 { margin: 0 0 4px; font-size: .92rem; }
.about-page .pod-steps p { margin: 0; color: #9cacca; font-size: .76rem; }
.about-page .company-section { background: white; }
.about-page .company-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}
.about-page .company-copy p:not(.about-kicker) { max-width: 610px; margin-bottom: 0; line-height: 1.8; }
.about-page .company-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--red);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(6,30,74,.09);
}
.about-page .company-card::after {
  position: absolute;
  /* `right` restated as `left` - see `.pod-section::before` note below. Clipped by this card's
     own `overflow:hidden` either way, but kept consistent/defensive. */
  left: calc(100% - 140px);
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 35px solid rgba(255,121,25,.09);
  border-radius: 50%;
  content: "";
}
.about-page .company-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
}
.about-page .company-detail + .company-detail { padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--line); }
.about-page .company-detail-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: white;
}
.about-page .company-detail small { display: block; margin-bottom: 3px; color: #667695; font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.about-page .company-detail strong { display: block; font-size: 1rem; line-height: 1.55; }
.about-page .about-closing { padding: 92px 0; background: var(--red); color: white; text-align: center; }
.about-page .about-closing h2 { max-width: 820px; margin-right: auto; margin-left: auto; }
.about-page .about-closing p { max-width: 690px; margin: 0 auto 26px; color: rgba(255,255,255,.84); }

/* ---------- 4. responsive ---------- */
@media (max-width: 640px) {
.container { width: min(calc(100% - 34px), var(--container)); }
h1 { font-size: clamp(3.45rem, 15vw, 4.3rem); }
h2 { font-size: clamp(3rem, 13vw, 3.8rem); }
.speed-line-long { width: 260px; }
}
@media (max-width: 1120px) {
.about-page .about-hero-grid { gap: 36px; }
.about-page .story-grid, .about-page .pod-grid, .about-page .company-grid { gap: 52px; }
}
@media (max-width: 900px) {
.about-page .about-hero { background: linear-gradient(180deg, var(--surface) 0 60%, #e6edf8 60% 100%); }
.about-page .about-hero-grid { grid-template-columns: 1fr; }
.about-page .about-hero-copy { padding-bottom: 12px; }
.about-page .about-hero-visual { min-height: 500px; }
.about-page .about-proof-strip { grid-template-columns: repeat(2, 1fr); }
.about-page .about-proof-strip .proof-item:nth-child(3) { border-left: 0; }
.about-page .about-proof-strip .proof-item:nth-child(n+3) { border-top: 1px solid var(--line); }
.about-page .story-grid, .about-page .pod-grid, .about-page .company-grid { grid-template-columns: 1fr; }
.about-page .story-heading { position: static; }
}
@media (max-width: 640px) {
.about-page .about-section { padding: 76px 0; }
.about-page .about-hero-grid { min-height: auto; }
.about-page .about-hero-copy { padding: 58px 0 8px; }
.about-page .about-hero-copy .about-lead { font-size: .96rem; }
.about-page .about-hero-visual { min-height: 405px; }
.about-page .fan-card { min-height: 330px; padding: 29px; border-width: 5px; box-shadow: 10px 12px 0 var(--orange), var(--shadow); }
.about-page .fan-card-number { font-size: 8rem; }
.about-page .hero-stat { right: 0; bottom: 4px; min-width: 160px; padding: 14px 16px; }
.about-page .about-proof-strip { padding: 0 10px; }
.about-page .about-proof-strip .proof-item { min-height: 92px; flex-direction: column; gap: 7px; padding: 12px 8px; text-align: center; }
.about-page .about-proof-strip .proof-label { font-size: .68rem; }
.about-page .conference-row, .about-page .about-product-grid { grid-template-columns: 1fr; }
.about-page .about-product-card { min-height: auto; padding: 32px 24px; }
.about-page .about-product-card p { min-height: auto; }
.about-page .pod-steps .pod-step { grid-template-columns: 56px 1fr; padding: 13px; }
.about-page .pod-steps strong { width: 50px; height: 50px; }
.about-page .company-card { padding: 30px 22px; }
.about-page .company-detail { grid-template-columns: 46px 1fr; gap: 12px; }
.about-page .about-closing { padding: 76px 0; }
}

/* ---------- 5. elessi-theme override layer ------------------------------ */
/* dynamic.css styles `p` directly (Jost / line-height 1.6), style.css pins html+body to
   14.5px, and style-font-weight-500.css forces weight 500 on h1..h6/b/strong through a
   selector list long enough to out-specify a plain `html body h1` - so these are restated at
   `.elementor` scope with !important. Same pattern as fp-home.css. */
html:has(body.about-page) { font-size: 16px !important; }
html body.about-page {
  background: var(--surface) !important;
  color: var(--navy) !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}
html body.about-page .elementor h1, html body.about-page .elementor h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif !important;
  font-style: italic !important; font-weight: 800 !important; }
html body.about-page .elementor h3, html body.about-page .elementor h4 {
  font-family: "Manrope", Arial, sans-serif !important;
  font-style: normal !important; font-weight: 700 !important; line-height: 1.55; }
/* The one h3 the mockup sets in the display face. */
html body.about-page .elementor .about-product-card h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif !important;
  font-style: italic !important; line-height: 1; }
html body.about-page .elementor strong { font-weight: 700 !important; }
html body.about-page .elementor .fan-card-number,
html body.about-page .elementor .fan-card-badge,
html body.about-page .elementor .product-index { font-weight: 800 !important; }

/* The overlay badge is `position:absolute` with only `right`/`bottom` set, so it should shrink
   to its `min-width: 180px` content. */
.about-page .hero-stat { width: auto !important; }

/* `.hero-stat` is raw HTML inside a Text-Editor widget, one level deeper than the mockup's own
   markup - and Elementor's own base CSS puts `position: relative` on every widget wrapper div.
   That wrapper becomes `.hero-stat`'s containing block instead of `.about-hero-visual` further
   up, so `right: -5px; bottom: 18px` resolves against the wrapper's own tiny content box, not
   the hero visual - the badge lands ~220px too far left and overlaps the fan-card's own text
   instead of floating past its bottom-right corner. Only the text-editor widget that's a direct
   child of `.about-hero-visual` matches this (the fan-card is a Container, not this widget
   type), so this is safe and precise without needing a dedicated class. */
.about-page .about-hero-visual > .elementor-widget-text-editor { position: static; }

/* Icon widgets: the mockup styled a <span class="proof-icon"> directly; Elementor nests the
   glyph two wrappers deep inside `.elementor-icon` and sizes it with its own font-size:50px.
   Collapse the wrappers and let the mockup box + svg sizing rules apply unchanged. */
.about-page .proof-icon > .elementor-widget-container,
.about-page .product-symbol > .elementor-widget-container,
.about-page .company-detail-icon > .elementor-widget-container,
.about-page .product-specs .elementor-widget-icon > .elementor-widget-container,
.about-page .elementor-widget-icon .elementor-icon-wrapper { display: contents; }
.about-page .elementor-widget-icon .elementor-icon {
  display: grid; place-items: center; width: 100%; height: 100%;
  font-size: inherit; color: inherit; background: transparent; border: 0; }
.about-page .e-font-icon-svg { fill: currentColor; stroke: none; }

/* Buttons: the `.button` class collides with the theme own button rule (its padding, fixed
   42px height, uppercase, 2px letter-spacing, red background + hover), and Elementor nests the
   real <a> two wrappers deep, so the box model is re-targeted onto that <a>. */
.about-page .elementor-widget-button.button { display: inline-flex; border: 0; padding: 0;
  height: auto; font-size: inherit; border-radius: 0; background: transparent; box-shadow: none;
  text-transform: none; letter-spacing: normal; }
.about-page .elementor-widget-button.button:hover { background: transparent !important;
  border-color: transparent !important; }
.about-page .elementor-widget-button.button > .elementor-widget-container,
.about-page .elementor-widget-button.button .elementor-button-wrapper { display: contents; }
.about-page .elementor-widget-button.button a.elementor-button {
  display: inline-flex; min-height: 56px; align-items: center; justify-content: center;
  gap: 12px; padding: 0 30px; border: 2px solid transparent; border-radius: 10px;
  font-size: 1rem; line-height: 1.55; font-weight: 800 !important; text-decoration: none;
  text-transform: none !important; letter-spacing: normal !important; color: inherit;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.about-page .elementor-widget-button.button a.elementor-button:hover { transform: translateY(-2px); }
.about-page .elementor-widget-button.button-gold a.elementor-button {
  background: var(--yellow); color: var(--navy); }
.about-page .elementor-widget-button.button .elementor-button-content-wrapper { gap: 12px; }
.about-page .elementor-widget-button.button .elementor-button-icon svg { width: 20px; height: 20px; }

/* Mirrors the mockup `a { color: inherit }`; un-!important so genuinely coloured links win. */
html body.about-page .elementor a { color: inherit; }

/* Heading sizes: style.css ships its own h1/h2/h3 font-size rules through selectors long enough
   to beat a bare `h1`, so the design sizes have to be restated here at `html body.about-page`
   specificity — exactly the same collision (and fix) as fp-home.css. A media query adds no
   specificity, so the mobile sizes must be restated at this specificity too or they can never
   win against the desktop rule above them. */
html body.about-page h1 { font-size: clamp(4.25rem, 5.25vw, 5.75rem) !important; line-height: .91 !important; }
html body.about-page h2 { font-size: clamp(3.2rem, 4.4vw, 4.8rem) !important; line-height: .94 !important; }
html body.about-page .elementor .about-product-card h3 { font-size: 2.7rem !important; }
html body.about-page .elementor .pod-steps h3 { font-size: .92rem !important; }
@media (max-width: 640px) {
  html body.about-page h1 { font-size: clamp(3.45rem, 15vw, 4.3rem) !important; }
  html body.about-page h2 { font-size: clamp(3rem, 13vw, 3.8rem) !important; }
}

/* ---------- Proof badges and product symbols rebuilt as Image widgets -------------------------
 * Same change as the homepage trust strip: these were Icon widgets (sized by `.proof-icon` 44px
 * and `.product-symbol` 76px above) and are now Image widgets with no CSS class, rendering at
 * their natural ~250px / ~530px. Size the image widgets to the boxes the design calls for; the
 * rounded frame is part of the artwork, so no border/background is re-applied here.
 */
.about-page .about-proof-strip .proof-item .elementor-widget-image {
  flex: 0 0 auto;
  width: 44px;
  line-height: 0;
}
.about-page .about-proof-strip .proof-item .elementor-widget-image img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.about-page .about-product-card .product-card-top .elementor-widget-image {
  flex: 0 0 auto;
  width: 76px;
  line-height: 0;
}
.about-page .about-product-card .product-card-top .elementor-widget-image img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
}
