/* =========================================================================
   E3 Aviation — v2 Cinematic styles
   Layered on top of base styles.css
   ========================================================================= */

/* HERO V2 — full-bleed cinematic */
.hero-v2 {
  position: relative;
  padding: 0;
  color: #fff;
  background: #02060f;
  overflow: hidden;
  isolation: isolate;
  display: block;
}
.hero-v2 .hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-v2 .hero-art svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-v2 .hero-art::after {
  /* film grain + vignette */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 50%, transparent 50%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(2,6,15,0.45) 0%, transparent 25%, transparent 55%, rgba(2,6,15,0.4) 100%);
  pointer-events: none;
}
.hero-v2 .hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.10 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-v2 .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 32px;
}

.hero-v2 .hero-content {
  max-width: 880px;
}
.hero-v2 .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 8px 16px 8px 0;
  background: linear-gradient(90deg, rgba(253,185,19,0.18), transparent);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.hero-v2 h1 {
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-v2 h1 .lite { color: rgba(255,255,255,0.6); display: block; font-weight: 400; font-style: italic; font-size: 0.62em; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.hero-v2 h1 .accent {
  color: var(--gold);
  display: inline-block;
  position: relative;
}

.hero-v2 .hero-sub {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin-top: 48px;
  margin-bottom: 64px;
  font-weight: 400;
}
.hero-v2 .hero-sub strong { color: #fff; font-weight: 700; }
.hero-v2 .hero-sub .walk-in {
  display: block;
  margin-top: 28px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.01em;
  color: var(--gold);
  line-height: 1;
}

/* Benefit chips above the fold — immediate clarity */
.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.hero-chip svg { width: 16px; height: 16px; color: var(--gold); }
.hero-chip strong { color: var(--gold); font-weight: 900; }

.hero-v2 .hero-ctas { margin-bottom: 56px; }

/* hero stat ribbon — pulled up to overlap the faded bottom row of tiles */
.hero-ribbon {
  position: relative;
  margin-top: -220px;
  background: linear-gradient(180deg, transparent, rgba(2,6,15,0.55));
  padding: 28px 0 36px;
  border-top: 0;
  z-index: 4;
}
.hero-ribbon .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.ribbon-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-family: "Lato", sans-serif;
  position: relative;
}
.ribbon-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.14);
}
.ribbon-stat .num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ribbon-stat .lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 760px) {
  .hero-ribbon { display: none; }
  .hero-v2 .container { padding-bottom: 60px; }
}

.hero-coord {
  position: absolute;
  top: 130px;
  right: var(--gutter);
  z-index: 3;
  font-family: "Lato", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: right;
  line-height: 1.6;
}
.hero-coord strong { color: var(--gold); font-weight: 900; display: block; font-size: 11px; margin-bottom: 4px; }
@media (max-width: 760px) { .hero-coord { display: none; } }

/* =========================================================================
   BENEFITS STRIP (right after hero) — immediate "what you get" clarity
   ========================================================================= */
.benefits-strip {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.benefits-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(253,185,19,0.10), transparent 70%);
  pointer-events: none;
}
.benefits-strip .container { position: relative; }
.benefits-strip-head {
  text-align: center;
  margin-bottom: 56px;
  color: #fff;
}
.benefits-strip-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.benefits-strip-head p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 960px) { .benefits-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .benefits-row { grid-template-columns: repeat(2, 1fr); } }
.benefit-cell {
  padding: 36px 24px;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background .2s;
  position: relative;
  text-decoration: none;
  display: block;
}
a.benefit-cell { color: #fff; }

/* Wrapper that holds the closer between the hero and the comms strip */
.benefits-closer-wrap {
  background: #02060f;
  padding: 22px 0;
  border-top: 1px solid rgba(253,185,19,0.10);
  border-bottom: 0;
  position: relative;
  z-index: 3;
}

/* Closer line below the 6-bucket strip */
.benefits-closer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: rgba(255,255,255,0.95);
  text-align: center;
  line-height: 1.2;
}
.benefits-closer .flourish {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,185,19,0.7), transparent);
}
.benefits-closer .line a {
  color: var(--gold);
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color .2s, gap .2s;
  vertical-align: middle;
}
.benefits-closer .line a:hover {
  border-bottom-color: var(--gold);
  gap: 10px;
}
@media (max-width: 760px) {
  .benefits-closer .flourish { display: none; }
  .benefits-closer { flex-direction: column; gap: 12px; }
}
.benefit-cell:last-child { border-right: 0; }
.benefit-cell:hover { background: rgba(253,185,19,0.06); }
.benefit-cell .ico {
  width: 44px; height: 44px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  color: var(--gold);
}
.benefit-cell .ico svg { width: 28px; height: 28px; }
.benefit-cell .nm {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.benefit-cell .sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  line-height: 1.4;
}

