/* ==========================================================================
   SUBPAGE.CSS (FULL CLEAN)
   - removes duplicate blocks
   - keeps your exact look
   - fixes FAQ dot “jump” by anchoring dot to .faq__q (question row)
   - keeps full-bleed sections + consistent wrap padding
   ========================================================================== */

/* =========================
   ROOT / TOKENS
========================= */
:root{
  --sub-border: rgba(255,255,255,0.10);
  --sub-border2: rgba(255,255,255,0.14);

  --sub-text: rgba(255,255,255,0.82);
  --sub-strong: rgba(255,255,255,0.92);
  --sub-muted: rgba(255,255,255,0.60);

  --sub-radius: 16px;
  --sub-radius-lg: 22px;

  --sub-wrap-pad: 2.5rem;
}

@media (max-width: 680px){
  :root{ --sub-wrap-pad: 1.5rem; }
}

/* =========================
   FULL-WIDTH SECTION BASE
========================= */
.sub-hero,
.sub-strip,
.sub-section,
.cta-band{
  width: 100%;
}

/* =========================
   WRAP (controls left/right padding + max width)
========================= */
.sub-wrap{
  width: 100%;
  max-width: var(--sub-max);
  margin: 0 auto;
  padding-inline: var(--sub-wrap-pad);
}

/* =========================
   TYPE
========================= */
.sub-h2{
  margin: 0;
  color: var(--sub-strong);
  letter-spacing: 0.01em;
}
.sub-h3{
  margin: 0 0 0.35rem;
  color: var(--sub-strong);
  font-weight: 700;
}
.sub-p{
  margin: 0.75rem 0 0;
  color: var(--sub-text);
  line-height: 1.6;
}
.sub-head{
  max-width: 980px;
  margin-bottom: 2.25rem;
}
.sub-head__desc{
  margin-top: 0.75rem;
  max-width: 820px;
  color: var(--sub-muted);
}

/* =========================
   HERO
========================= */
.sub-hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sub-border);
}

.sub-hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sub-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scale(1.12);
}

.sub-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(0,0,0,0.22), rgba(0,0,0,0.06)),
    linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0.08));
}

.sub-hero__inner{
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 5vw, 5rem) 0 clamp(1.75rem, 3vw, 2.5rem);
}

/* crumbs ABOVE eyebrow */
.crumbs{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  margin: 2rem 0 .85rem;
  font-size: .92rem;
  color: var(--sub-muted);
}
.crumbs a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.crumbs a:hover{ text-decoration: underline; }
.crumbs__sep{ opacity: .55; }

/* Grid */
.sub-hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: stretch;
}

/* Columns */
.sub-hero__left,
.sub-hero__right{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.1rem;
}

/* Left */
.sub-hero__eyebrow{
  margin: 0 0 0.6rem;
  font-size: clamp(0.75rem, 0.72rem + 0.55vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub-muted);
}

.sub-hero__title{
  margin: 0;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1.05;
  color: var(--sub-strong);
  width: 100%;
}

/* Right */
.sub-hero__right{ gap: 1.1rem; }

.sub-hero__lead{
  margin: 0;
  max-width: 56ch;
  color: var(--sub-text);
  line-height: 1.55;
  font-weight: 300;
}

.sub-hero__cta{ margin-top: 0; }

/* Hero layout responsive */
@media (max-width: 900px){
  .sub-hero__grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sub-hero__left,
  .sub-hero__right{
    padding: 0;
    justify-content: flex-start;
  }
  .sub-hero__inner{ padding-top: 6.5rem; }
}