/* =========================================================================
   THREE E's — Cinematic editorial sections
   ========================================================================= */
.three-e {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.three-e-intro {
  text-align: center;
  padding: var(--section-y) var(--gutter) 60px;
  max-width: 880px;
  margin: 0 auto;
}
.three-e-intro .eyebrow { justify-content: center; display: flex; }
/* E3 = Empower + Educate + Entertain — creative typographic equation */
.e3-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  flex-wrap: wrap;
  margin: 18px auto 28px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  line-height: 1;
}
.e3-equation .eq-logo {
  width: clamp(90px, 11vw, 150px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(10,37,64,0.15));
}
.e3-equation .eq-e3 {
  font-size: clamp(54px, 7vw, 96px);
  letter-spacing: -0.04em;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  background: linear-gradient(135deg, var(--navy) 0%, var(--e3-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.e3-equation .eq-e3 sup {
  font-size: 0.55em;
  font-weight: 900;
  margin-left: 2px;
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  top: -0.25em;
}
.e3-equation .eq-equals {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.e3-equation .eq-words {
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 1.4vw, 18px);
  flex-wrap: wrap;
  justify-content: center;
}
.e3-equation .eq-word {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.e3-equation .eq-word .big {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 1.25em;
  color: var(--gold);
  margin-right: 0.02em;
  display: inline-block;
  transform: translateY(0.07em);
}
.e3-equation .eq-dot {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--gold);
  opacity: 0.55;
}
@media (max-width: 720px) {
  .e3-equation { flex-direction: column; gap: 14px; }
  .e3-equation .eq-words { gap: 6px; }
  .e3-equation .eq-dot { display: inline; }
}
.three-e-intro p {
  color: var(--body-soft);
  font-size: 18px;
  line-height: 1.65;
}
.three-e-intro h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}

.e-block {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.e-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 900px) {
  .e-block-grid { grid-template-columns: 1fr; }
  .e-block.reverse .e-block-visual { order: -1; }
}
.e-block.reverse .e-block-visual { order: 2; }
.e-block.reverse .e-block-copy { order: 1; }

.e-numeral {
  position: absolute;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: clamp(280px, 36vw, 520px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: var(--navy);
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}
.e-block:nth-child(odd) .e-numeral { left: -40px; }
.e-block:nth-child(even) .e-numeral { right: -40px; }

.e-block-copy { position: relative; z-index: 1; }
.e-block-copy .eyebrow { color: var(--gold-warm); }
.e-block-copy h3 {
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 0 0 28px;
}
.e-block-copy .lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 600;
  margin-bottom: 24px;
}
.e-block-copy p {
  color: var(--body-soft);
  font-size: 16px;
  line-height: 1.7;
}
.e-block-copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.e-block-copy li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  font-size: 15px;
  color: var(--body);
}
.e-block-copy li:first-child { border-top: 0; }
.e-block-copy li .dot {
  width: 22px; height: 22px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.e-block-copy li .dot svg { width: 12px; height: 12px; }
.e-block-copy li strong {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}

/* Editorial visual frame for each E */
.e-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,37,64,0.25);
}
.e-visual image-slot { width: 100%; height: 100%; --is-bg: rgba(10,37,64,0.04); --is-border: rgba(10,37,64,0.08); }
.e-visual .tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10,37,64,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 3px;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.e-visual .tag em { color: var(--gold); font-style: normal; }

/* Inset detail visual */
.e-visual-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 20px;
}
.e-visual-pair .e-visual:nth-child(2) { aspect-ratio: 4/5; align-self: end; transform: translateY(40px); }