@media (max-width: 980px){
  .sub-hero__grid{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .sub-hero__media img{ transform: scale(1.08); }
  .sub-hero__right{ padding: 1rem; }
}

/* Make the hero stack exactly one viewport tall on desktop */
@media (min-width: 901px){
  .hero-stack{
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
  }
  .sub-hero{ flex: 0 0 auto; }
  .hero-image{
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    height: auto !important;
  }
  .hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* default image fill */
.hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* super-wide tweak */
@media (min-width: 1800px){
  .hero-image{
    width: 100%;
    height: clamp(26vh, 68vw, 84vh);
    overflow: hidden;
  }
}

/* =========================
   SUB STRIP (3-up)
========================= */
.sub-strip{
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--sub-border);
  background: rgba(255,255,255,0.02);
}

.sub-strip__inner{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0rem;
}

.sub-strip__item{
  padding: 1.25rem;
  
  border-radius: var(--sub-radius);
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(10px);
}

.sub-strip__kicker{
  margin: 0 0 .4rem;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  color: red;
}

.sub-strip__text{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

@media (max-width: 980px){
  .sub-strip__inner{ grid-template-columns: 1fr; }
}

/* =========================
   SECTIONS
========================= */
.sub-section{
  position: relative;
  padding: 1rem 0;
  border-top: 1px solid var(--sub-border);
}

.sub-section--bg{
  background: radial-gradient(1200px 800px at 20% 10%, rgba(255,255,255,0.06), transparent 60%);
  border-top: 1px solid var(--sub-border);
  border-bottom: 1px solid var(--sub-border);
}

@media (max-width: 980px){
  .sub-section{ padding: 3.3rem 0; }
}

/* =========================
   BUTTONS
========================= */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .55rem;

  padding: .5rem 2.75rem .5rem 1.15rem;

  border-radius: 0;
  border: 1px solid var(--sub-border2);
  text-decoration: none;

  color: rgba(255,255,255,0.88);
  background: rgba(246, 13, 56, 0.857);
  backdrop-filter: blur(10px);

  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    padding .18s ease;

  width: 300px;
}

.btn::after{
  content: "→";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: .85;
  transition: transform .18s ease, opacity .18s ease;
}

.btn:hover::after{
  transform: translate(6px, -50%);
  opacity: 1;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgb(110, 0, 0);
  border-color: rgba(255,255,255,0.22);
}

/* =========================
   TWO COLUMN (overview)
========================= */
.sub-two{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 980px){
  .sub-two{ grid-template-columns: 1fr; }
}

.sub-bullets{
  margin-top: 1.6rem;
  display: grid;
  gap: 1.05rem;
}

.sub-bullet{
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--sub-border);
  background: rgba(0,0,0,0.30);
  border-radius: var(--sub-radius);
}

/* =========================
   INFO CARD (sticky aside)
========================= */
.info-card{
  position: sticky;
  top: 110px;
  padding: 1.4rem 1.35rem;
  border-radius: var(--sub-radius-lg);
  border: 1px solid var(--sub-border2);
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(12px);
}

@media (max-width: 980px){
  .info-card{ position: relative; top: 0; }
}

.info-card__eyebrow{
  margin: 0;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  font-weight: 700;
}

.info-card__title{
  margin: .6rem 0 0;
  color: rgba(255,255,255,0.92);
}

.info-card__list{
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.55;
}

.info-card__cta{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.1rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--sub-border2);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.info-card__cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
}

.info-card__meta{
  margin-top: 1rem;
  font-size: .95rem;
  color: rgba(255,255,255,0.70);
}

.info-card__meta a{ color: rgba(255,255,255,0.9); }

/* =========================
   CAPABILITIES GRID
========================= */
.cap-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

@media (max-width: 1100px){
  .cap-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .cap-grid{ grid-template-columns: 1fr; }
}

.cap-card{
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: var(--sub-radius);
  border: 1px solid var(--sub-border);
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.cap-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.20);
  background: rgba(0,0,0,0.44);
}

.cap-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--sub-border);
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
}

.cap-icon img{
  width: 26px;
  height: 26px;
  opacity: .9;
}

.cap-title{
  margin: .9rem 0 0;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  letter-spacing: .01em;
}

.cap-text{
  margin: .55rem 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

/* =========================
   STEPS
========================= */
.steps{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

@media (max-width: 980px){
  .steps{ grid-template-columns: 1fr; }
}

.step{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  border-radius: var(--sub-radius);
  border: 1px solid var(--sub-border);
  background: rgba(0,0,0,0.30);
}

.step__num{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--sub-border2);
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}

.step__title{
  margin: .1rem 0 0;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
}

.step__text{
  margin: .4rem 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

/* =========================
   SPLIT IMAGE + TEXT
========================= */
.sub-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 980px){
  .sub-split{ grid-template-columns: 1fr; }
}

.sub-photo{
  border-radius: var(--sub-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sub-border);
  background: rgba(0,0,0,0.35);
}

.sub-photo img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

@media (max-width: 980px){
  .sub-photo img{ height: 320px; }
}

.sub-checks{
  margin-top: 1.15rem;
  display: grid;
  gap: .65rem;
  color: rgba(255,255,255,0.74);
}

.sub-check{
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.5;
}

.check{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid var(--sub-border2);
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.9);
  flex: 0 0 auto;
}