.e-block.empower { background: linear-gradient(180deg, #fff 0%, #fbf7ee 100%); }
.e-block.educate { background: var(--navy); color: #fff; }
.e-block.educate h3 { color: #fff; }
.e-block.educate .lede { color: rgba(255,255,255,0.92); }
.e-block.educate p { color: rgba(255,255,255,0.72); }
.e-block.educate li { color: rgba(255,255,255,0.88); border-top-color: rgba(255,255,255,0.12); }
.e-block.educate li strong { color: var(--gold); }
.e-block.educate li .dot { background: rgba(253,185,19,0.18); color: var(--gold); }
.e-block.educate .e-numeral { color: #fff; opacity: 0.05; }
.e-block.educate::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(0,115,230,0.15), transparent 60%);
  pointer-events: none;
}
.e-block.educate .e-visual { box-shadow: 0 30px 80px rgba(0,0,0,0.5); }

.e-block.entertain { background: linear-gradient(180deg, #fbf7ee 0%, #fff 100%); }

/* =========================================================================
   LIFESTYLE COLLAGE — magazine spread
   ========================================================================= */
.lifestyle {
  background: var(--navy-deep);
  color: #fff;
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.lifestyle::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 50%, rgba(253,185,19,0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 50%, rgba(0,115,230,0.10), transparent 70%);
  pointer-events: none;
}
.lifestyle .container { position: relative; }
.lifestyle-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 760px) { .lifestyle-head { grid-template-columns: 1fr; } }
.lifestyle-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.035em;
  max-width: 720px;
  line-height: 1;
}
.lifestyle-head h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.lifestyle-head .note {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 200px;
}

.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 16px;
}
@media (max-width: 900px) { .collage { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .collage { grid-template-columns: repeat(2, 1fr); } }

.collage-cell {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.collage-cell image-slot {
  width: 100%; height: 100%;
  --is-bg: rgba(255,255,255,0.03);
  --is-border: rgba(255,255,255,0.10);
  --is-color: rgba(255,255,255,0.45);
}
.collage-cell .cap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.collage-cell .cap em { color: var(--gold); font-style: normal; }

/* spans for magazine feel */
.c-1 { grid-column: span 3; grid-row: span 2; }
.c-2 { grid-column: span 3; grid-row: span 2; }
.c-3 { grid-column: span 2; grid-row: span 1; }
.c-4 { grid-column: span 2; grid-row: span 1; }
.c-5 { grid-column: span 2; grid-row: span 1; }
.c-6 { grid-column: span 1; grid-row: span 2; }
.c-7 { grid-column: span 1; grid-row: span 2; }
.c-8 { grid-column: span 1; grid-row: span 2; }
.c-9 { grid-column: span 1; grid-row: span 2; }
.c-10 { grid-column: span 1; grid-row: span 2; }
.c-11 { grid-column: span 1; grid-row: span 2; }
.c-12 { grid-column: span 3; grid-row: span 1; }
.c-13 { grid-column: span 3; grid-row: span 1; }
@media (max-width: 900px) {
  .c-1, .c-2 { grid-column: span 4; grid-row: span 2; }
  .c-3, .c-4, .c-5 { grid-column: span 2; grid-row: span 1; }
  .c-6, .c-7, .c-8, .c-9, .c-10, .c-11 { grid-column: span 2; grid-row: span 2; }
  .c-12, .c-13 { grid-column: span 4; grid-row: span 1; }
}
@media (max-width: 540px) {
  .c-1, .c-2 { grid-column: span 2; grid-row: span 2; }
  .c-3, .c-4, .c-5, .c-12, .c-13 { grid-column: span 2; grid-row: span 1; }
  .c-6, .c-7, .c-8, .c-9, .c-10, .c-11 { grid-column: span 1; grid-row: span 2; }
}

/* =========================================================================
   INSIDE MEMBERSHIP — value grid (replaces SKYSHARE solo + value stack)
   ========================================================================= */
.inside {
  background: #fff;
  padding: var(--section-y) 0;
}
.inside-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.inside-head .eyebrow { justify-content: center; display: inline-flex; }
.inside-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 1;
}
.inside-head h2 em { font-style: italic; color: var(--gold-warm); font-weight: 400; }
.inside-head p { color: var(--body-soft); font-size: 18px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(253,185,19,0.4);
  box-shadow: 0 18px 40px rgba(10,37,64,0.10);
}
.feature.tall { grid-row: span 2; background: var(--navy); color: #fff; border-color: transparent; }
.feature.tall h3 { color: #fff; }
.feature.tall p { color: rgba(255,255,255,0.75); }
.feature.tall .feature-icon { background: rgba(253,185,19,0.18); }

.feature-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.feature p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body-soft);
}
.feature .feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: "Lato", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.feature .feature-visual {
  margin-top: 24px;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* =========================================================================
   STATS BAR — bold numbers
   ========================================================================= */
.stats-bar {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(253,185,19,0.08), transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  text-align: center;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; } }
.stat-cell {
  position: relative;
  padding: 0 20px;
}
.stat-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: rgba(255,255,255,0.10);
}
@media (max-width: 760px) {
  .stat-cell:not(:last-child)::after { display: none; }
}
.stat-num {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 12px;
}
.stat-label {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