/* =========================
   RELATED SERVICES
========================= */
.rel-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

@media (max-width: 1100px){
  .rel-grid{ grid-template-columns: 1fr; }
}

.rel-card{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  border-radius: var(--sub-radius-lg);
  border: 1px solid var(--sub-border);
  background: rgba(0,0,0,0.32);
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.rel-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.44);
}

.rel-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.rel-card__body{
  padding: 1.15rem 1.15rem 1.25rem;
}

.rel-card__title{
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
}

.rel-card__text{
  margin: .55rem 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.rel-card__more{
  display: inline-flex;
  margin-top: .9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

@media (max-width: 520px){
  .rel-card{ grid-template-columns: 1fr; }
  .rel-card__media img{ height: 180px; }
}

/* =========================
   CTA BAND
========================= */
.cta-band{
  padding: 3.5rem 0;
  border-top: 1px solid var(--sub-border);
  border-bottom: 1px solid var(--sub-border);
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255,255,255,0.07), transparent 60%),
    rgba(255,255,255,0.02);
}

.cta-band__inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 980px){
  .cta-band__inner{ grid-template-columns: 1fr; }
}

.cta-band__title{
  margin: .35rem 0 0;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.01em;
}

.cta-band__text{
  margin: .75rem 0 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.cta-band__actions{
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px){
  .cta-band__actions{ justify-content: flex-start; }
}

/* =========================
   SLIDE STACK (Magna-Flow)
========================= */
.slide-stack{
  position: relative;
  background-color: white;
}

.slide-stack__inner{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;

  width: 100%;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);

  max-width: 1600px;
  margin-inline: auto;
}

.slide-stack__left{
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.slide-stack__left-inner{ will-change: transform; }

.slide-panel{
  height: 100vh;
  display: grid;
  align-content: center;
  padding-right: clamp(0rem, 1vw, 1rem);
}

.slide-eyebrow{
  display:flex;
  align-items:center;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: .12em;
  color: rgba(0, 0, 0, 0.748);
}
.slide-eyebrow .line{
  height: 1px;
  background: rgba(0, 0, 0, 0.555);
  flex: 1;
}

/* Slightly smaller + responsive clamps */
.slide-panel h3{
  font-size: clamp(1.85rem, 2.6vw, 3.35rem); /* was clamp(2.2rem, 3.2vw, 4rem) */
  margin: 0 0 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: black;
}

.slide-panel .lead{
  max-width: 46ch; /* optional: keep or remove */
  font-size: clamp(1.05rem, 1.05vw + 0.7rem, 1.22rem); /* was 1.3rem static */
  line-height: 1.6;
  margin: 0 0 1rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.96);
}
.slide-panel .bullets{
  margin: 0;
  padding-left: 1.05rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  font-size: 0.95rem;
}
.slide-panel .bullets li{ margin: .25rem 0; }

.slide-stage{ position: relative; }

.slide-stage__mask{
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1 / 1;
  transform: translateZ(0);
}

.slide-stage__mask .slide-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}

.slide-panel__media{ display:none; }

@media (max-width: 900px){
  .slide-stack__right{ display:none; }

  .slide-stack__inner{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 2.25rem;
    padding-inline: clamp(1.25rem, 4vw, 3.5rem);
    gap: 1.75rem;
  }

  .slide-stack__left{
    height: auto;
    overflow: visible;
  }

  .slide-panel{
    height: auto;
    padding: 1.25rem 0;
  }

  .slide-panel__media{
    display:block;
    margin-top: 1rem;
    border-radius: 16px;
    overflow:hidden;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.06);
  }

  .slide-panel__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
}

/* optional heading */
.slide-stack-wrap{
  background-color: white;
  color: black !important;
}
.slide-stack-wrap__head{
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}
.slide-stack-wrap__head .eyebrow{
  margin: 0 0 .55rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .75rem;
  color: rgba(0, 0, 0, 0.65);
}
.slide-stack-wrap__title{
  margin: 0;
  font-size: clamp(2.0rem, 3vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: black;
}

/* =========================
   SUMMARY (2-col / capabilities list)
========================= */
.summary{
  --padX: clamp(1.25rem, 4vw, 3rem);
  --padY: clamp(2rem, 4vw, 3.25rem);

  --line: rgba(255, 255, 255, 0.157);
  --line-strong: rgba(255, 255, 255, 0.23);

  --text: rgba(255,255,255,0.82);
  --text-strong: rgba(255,255,255,0.94);

  --fs-eyebrow: clamp(.75rem, .55vw + .55rem, .9rem);
  --fs-title:   clamp(1.6rem, 1.4vw + 1.15rem, 2.5rem);
  --fs-body:    clamp(.98rem, .35vw + .9rem, 1.15rem);
  --fs-item:    clamp(1rem, .55vw + .9rem, 1.25rem);

  --r1: rgb(160, 18, 18);
  --r2: rgb(185, 24, 24);
  --r3: rgb(210, 30, 30);
  --r4: rgb(235, 44, 44);
  --r5: rgb(255, 70, 70);

  background: #000;
  color: var(--text);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.summary *, .summary *::before, .summary *::after{ border-radius: 0 !important; }

.summary__inner{
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.summary__left{
  padding: var(--padY) var(--padX);
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.summary__eyebrow{
  margin: 0 0 .65rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.60);
}

.summary__title{
  margin: 0 0 .9rem;
  font-size: var(--fs-title);
  line-height: 1.08;
  font-weight: 400;
  color: var(--text-strong);
}

.summary__text{
  margin: 0;
  max-width: 62ch;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: rgba(255,255,255,0.98);
  font-weight: 100;
}

.summary__right{
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-rows: auto 1fr;
}

.summary__label{
  margin: 0;
  padding: 1.05rem var(--padX);
  border-bottom: 1px solid var(--line);
  font-size: clamp(.8rem, .5vw + .65rem, .95rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.summary__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}

.summary__item{
  position: relative;
  display: flex;
  align-items: center;

  padding: clamp(1rem, 1vw + .7rem, 1.25rem) var(--padX);
 

  border-bottom: 1px solid var(--line);

  font-size: var(--fs-item);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.35;

  background-repeat: no-repeat;
  background-position: left top;
  background-size: 0% 100%;

  transition:
    background-size 320ms cubic-bezier(.22,1,.36,1),
    color 220ms cubic-bezier(.22,1,.36,1);
}

.summary__item:last-child{ border-bottom: none; }

.summary__list > .summary__item:nth-child(1){ background-image: linear-gradient(var(--r1), var(--r1)); }
.summary__list > .summary__item:nth-child(2){ background-image: linear-gradient(var(--r2), var(--r2)); }
.summary__list > .summary__item:nth-child(3){ background-image: linear-gradient(var(--r3), var(--r3)); }
.summary__list > .summary__item:nth-child(4){ background-image: linear-gradient(var(--r2), var(--r2)); }
.summary__list > .summary__item:nth-child(5){ background-image: linear-gradient(var(--r1), var(--r1)); }

@media (hover:hover) and (pointer:fine){
  .summary__item:hover{
    background-size: 100% 100%;
    color: #fff;
  }
}

.summary__item{
  --dotScale: 1;
  --pulseScale: .7;
  --pulseAlpha: 0;
}



@media (max-width: 980px){
  .summary__inner{ grid-template-columns: 1fr; }
  .summary__right{
    border-left: 0;
    border-top: 0px solid var(--line-strong);
  }
}

/* =========================
   FAQ (2-col / details list)
   (styled to match SUMMARY)
========================= */
.faq{
  --padX: clamp(1.25rem, 4vw, 3rem);
  --padY: clamp(2rem, 4vw, 3.25rem);

  --line: rgba(255, 255, 255, 0.159);
  --line-strong: rgba(255, 255, 255, 0.22);

  --text: rgba(255,255,255,0.82);
  --text-strong: rgba(255,255,255,0.94);

  --fs-eyebrow: clamp(.75rem, .55vw + .55rem, .9rem);
  --fs-title:   clamp(1.6rem, 1.4vw + 1.15rem, 2.5rem);
  --fs-body:    clamp(.98rem, .35vw + .9rem, 1.15rem);
  --fs-q:       clamp(1rem, .55vw + .9rem, 1.25rem);
  --fs-a:       clamp(.95rem, .35vw + .85rem, 1.08rem);

  --r1: rgb(160, 18, 18);
  --r2: rgb(185, 24, 24);
  --r3: rgb(210, 30, 30);
  --r4: rgb(235, 44, 44);
  --r5: rgb(255, 70, 70);

  width: 100%;
  background:#000;
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
}

/* keep your “no radius” vibe */
.faq *, .faq *::before, .faq *::after{ border-radius: 0 !important; }

/* layout container */
.faq__inner{
  width: 100%;
  max-width: none;
  margin: 0;

  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  align-items: stretch;
}

/* LEFT */
.faq__left{
  padding: var(--padY) var(--padX);
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.faq__eyebrow{
  margin: 0 0 .65rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.60);
}

.faq__title{
  margin: 0 0 .9rem;
  font-size: var(--fs-title);
  line-height: 1.08;
  font-weight: 400;
  color: var(--text-strong);
}

.faq__text{
  margin: 0;
  max-width: 62ch;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: rgba(255,255,255,0.98);
  font-weight: 100;
}

/* RIGHT */
.faq__right{
  border-left: 1px solid var(--line-strong);
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.faq__label{
  margin: 0;
  padding: 1.05rem var(--padX);
  border-bottom: 1px solid var(--line);
  font-size: clamp(.8rem, .5vw + .65rem, .95rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.faq__list{
  margin: 0;
  padding: 0;
  display: grid;
  width: 100%;
}

/* item row */
.faq__item{
  position: relative;
  border-bottom: 1px solid var(--line);

  background-repeat: no-repeat;
  background-position: left top;
  background-size: 0% 100%;

  transition: background-size 320ms cubic-bezier(.22,1,.36,1);
}
.faq__item:last-child{ border-bottom: none; }

.faq__list > .faq__item:nth-child(1){ background-image: linear-gradient(var(--r1), var(--r1)); }
.faq__list > .faq__item:nth-child(2){ background-image: linear-gradient(var(--r2), var(--r2)); }
.faq__list > .faq__item:nth-child(3){ background-image: linear-gradient(var(--r3), var(--r3)); }
.faq__list > .faq__item:nth-child(4){ background-image: linear-gradient(var(--r2), var(--r2)); }
.faq__list > .faq__item:nth-child(5){ background-image: linear-gradient(var(--r1), var(--r1)); }

@media (hover:hover) and (pointer:fine){
  .faq__item:hover{ background-size: 100% 100%; }
}

/* Question row */
.faq__q{
  list-style: none;
  cursor: pointer;

  display:flex;
  align-items:center;

  padding: clamp(1rem, 1vw + .7rem, 1.25rem) var(--padX);
  padding-left: calc(var(--padX) + 18px);

  font-size: var(--fs-q);
  font-weight: 650;
  line-height: 1.35;
  color: rgba(255,255,255,0.92);

  user-select: none;

  position: relative; /* anchor for dot/ring */
}

.faq__q::-webkit-details-marker{ display:none; }
.faq__q::marker{ content:""; }

/* Answer */
.faq__a{
  padding: 0 var(--padX) 1.15rem;
  padding-left: calc(var(--padX) + 18px);
  max-width: 72ch;

  font-size: var(--fs-a);
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  font-weight: 100;
}

/* ---- DOT FIX (final) ----
   Remove old dot on <details> so it never jumps.
   Draw dot/ring on .faq__q so it stays glued to the question line.
*/
.faq__item::before,
.faq__item::after{
  content: none !important;
}

.faq__q::before{
  content:"";
  position:absolute;
  left: var(--padX);
  top: 50%;
  transform: translateY(-50%) scale(var(--dotScale, 1));
  width: 7px;
  height: 7px;
  border-radius: 999px !important;
  z-index: 2;

  background: rgb(220, 38, 38);
  box-shadow:
    0 0 6px rgba(220,38,38,.65),
    0 0 14px rgba(220,38,38,.35);
}

.faq__q::after{
  content:"";
  position:absolute;
  left: calc(var(--padX) + 3.5px);
  top: 50%;
  transform: translate(-50%, -50%) scale(var(--pulseScale, .7));
  width: 34px;
  height: 34px;
  border-radius: 999px !important;
  z-index: 1;
  pointer-events: none;

  background: radial-gradient(
    circle,
    rgba(220,38,38,0) 45%,
    rgba(220,38,38,var(--pulseAlpha, 0)) 55%,
    rgba(220,38,38,0) 70%
  );

  filter: drop-shadow(0 0 10px rgba(220,38,38, calc(var(--pulseAlpha, 0) * .9)));
}

/* open state */
.faq__item[open] .faq__q{ color: #fff; }
@media (hover:hover) and (pointer:fine){
  .faq__item[open]{ background-size: 100% 100%; }
}

/* mobile */
@media (max-width: 980px){
  .faq__inner{ grid-template-columns: 1fr; }

  .faq__right{
    border-left: 0;
    border-top: 0px solid var(--line-strong);
  }
}

/* =========================
   HUB CARDS (Section)
========================= */
.hub-cards{
  position: relative;
  overflow: hidden;
  max-width: 1800px;
  margin: 0 auto;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 5rem 0;
}

.hub-cards::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.318);
  pointer-events:none;
}

.hub-cards__inner{
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 4rem;
}

.hub-cards__header{
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: .6rem;
}

.hub-cards__title{
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hub-cards__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

/* card base */
.hub-card{
  position: relative;
  overflow: visible;
  isolation: isolate;

  transform: translateZ(0);
  transform-origin: center;

  min-height: 500px;
  min-width: 250px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  padding: 1.35rem 1.35rem 1.25rem;

  border: 1px solid rgba(255,255,255,0.12);
  background: #000;
  color: rgba(255,255,255,0.92);
  text-decoration: none;

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* NEW background system */
.hub-card__bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hub-card__bg-img,
.hub-card__overlay{
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}

.hub-card__bg-img{
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center;
  transition: transform .35s ease;
  backface-visibility: hidden;
}

.hub-card__overlay{
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.70) 100%
  );
  opacity: 1;
  transition: opacity .25s ease;
  backface-visibility: hidden;
}

/* legacy media support */
.hub-card__media{
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.hub-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* text */
.hub-card__title,
.hub-card__desc,
.hub-card__btn{
  position: relative;
  z-index: 2;
}

.hub-card__title{
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .015em;
}

.hub-card__desc{
  margin: 0 0 1rem;
  max-width: 300px;
  font-size: .9rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.68);
}

.hub-card__btn{
  margin-top: auto;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,60,60,0.25);

  background: rgba(255, 43, 43, 0.48);
  color: rgba(255,255,255,0.92);

  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

@media (hover:hover) and (pointer:fine){
  .hub-card:hover .hub-card__btn{
    background: rgba(255, 60, 60, 0.95);
    border-top-color: rgba(255, 90, 90, 0.9);
  }
}

/* arrow box */
.hub-card__arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  line-height: 0;
}
.hub-card__arrow img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;

  filter:
    brightness(0)
    saturate(100%)
    invert(18%)
    sepia(94%)
    saturate(7480%)
    hue-rotate(355deg)
    brightness(102%)
    contrast(110%);
}
@media (hover:hover) and (pointer:fine){
  .hub-card:hover .hub-card__arrow img{ filter: none; }
}

/* hover effects */
@media (hover:hover) and (pointer:fine){
  .hub-card:hover{ transform: scale(0.97); }
  .hub-card:hover .hub-card__bg-img{ transform: scale(1.06); }
  .hub-card:hover .hub-card__overlay{ opacity: 0.05; }
  .hub-card:hover .hub-card__arrow{ transform: translateX(3px); }
  .hub-card:hover .hub-card__media{
    transform: translateY(-3px);
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45));
  }
}

/* outside corner lines */
.hub-card::after{
  content:"";
  position:absolute;
  inset: -12px;
  pointer-events:none;
  z-index: 3;
  opacity: 0;

  background:
    linear-gradient(#ff0000,#ff0000) left top / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) left top / 2px 0px no-repeat,
    linear-gradient(#ff0000,#ff0000) right top / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) right top / 2px 0px no-repeat,
    linear-gradient(#ff0000,#ff0000) left bottom / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) left bottom / 2px 0px no-repeat,
    linear-gradient(#ff0000,#ff0000) right bottom / 0px 2px no-repeat,
    linear-gradient(#ff0000,#ff0000) right bottom / 2px 0px no-repeat;

  transition: opacity .18s ease, background-size .35s cubic-bezier(.2,.9,.2,1);
}

@media (hover:hover) and (pointer:fine){
  .hub-card:hover::after{
    opacity: 1;
    background-size:
      22px 2px, 2px 22px,
      22px 2px, 2px 22px,
      22px 2px, 2px 22px,
      22px 2px, 2px 22px;
  }
}

/* responsive */
@media (max-width: 900px){
  .hub-cards{ padding: 0; }
  .hub-cards__inner{ padding: 0; }
  .hub-card{ min-height: 0; }
}

@media (max-width: 768px){
  .hub-cards__grid{
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hub-card{
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    transform: none;
  }
  .hub-cards__header{
    padding: 1.25rem;
    margin: 1rem 0 1.25rem;
  }
}

/* =========================
   COVERAGE SECTION (FULL)
   - full-height section
   - text above map
   - map fills remaining space
========================= */
/* =========================
   COVERAGE (PAGE-HERO STYLE)
   - map is full-bleed background
   - text sits above (centered)
   - optional overlay for contrast
========================= */

.coverage-section{
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;

  height: 100vh;

  /* ✅ center content */
  display: grid;
  place-items: center;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Background layer (like .page-hero__media) */
.coverage-field{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  margin: 0;
  max-width: none;
  border-radius: 0;
  overflow: hidden;

  z-index: 0;
  pointer-events: none;
}

/* Map image */
.coverage-bg{
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.035),
      rgba(0, 0, 0, 0.04)
    ),
    url("/images/map3.png") center / cover no-repeat;
}

/* Overlay (like .page-hero__overlay) */
.coverage-section::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(900px 600px at 50% 15%, rgba(0, 0, 0, 0.057), rgba(0, 0, 0, 0.1)),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0, 0, 0, 0.173));
  pointer-events: none;
}

/* Text content layer (like .page-hero__inner) */
.coverage-inner{
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1600px;
  margin: 0 auto;

  /* ✅ balanced padding but still centered */
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);

  text-align: center;
}

/* Text */
.coverage-eyebrow{
  margin: 0 0 .4rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .85rem;
  opacity: .65;
  color: #fff;
}

.coverage-title{
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.04;
  color: #fff;
}

.coverage-sub{
  margin: .9rem auto 0;
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.15vw, 1.25rem);
  opacity: .75;
}

/* Dots */
.coverage-dot{
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;

  opacity: 1;
  transform: scale(0.6);

  z-index: 2; /* above map + overlay */
  overflow: visible;
}

.coverage-dot.is-active{ background: #e10600; }

.coverage-dot.is-active::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;

  transform: translate(-50%, -50%) scale(0.35);
  opacity: 1;

  border: 2px solid rgba(225, 6, 0, 0.85);
  filter: drop-shadow(0 10px 18px rgba(225,6,0,0.22));
  pointer-events:none;
  will-change: transform, opacity;
}

/* Optional: tighter mobile height like your hero */
@media (max-width: 680px){
  .coverage-section{
    min-height: 30vh;
    min-height: 30dvh;
  }
  .coverage-inner{
    margin-top: 2rem;
  }
}
/* =========================
   OPTIONAL: Rounded map on desktop
========================= */
@media (min-width: 900px){
  .coverage-field{
    margin: 0 clamp(1.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: 18px;
    
  }

  /* keep divider aligned to rounded container */
  .coverage-field::before{
    left: 0;
    right: 0;
  }
}

/* =========================
   OPTIONAL: Tighter text spacing on mobile
========================= */
@media (max-width: 680px){
  .coverage-inner{
    padding:
      2.5rem
      1.5rem
      1.75rem;
  }
}
/* =========================
   EYEBROW STANDARD (sitewide)
========================= */
:root{
  --eyebrow-size: clamp(.75rem, .75vw + .75rem, 1.2rem);
  --eyebrow-track: .14em;
}

/* apply to every eyebrow style you’re using */
.eyebrow,
.sub-hero__eyebrow,
.summary__eyebrow,
.faq__eyebrow,
.coverage-eyebrow,
.sub-strip__kicker{
  font-size: var(--eyebrow-size) !important;
  letter-spacing: var(--eyebrow-track) !important;
  text-transform: uppercase;
}

