/* =========================
   Endura — Why Metal Page
   Dark navy / black + blue-shine brand system
   ========================= */

*,
*::before,
*::after { box-sizing: border-box; }

html,
body { min-height: 100%; }

body{
  margin: 0;
  background: #000;
  color: #f5f7ff;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.45;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
img{ display:block; max-width:100%; }
em{ font-style: normal; }

:root{
  --ink: #000000;
  --navy: #050b13;
  --navy2: #07111e;
  --steel: #0b1624;

  --blue: #0f5096;
  --blue2: #2e77b7;
  --blue3: #62a8e8;

  --text: #f5f7ff;
  --muted: rgba(245,247,255,0.72);
  --faint: rgba(245,247,255,0.55);

  --padX: clamp(14px, 2.1vw, 26px);
  --padTop: max(10px, env(safe-area-inset-top));
  --logoH: clamp(96px, 6.4vw, 132px);

  --max: 1180px;
}

::selection{
  background: rgba(46,119,183,0.42);
  color: #fff;
}

/* =========================
   HERO
   ========================= */

.pageHero{
  position: relative;
  height: clamp(540px, 76vh, 860px);
  min-height: 560px;
  overflow: clip;
  isolation: isolate;
  background: #000;
}

.pageHero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.05) saturate(1.04) brightness(1.02);
  transform: scale(1.015);
  z-index: -4;
}

.pageHero__scrim{
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(900px 540px at 18% 18%, rgba(46,119,183,0.16), transparent 62%),
    radial-gradient(900px 620px at 74% 26%, rgba(46,119,183,0.09), transparent 64%),
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.64) 31%, rgba(0,0,0,0.28) 67%, rgba(0,0,0,0.54) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.22) 38%, rgba(0,0,0,0.70) 100%);
}

.pageHero__scrim::after{
  content:"";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, #000 94%);
  pointer-events: none;
}

.pageHero__grain{
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.048;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* =========================
   NAV / HUD
   ========================= */

.hud{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--padTop) var(--padX) 0;
  z-index: 50;
}

.hud__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  line-height: 0;
  position: relative;
  z-index: 52;
}

.brand__logo{
  height: var(--logoH);
  width: auto;
  max-width: min(560px, 60vw);
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 14px 28px rgba(0,0,0,0.66))
    drop-shadow(0 0 18px rgba(46,119,183,0.16));
}

.nav{
  display: flex;
  align-items: center;
  gap: 12px;
}

.navLinks{
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
}

.nav__link{
  position: relative;
  padding: 12px 0;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  color: rgba(245,247,255,0.88);
}

.nav__link:hover,
.nav__link--active{
  color: rgba(255,255,255,0.98);
}

.nav__link::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(46,119,183,0.98), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 170ms ease;
  opacity: 0.95;
}

.nav__link:hover::after,
.nav__link--active::after{
  transform: scaleX(1);
}

.navCall{
  display: none;
}

.navToggle{
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.34);
  color: rgba(245,247,255,0.94);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 46px rgba(0,0,0,0.42);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  cursor: pointer;
  user-select: none;
}

.navToggle__icon{
  width: 16px;
  height: 10px;
  position: relative;
  display: block;
}

.navToggle__icon::before,
.navToggle__icon::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(245,247,255,0.94);
  transition: transform 170ms ease, top 170ms ease, bottom 170ms ease;
}

.navToggle__icon::before{ top: 0; }
.navToggle__icon::after{ bottom: 0; }

.navToggle__label{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

/* =========================
   BUTTONS
   ========================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 10px;

  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.28);
  color: #f5f7ff;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 18px 46px rgba(0,0,0,0.35);

  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, filter 140ms ease;
  user-select: none;
  white-space: nowrap;
}

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

.btn--primary{
  border-color: rgba(46,119,183,0.58);
  background: linear-gradient(180deg, rgba(46,119,183,0.98), rgba(11,63,123,0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -18px 28px rgba(0,0,0,0.22),
    0 18px 52px rgba(0,0,0,0.46),
    0 0 0 1px rgba(46,119,183,0.08);
}

.btn--primary:hover{
  filter: brightness(1.06) contrast(1.02);
  border-color: rgba(98,168,232,0.62);
}

.btn--ghost{
  background: rgba(0,0,0,0.34);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}

.btn__arrow{
  font-weight: 950;
  transform: translateY(-1px);
  transition: transform 140ms ease;
}

.btn:hover .btn__arrow{
  transform: translateY(-1px) translateX(2px);
}

/* =========================
   HERO CONTENT
   ========================= */

.pageHero__content{
  position: absolute;
  left: var(--padX);
  bottom: clamp(72px, 12vh, 132px);
  z-index: 6;

  width: min(760px, calc(100vw - (2 * var(--padX))));
  display: grid;
  gap: 14px;
}

.pageHero__eyebrow{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 820;
  color: rgba(245,247,255,0.68);
}

.pageHero__line{
  position: relative;
  width: min(520px, 72vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46,119,183,0.98), rgba(46,119,183,0.14), transparent);
  opacity: 0.95;
}

.pageHero__line::after{
  content:"";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(46,119,183,0.98);
  transform: translateY(-50%);
  box-shadow: 0 0 0 10px rgba(46,119,183,0.12);
}

.pageHero__title{
  margin: 0;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 0.88;
  font-size: clamp(2.15rem, 5.4vw, 5.15rem);
  color: rgba(255,255,255,0.97);
  text-shadow: 0 30px 96px rgba(0,0,0,0.72);
}

.pageHero__title span{
  display: block;
}

.pageHero__title em{
  color: var(--blue2);
  text-shadow:
    0 30px 96px rgba(0,0,0,0.72),
    0 0 34px rgba(46,119,183,0.34);
}

.pageHero__sub{
  margin: 2px 0 0;
  max-width: 64ch;
  color: rgba(245,247,255,0.74);
  font-size: clamp(1.0rem, 1.3vw, 1.12rem);
  line-height: 1.58;
}

.pageHero__actions{
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--hero{
  min-height: 48px;
}

/* =========================
   SHARED SECTIONS
   ========================= */

.page{
  position: relative;
  background:
    radial-gradient(1000px 620px at 16% 0%, rgba(46,119,183,0.18), transparent 62%),
    radial-gradient(900px 720px at 86% 18%, rgba(46,119,183,0.10), transparent 64%),
    linear-gradient(180deg, #03060a 0%, #07101b 36%, #03060a 100%);
}

.section{
  position: relative;
  padding: clamp(74px, 7vw, 118px) 0;
  overflow: hidden;
}

.section::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 16% 12%, rgba(46,119,183,0.13), transparent 62%),
    radial-gradient(900px 700px at 92% 16%, rgba(255,255,255,0.045), transparent 64%),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, auto, 92px 92px, 92px 92px;
  opacity: 0.7;
}

.section__inner{
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--padX);
}

.blueDivider{
  border-top: 1px solid rgba(46,119,183,0.60);
}

.blueDivider::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(98,168,232,0.94), rgba(46,119,183,0.70), transparent);
  box-shadow:
    0 0 26px rgba(46,119,183,0.48),
    0 0 1px rgba(255,255,255,0.36);
}

.eyebrow{
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 820;
  color: rgba(245,247,255,0.66);
}

.section__title{
  margin: 0;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 0.94;
  font-size: clamp(1.9rem, 3.3vw, 3.05rem);
  color: rgba(255,255,255,0.96);
  text-shadow: 0 26px 88px rgba(0,0,0,0.55);
}

.section__title span{
  display: block;
  color: rgba(46,119,183,0.96);
}

.section__lead,
.section__sub{
  margin: 0;
  color: rgba(245,247,255,0.74);
  font-size: 1.04rem;
  line-height: 1.6;
  max-width: 68ch;
}

.section__lead + .section__lead{
  margin-top: 14px;
}

.sectionHead{
  max-width: 74ch;
  margin-bottom: clamp(20px, 3vw, 32px);
  display: grid;
  gap: 12px;
}

/* =========================
   INTRO / BENEFITS
   ========================= */

.split{
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(26px, 4vw, 68px);
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.split__text{
  color: rgba(245,247,255,0.76);
  font-size: 1.04rem;
  line-height: 1.62;
}

.split__text p{
  margin: 0;
}

.split__text p + p{
  margin-top: 14px;
}

.benefitGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.benefitCard,
.detailCard{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 24px);
  min-height: 210px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.032));
  border: 1px solid rgba(98,168,232,0.28);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 30px 120px rgba(0,0,0,0.36),
    0 0 0 1px rgba(46,119,183,0.08),
    0 0 22px rgba(46,119,183,0.13);

  isolation: isolate;
}

.benefitCard::before,
.detailCard::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(420px 240px at 18% 0%, rgba(46,119,183,0.24), transparent 70%),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: auto, 76px 76px;
  opacity: 0.8;
}

.benefitCard::after,
.detailCard::after,
.productCard::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(98,168,232,0.42);
  opacity: 0.78;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.035),
    0 0 18px rgba(46,119,183,0.18);
}

.benefitCard__num{
  display: inline-flex;
  margin-bottom: 38px;
  color: rgba(98,168,232,0.90);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 920;
  font-size: 0.74rem;
}

.benefitCard h3,
.detailCard h3{
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 950;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.96);
}

.benefitCard p,
.detailCard p{
  margin: 0;
  color: rgba(245,247,255,0.70);
  line-height: 1.5;
}

/* =========================
   FEATURE PANEL
   ========================= */

.section--seam{
  background:
    radial-gradient(900px 680px at 86% 0%, rgba(46,119,183,0.14), transparent 64%),
    linear-gradient(180deg, #050b12 0%, #03060a 100%);
}

.featurePanel{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(22px, 4vw, 66px);
  align-items: stretch;

  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(22px, 3.5vw, 42px);

  background:
    linear-gradient(180deg, rgba(0,0,0,0.72), rgba(7,14,24,0.78));
  border: 1px solid rgba(98,168,232,0.22);
  box-shadow:
    0 44px 160px rgba(0,0,0,0.42),
    0 0 0 1px rgba(46,119,183,0.06),
    0 0 42px rgba(46,119,183,0.12);

  isolation: isolate;
}

.featurePanel::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 520px at 12% 0%, rgba(46,119,183,0.24), transparent 62%),
    radial-gradient(900px 620px at 100% 110%, rgba(255,255,255,0.06), transparent 62%),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: auto, auto, 84px 84px;
  opacity: 0.88;
  z-index: -1;
}

.featurePanel__copy{
  display: grid;
  align-content: center;
  gap: 14px;
}

.featureSpecs{
  display: grid;
  align-content: center;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: clamp(18px, 3vw, 36px);
}

.specLine{
  position: relative;
  padding: 18px 0 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.specLine::before{
  content:"";
  position: absolute;
  left: 0;
  top: 27px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(46,119,183,0.95);
  box-shadow: 0 0 0 8px rgba(46,119,183,0.12);
}

.specLine span{
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 950;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.94);
}

.specLine p{
  margin: 0;
  color: rgba(245,247,255,0.70);
  line-height: 1.5;
}

/* =========================
   PRODUCTS
   ========================= */

.section--products{
  background:
    radial-gradient(1000px 680px at 8% 10%, rgba(46,119,183,0.16), transparent 62%),
    linear-gradient(180deg, #03060a 0%, #07111e 100%);
}

.productGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.productCard{
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 18px;
  background: #05070a;
  border: 1px solid rgba(98,168,232,0.28);
  box-shadow:
    0 34px 120px rgba(0,0,0,0.48),
    0 0 22px rgba(46,119,183,0.12);
  isolation: isolate;
}

.productCard img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.03);
  transform: scale(1.015);
  transition: transform 240ms ease, filter 240ms ease;
}

.productCard__shade{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.38) 48%, rgba(0,0,0,0.82) 100%);
}

.productCard__content{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.productCard__kicker{
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.70rem;
  font-weight: 860;
  color: rgba(245,247,255,0.66);
}

.productCard h3{
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 950;
  font-size: 1rem;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 20px 60px rgba(0,0,0,0.72);
}

.productCard p{
  margin: 0;
  color: rgba(245,247,255,0.72);
  line-height: 1.45;
  font-size: 0.95rem;
}

.productCard:hover img{
  transform: scale(1.06);
  filter: contrast(1.08) saturate(1.04);
}

.inlineCta{
  margin-top: clamp(16px, 2.3vw, 26px);
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: clamp(18px, 2.6vw, 28px);

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

  background:
    linear-gradient(180deg, rgba(0,0,0,0.72), rgba(7,14,24,0.78));
  border: 1px solid rgba(98,168,232,0.25);
  box-shadow:
    0 28px 110px rgba(0,0,0,0.34),
    0 0 24px rgba(46,119,183,0.12);
}

.inlineCta::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 320px at 20% 0%, rgba(46,119,183,0.22), transparent 64%),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  opacity: 0.84;
}

.inlineCta > *{
  position: relative;
  z-index: 1;
}

.inlineCta__eyebrow{
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 820;
  font-size: 0.72rem;
  color: rgba(245,247,255,0.60);
}

.inlineCta h3{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  color: rgba(255,255,255,0.96);
}

/* =========================
   USE CASES
   ========================= */

.section--useCases{
  background:
    radial-gradient(900px 620px at 88% 0%, rgba(46,119,183,0.14), transparent 64%),
    linear-gradient(180deg, #07111e 0%, #03060a 100%);
}

.useCases{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 4vw, 68px);
  align-items: start;
}

.checkList{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.checkList li{
  position: relative;
  overflow: hidden;
  padding: 16px 18px 16px 48px;
  border-radius: 14px;

  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(98,168,232,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 70px rgba(0,0,0,0.22),
    0 0 18px rgba(46,119,183,0.08);

  color: rgba(245,247,255,0.80);
  font-weight: 760;
}

.checkList li::before{
  content:"";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(46,119,183,0.98);
  box-shadow: 0 0 0 8px rgba(46,119,183,0.12);
}

/* =========================
   DETAILS
   ========================= */

.detailGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.detailCard{
  min-height: 220px;
}

/* =========================
   COMPARISON
   ========================= */

.section--compare{
  background:
    radial-gradient(900px 620px at 12% 0%, rgba(46,119,183,0.16), transparent 64%),
    linear-gradient(180deg, #050b12 0%, #03060a 100%);
}

.compareTableWrap{
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(98,168,232,0.26);
  background: rgba(0,0,0,0.36);
  box-shadow:
    0 34px 140px rgba(0,0,0,0.40),
    0 0 28px rgba(46,119,183,0.12);
}

.compareTable{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compareTable th,
.compareTable td{
  padding: 18px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.compareTable thead th{
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(245,247,255,0.62);
  background:
    linear-gradient(180deg, rgba(46,119,183,0.18), rgba(255,255,255,0.03));
}

.compareTable tbody th{
  width: 24%;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.92);
}

.compareTable td{
  color: rgba(245,247,255,0.74);
}

.compareTable tr:last-child th,
.compareTable tr:last-child td{
  border-bottom: none;
}

.compareTable td:nth-child(2){
  color: rgba(255,255,255,0.88);
  background: rgba(46,119,183,0.055);
}

/* =========================
   FINAL CTA
   ========================= */

.section--finalCta{
  background:
    radial-gradient(1100px 720px at 18% 0%, rgba(46,119,183,0.18), transparent 64%),
    linear-gradient(180deg, #03060a 0%, #000 100%);
}

.finalCta{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(24px, 3.4vw, 42px);

  display: grid;
  grid-template-columns: 1.15fr auto;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;

  background:
    linear-gradient(180deg, rgba(0,0,0,0.86), rgba(7,14,24,0.86));
  border: 1px solid rgba(98,168,232,0.26);
  box-shadow:
    0 42px 160px rgba(0,0,0,0.42),
    0 0 36px rgba(46,119,183,0.14);
  isolation: isolate;
}

.finalCta::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(46,119,183,0.30), transparent 62%),
    radial-gradient(900px 700px at 110% 120%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: auto, auto, 84px 84px;
  opacity: 0.86;
}

.finalCta__eyebrow{
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 820;
  color: rgba(245,247,255,0.68);
}

.finalCta h2{
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 0.96;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  color: rgba(255,255,255,0.96);
}

.finalCta p{
  margin: 0;
  color: rgba(245,247,255,0.76);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 58ch;
}

.finalCta__meta{
  margin-top: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 820;
  font-size: 0.74rem !important;
  color: rgba(245,247,255,0.58) !important;
}

.finalCta__actions{
  display: grid;
  gap: 10px;
  justify-items: start;
}

.btn--final{
  padding: 14px 18px;
}

.finalCta__actions p{
  color: rgba(245,247,255,0.62);
  font-size: 0.94rem;
}

/* =========================
   FOOTER
   ========================= */

.footer{
  background: linear-gradient(180deg, #05070a 0%, #000 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0 28px;
  color: #f5f7ff;
}

.footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--padX);
}

.footer__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.footer__brand{
  max-width: 58ch;
}

.footer__logoLink{
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer__logo{
  height: clamp(62px, 4.8vw, 78px);
  width: auto;
  max-width: min(520px, 78vw);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 58px rgba(0,0,0,0.60);
}

.footer__tagline{
  margin: 12px 0 6px;
  color: rgba(245,247,255,0.74);
  font-weight: 720;
  letter-spacing: 0.02em;
}

.footer__area{
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 820;
  font-size: 0.74rem;
  color: rgba(245,247,255,0.55);
}

.footer__contact{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.footer__contactLink{
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 6px 0;
  color: rgba(245,247,255,0.72);
}

.footer__contactLabel{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 880;
  font-size: 0.72rem;
  color: rgba(245,247,255,0.52);
}

.footer__contactValue{
  font-weight: 760;
  font-size: 0.96rem;
  color: rgba(245,247,255,0.84);
  word-break: break-word;
}

.footer__contactLink::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(46,119,183,0.85), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 170ms ease;
  opacity: 0.9;
}

.footer__contactLink:hover{
  color: rgba(245,247,255,0.95);
}

.footer__contactLink:hover .footer__contactValue{
  color: rgba(255,255,255,0.96);
}

.footer__contactLink:hover::after{
  transform: scaleX(1);
}

.footer__nav{
  display: grid;
  gap: 10px;
  justify-items: end;
  min-width: 160px;
}

.footer__link{
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 860;
  font-size: 0.78rem;
  color: rgba(245,247,255,0.72);
  padding: 6px 0;
}

.footer__link::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(46,119,183,0.9), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 170ms ease;
  opacity: 0.9;
}

.footer__link:hover,
.footer__link[aria-current="page"]{
  color: rgba(245,247,255,0.95);
}

.footer__link:hover::after,
.footer__link[aria-current="page"]::after{
  transform: scaleX(1);
}

.footer__link--cta{
  color: rgba(255,255,255,0.92);
}

.footer__bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy{
  color: rgba(245,247,255,0.60);
  font-size: 0.92rem;
}

.footer__fine{
  color: rgba(245,247,255,0.44);
  font-size: 0.92rem;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1120px){
  .navLinks{
    gap: 14px;
  }

  .nav__link{
    font-size: 0.72rem;
  }

  .btn{
    font-size: 0.72rem;
    padding: 11px 14px;
  }

  .benefitGrid,
  .productGrid,
  .detailGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .featureSpecs{
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-left: 0;
    padding-top: 8px;
  }

  .inlineCta{
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 920px){
  :root{
    --logoH: clamp(84px, 18vw, 112px);
  }

  .hud{
    position: absolute;
    z-index: 60;
  }

  .navToggle{
    display: inline-flex;
    position: fixed;
    top: calc(var(--padTop) + 14px);
    right: var(--padX);
    z-index: 1002;
  }

  .navCall{
    display: grid;
    place-items: center;
    position: fixed;
    top: calc(var(--padTop) + 14px);
    right: calc(var(--padX) + 92px);
    z-index: 1002;

    width: 42px;
    height: 42px;
    border-radius: 999px;

    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.34);
    color: rgba(245,247,255,0.94);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.06),
      0 18px 46px rgba(0,0,0,0.42);

    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
  }

  .navCall svg{
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .navLinks{
    position: fixed;
    left: var(--padX);
    right: var(--padX);
    top: calc(var(--padTop) + var(--logoH) + 12px);

    display: grid;
    gap: 8px;

    padding: 10px;
    border-radius: 18px;
    background: rgba(0,0,0,0.82);
    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);

    box-shadow:
      0 36px 120px rgba(0,0,0,0.74),
      0 0 30px rgba(46,119,183,0.12);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 1001;

    max-height: calc(100vh - (var(--padTop) + var(--logoH) + 28px));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navLinks .nav__link{
    display: block;
    padding: 12px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .navLinks .nav__link--active{
    background: rgba(46,119,183,0.16);
  }

  .navLinks .nav__link:hover{
    background: rgba(46,119,183,0.12);
  }

  .navLinks .nav__link::after{
    left: 12px;
    right: 12px;
  }

  .navLinks .btn{
    width: 100%;
    justify-content: center;
  }

  body.nav-open .navLinks{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .navToggle__icon::before{
    top: 4px;
    transform: rotate(45deg);
  }

  body.nav-open .navToggle__icon::after{
    bottom: 4px;
    transform: rotate(-45deg);
  }

  body.nav-open{
    overflow: hidden;
  }

  .pageHero{
    min-height: 660px;
    height: 100svh;
  }

  .pageHero__bg{
    object-position: center center;
  }

  .pageHero__scrim{
    background:
      radial-gradient(700px 460px at 78% 24%, rgba(46,119,183,0.13), transparent 62%),
      linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.58) 48%, rgba(0,0,0,0.26) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 34%, rgba(0,0,0,0.82) 100%);
  }

  .pageHero__content{
    bottom: calc(env(safe-area-inset-bottom) + 48px);
    gap: 12px;
  }

  .pageHero__title{
    font-size: clamp(2.35rem, 10.8vw, 4.0rem);
    line-height: 0.9;
  }

  .pageHero__sub{
    max-width: 42ch;
    font-size: 0.98rem;
  }

  .pageHero__actions{
    gap: 10px;
  }

  .btn--hero{
    min-height: 46px;
  }
}

@media (max-width: 720px){
  .section{
    padding: 68px 0;
  }

  .benefitGrid,
  .productGrid,
  .detailGrid{
    grid-template-columns: 1fr;
  }

  .benefitCard,
  .detailCard{
    min-height: 0;
  }

  .productCard{
    min-height: 280px;
  }

  .pageHero__actions{
    display: grid;
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .compareTableWrap{
    margin-left: calc(var(--padX) * -1);
    margin-right: calc(var(--padX) * -1);
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .footer__nav{
    justify-items: start;
  }
}

@media (max-width: 460px){
  .pageHero{
    min-height: 650px;
  }

  .brand__logo{
    max-width: 58vw;
  }

  .navToggle__label{
    display: none;
  }

  .navToggle{
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }

  .navCall{
    right: calc(var(--padX) + 54px);
  }

  .pageHero__content{
    bottom: calc(env(safe-area-inset-bottom) + 38px);
  }

  .pageHero__eyebrow{
    font-size: 0.70rem;
    letter-spacing: 0.18em;
  }

  .pageHero__title{
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

  .pageHero__sub{
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .section__title{
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .inlineCta,
  .featurePanel,
  .finalCta{
    border-radius: 18px;
  }

  .footer__contactLink{
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* =========================
   ACCESSIBILITY / MOTION
   ========================= */

:focus-visible{
  outline: 3px solid rgba(46,119,183,0.78);
  outline-offset: 3px;
  border-radius: 12px;
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================
   WHY METAL HERO — LAYOUT FIX
   Paste at bottom of why-metal.css
   ========================= */

@media (min-width: 921px){
  .pageHero{
    height: clamp(620px, 78vh, 840px);
    min-height: 640px;
  }

  .pageHero__bg{
    object-position: 64% center;
    filter: contrast(1.07) saturate(1.04) brightness(0.94);
    transform: scale(1.015);
  }

  .pageHero__scrim{
    background:
      radial-gradient(1000px 620px at 16% 22%, rgba(46,119,183,0.14), transparent 62%),
      radial-gradient(900px 680px at 78% 28%, rgba(46,119,183,0.08), transparent 66%),
      linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.82) 28%, rgba(0,0,0,0.42) 56%, rgba(0,0,0,0.54) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.22) 44%, rgba(0,0,0,0.76) 100%);
  }

  .pageHero__content{
    left: var(--padX);
    top: calc(var(--padTop) + var(--logoH) + clamp(38px, 5.4vh, 64px));
    bottom: auto;

    width: min(900px, calc(100vw - (2 * var(--padX))));
    max-width: 900px;

    gap: 13px;
  }

  .pageHero__eyebrow{
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    color: rgba(245,247,255,0.70);
  }

  .pageHero__line{
    width: min(520px, 48vw);
    margin: 2px 0 4px;
  }

  .pageHero__title{
    max-width: 900px;
    font-size: clamp(3rem, 4.65vw, 4.7rem);
    line-height: 0.88;
    letter-spacing: -0.035em;
  }

  .pageHero__title span{
    display: block;
    white-space: nowrap;
  }

  .pageHero__title em{
    color: var(--blue2);
    text-shadow:
      0 30px 96px rgba(0,0,0,0.74),
      0 0 34px rgba(46,119,183,0.36);
  }

  .pageHero__sub{
    max-width: 68ch;
    margin-top: 4px;
    font-size: clamp(1.02rem, 1.18vw, 1.12rem);
    line-height: 1.56;
    color: rgba(245,247,255,0.76);
  }

  .pageHero__actions{
    margin-top: 12px;
    gap: 12px;
  }

  .btn--hero{
    min-height: 50px;
    padding-inline: 18px;
  }
}

/* Tablet/mobile hero staging */
@media (max-width: 920px){
  .pageHero{
    min-height: 690px;
    height: 100svh;
  }

  .pageHero__bg{
    object-position: 62% center;
    filter: contrast(1.06) saturate(1.04) brightness(0.96);
    transform: scale(1.01);
  }

  .pageHero__scrim{
    background:
      radial-gradient(720px 480px at 78% 22%, rgba(46,119,183,0.12), transparent 62%),
      linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.68) 44%, rgba(0,0,0,0.34) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 36%, rgba(0,0,0,0.84) 100%);
  }

  .pageHero__content{
    left: var(--padX);
    top: auto;
    bottom: calc(env(safe-area-inset-bottom) + 44px);
    width: min(560px, calc(100vw - (2 * var(--padX))));
    max-width: 560px;
    gap: 11px;
  }

  .pageHero__title{
    font-size: clamp(2.25rem, 10.2vw, 4rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
  }

  .pageHero__title span{
    display: block;
  }

  .pageHero__title em{
    color: var(--blue2);
  }

  .pageHero__sub{
    max-width: 42ch;
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

/* Small mobile: keep it tight and readable */
@media (max-width: 520px){
  .pageHero{
    min-height: 660px;
  }

  .pageHero__content{
    bottom: calc(env(safe-area-inset-bottom) + 34px);
  }

  .pageHero__eyebrow{
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .pageHero__line{
    width: min(300px, 76vw);
  }

  .pageHero__title{
    font-size: clamp(2rem, 9.5vw, 3.05rem);
    line-height: 0.92;
  }

  .pageHero__title span{
    white-space: normal;
  }

  .pageHero__sub{
    font-size: 0.92rem;
  }

  .pageHero__actions{
    width: min(340px, 100%);
    grid-template-columns: 1fr;
  }
}
/* =========================
   WHY METAL HERO — CENTERED INTERNAL PAGE FIX
   Paste at VERY BOTTOM of why-metal.css
   ========================= */

/* Desktop / tablet: centered like the other internal pages */
.pageHero{
  height: clamp(440px, 62vh, 780px);
  min-height: 520px;
}

.pageHero__bg{
  object-position: center center;
  filter: contrast(1.06) saturate(1.04) brightness(0.98);
  transform: scale(1.02);
}

.pageHero__scrim{
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(46,119,183,0.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.38) 24%, rgba(0,0,0,0.04) 48%),
    radial-gradient(900px 560px at 50% 58%, rgba(0,0,0,0.56), transparent 68%),
    radial-gradient(1100px 700px at 50% 120%, rgba(0,0,0,0.50), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,0.02) 58%, rgba(0,0,0,0.50) 100%);
}

/* Center the whole lockup */
.pageHero__content{
  position: absolute;
  left: 50%;
  top: 60%;
  bottom: auto;
  transform: translate(-50%, -50%);

  width: min(980px, calc(100% - (2 * var(--padX))));
  max-width: 980px;

  padding: 14px 10px;
  display: grid;
  justify-items: center;
  gap: 12px;

  text-align: center;
  z-index: 6;
  isolation: isolate;
}

/* Soft center vignette like the other pages */
.pageHero__content::before{
  content:"";
  position: absolute;
  inset: -64px -34px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(0,0,0,0.66), transparent 74%);
  opacity: 0.96;
}

.pageHero__eyebrow{
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 820;
  color: rgba(245,247,255,0.70);
}

.pageHero__line{
  width: min(560px, 84vw);
  height: 2px;
  margin: 0 auto 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(46,119,183,0.95), transparent);
  opacity: 0.88;
}

.pageHero__line::after{
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(46,119,183,0.10);
}

.pageHero__title{
  margin: 0;
  max-width: 920px;

  text-align: center;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 0.92;

  font-size: clamp(2.05rem, 4.7vw, 3.45rem);

  color: rgba(255,255,255,0.96);
  text-shadow: 0 30px 96px rgba(0,0,0,0.66);
}

.pageHero__title span{
  display: block;
}

.pageHero__title em{
  color: rgba(46,119,183,0.96);
  text-shadow:
    0 30px 96px rgba(0,0,0,0.66),
    0 0 30px rgba(46,119,183,0.28);
}

.pageHero__sub{
  margin: 0;
  max-width: 82ch;

  text-align: center;
  color: rgba(245,247,255,0.66);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Internal pages do not need hero CTAs fighting the centered lockup */
.pageHero__actions{
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Keep buttons, but make them secondary to the title */
.pageHero__actions .btn{
  min-height: 46px;
}

/* Better nav spacing on desktop */
@media (min-width: 921px){
  .pageHero__content{
    top: 60%;
  }

  .pageHero__title{
    max-width: 940px;
  }

  .pageHero__sub{
    max-width: 76ch;
  }
}

/* Mobile: centered, compact, no awkward scrolling */
@media (max-width: 920px){
  .pageHero{
    height: clamp(560px, 92svh, 720px);
    min-height: 600px;
  }

  .pageHero__bg{
    object-position: center center;
    filter: contrast(1.05) saturate(1.04) brightness(0.96);
    transform: scale(1.02);
  }

  .pageHero__scrim{
    background:
      radial-gradient(720px 460px at 50% 32%, rgba(46,119,183,0.13), transparent 62%),
      linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.42) 28%, rgba(0,0,0,0.24) 54%, rgba(0,0,0,0.80) 100%),
      radial-gradient(720px 520px at 50% 58%, rgba(0,0,0,0.62), transparent 70%);
  }

  .pageHero__content{
    top: 58%;
    width: min(620px, calc(100% - (2 * var(--padX))));
    gap: 11px;
  }

  .pageHero__content::before{
    inset: -50px -24px;
    opacity: 0.98;
  }

  .pageHero__eyebrow{
    font-size: 0.70rem;
    letter-spacing: 0.18em;
  }

  .pageHero__line{
    width: min(430px, 82vw);
  }

  .pageHero__title{
    font-size: clamp(2rem, 8.6vw, 3.25rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
  }

  .pageHero__sub{
    max-width: 40ch;
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .pageHero__actions{
    margin-top: 6px;
    width: min(360px, 100%);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pageHero__actions .btn{
    width: 100%;
  }
}

/* Small mobile: reduce height and keep everything in first viewport */
@media (max-width: 520px){
  .pageHero{
    height: 100svh;
    min-height: 620px;
    max-height: 760px;
  }

  .pageHero__content{
    top: 59%;
    gap: 10px;
  }

  .pageHero__content::before{
    inset: -42px -18px;
  }

  .pageHero__title{
    font-size: clamp(1.85rem, 8.4vw, 2.75rem);
    line-height: 0.96;
  }

  .pageHero__sub{
    font-size: 0.88rem;
    max-width: 36ch;
  }

  .pageHero__actions{
    width: min(330px, 100%);
  }

  .pageHero__actions .btn{
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.70rem;
  }
}

/* Ultra-small phones */
@media (max-width: 380px){
  .pageHero__title{
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .pageHero__sub{
    font-size: 0.84rem;
  }

  .pageHero__actions .btn{
    font-size: 0.66rem;
  }
}

/* =========================
   WHY METAL — MOBILE COMPARISON FIX
   Turns Metal vs Shingles table into clean mobile cards
   Paste at VERY BOTTOM of why-metal.css
   ========================= */

@media (max-width: 720px){
  .section--compare .sectionHead{
    margin-bottom: 22px;
  }

  .section--compare .compareTableWrap{
    overflow: visible !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .section--compare .compareTable{
    display: block;
    width: 100%;
    min-width: 0 !important;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
  }

  /* Hide desktop table headers visually, but keep structure clean */
  .section--compare .compareTable thead{
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .section--compare .compareTable tbody{
    display: grid;
    gap: 14px;
    width: 100%;
  }

  .section--compare .compareTable tr{
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;

    border-radius: 18px;
    border: 1px solid rgba(98,168,232,0.28);

    background:
      linear-gradient(180deg, rgba(255,255,255,0.070), rgba(255,255,255,0.030));

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.09),
      0 24px 90px rgba(0,0,0,0.34),
      0 0 22px rgba(46,119,183,0.13);
  }

  .section--compare .compareTable th,
  .section--compare .compareTable td{
    display: block;
    border: 0 !important;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section--compare .compareTable tbody th{
    grid-column: 1 / -1;
    width: auto;

    padding: 15px 16px;

    background:
      linear-gradient(180deg, rgba(46,119,183,0.24), rgba(46,119,183,0.08));

    border-bottom: 1px solid rgba(255,255,255,0.10) !important;

    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 950;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.96);
  }

  .section--compare .compareTable td{
    position: relative;
    display: grid;
    gap: 7px;

    padding: 14px 15px 16px;

    color: rgba(245,247,255,0.76);
    font-size: 0.93rem;
    line-height: 1.45;
  }

  .section--compare .compareTable td::before{
    display: block;

    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 920;
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .section--compare .compareTable td:nth-child(2){
    background: rgba(46,119,183,0.10);
    border-right: 1px solid rgba(255,255,255,0.09) !important;
    color: rgba(255,255,255,0.88);
  }

  .section--compare .compareTable td:nth-child(2)::before{
    content: "Metal Roofing";
    color: rgba(98,168,232,0.96);
  }

  .section--compare .compareTable td:nth-child(3){
    background: rgba(255,255,255,0.025);
  }

  .section--compare .compareTable td:nth-child(3)::before{
    content: "Asphalt Shingles";
    color: rgba(245,247,255,0.58);
  }
}

/* Very small phones: stack Metal and Shingles vertically instead of squeezing */
@media (max-width: 430px){
  .section--compare .compareTable tr{
    grid-template-columns: 1fr;
  }

  .section--compare .compareTable td:nth-child(2){
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.09) !important;
  }

  .section--compare .compareTable td{
    padding: 14px 16px 16px;
  }
}
/* =========================
   WHY METAL — PREMIUM NAV ONLY PATCH
   Paste at VERY BOTTOM of why-metal.css
   ========================= */

:root{
  --premiumBlue: #0a73ff;
  --premiumBlue2: #46a3ff;
  --premiumSteel: #cfe8ff;
  --logoH: clamp(82px, 6.4vw, 116px);
}

/* Kill old call class if it still exists anywhere */
.navCall{
  display: none !important;
}

/* Premium top staging */
.hud{
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80 !important;
  padding: max(22px, env(safe-area-inset-top)) var(--padX) 0 !important;
}

.hud::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.20),
    rgba(255,255,255,0)
  );
  opacity: 0.9;
  pointer-events: none;
}

.hud__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.8vw, 42px);
}

.brand{
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand__logo{
  height: var(--logoH);
  width: auto;
  max-width: min(360px, 36vw);
  filter:
    drop-shadow(0 18px 34px rgba(0,0,0,0.72))
    drop-shadow(0 0 18px rgba(43,144,255,0.18)) !important;
}

/* Desktop nav */
.nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.navLinks{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 36px);
}

.nav__link{
  position: relative;
  padding: 12px 0;
  text-transform: uppercase;
  font-weight: 860;
  letter-spacing: 0.05em;
  font-size: clamp(0.74rem, 0.78vw, 0.92rem);
  color: rgba(247,250,255,0.94);
  white-space: nowrap;
  text-shadow: 0 16px 32px rgba(0,0,0,0.62);
}

.nav__link::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(0,112,255,0),
    rgba(70,163,255,0.98),
    rgba(0,112,255,0)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link--active::after{
  transform: scaleX(1);
}

.nav__link:hover,
.nav__link--active{
  color: rgba(255,255,255,0.98);
}

.nav__link--hasCaret::before{
  content:"⌄";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-56%);
  color: var(--premiumSteel);
  font-size: 1rem;
  line-height: 1;
}

/* Desktop phone block */
.navPhone{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: clamp(8px, 1.2vw, 22px);
  border-left: 1px solid rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.96);
  white-space: nowrap;
}

.navPhone__icon{
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
}

.navPhone__icon svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.navPhone__copy{
  display: grid;
  gap: 1px;
  line-height: 1.06;
}

.navPhone__number{
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  font-weight: 950;
  letter-spacing: 0.02em;
}

.navPhone__label{
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

/* Premium quote button */
.navQuote{
  min-height: 56px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid rgba(135,197,255,0.78) !important;
  background: linear-gradient(180deg, #137cff 0%, #0051d6 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -18px 34px rgba(0,0,0,0.22),
    0 0 0 1px rgba(0,119,255,0.28),
    0 0 28px rgba(0,119,255,0.50),
    0 22px 68px rgba(0,0,0,0.45) !important;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.navQuote:hover{
  filter: brightness(1.07) contrast(1.02);
}

/* Hidden desktop/mobile defaults */
.mobileCall{
  display: none;
}

.navToggle{
  display: none;
}

/* Desktop tightening */
@media (max-width: 1320px){
  .navLinks{
    gap: 20px;
  }

  .navPhone__label{
    display: none;
  }

  .navQuote{
    padding-inline: 18px;
  }
}

@media (max-width: 1100px){
  .navPhone{
    display: none;
  }
}

/* Mobile nav */
@media (max-width: 920px){
  :root{
    --logoH: clamp(68px, 18vw, 88px);
  }

  .hud{
    padding: max(14px, env(safe-area-inset-top)) var(--padX) 0 !important;
    overflow: visible !important;
  }

  .hud::after{
    bottom: -18px;
  }

  .hud__inner{
    align-items: flex-start;
    gap: 10px;
    overflow: visible !important;
  }

  .brand__logo{
    height: var(--logoH);
    max-width: min(46vw, 190px);
  }

  .nav{
    align-items: flex-start;
    gap: 10px;
    padding-top: 2px;
    overflow: visible !important;
  }

  /* Icon-only mobile call button */
  .mobileCall{
    display: inline-grid !important;
    place-items: center;
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: calc(var(--padX) + 58px);
    z-index: 2147482999;

    width: 48px;
    height: 48px;
    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.26);
    background: rgba(0,0,0,0.42);
    color: #fff;

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.12),
      0 18px 54px rgba(0,0,0,0.46);

    backdrop-filter: blur(14px) saturate(1.18);
    -webkit-backdrop-filter: blur(14px) saturate(1.18);
  }

  .mobileCall__icon,
  .mobileCall__icon svg{
    width: 21px;
    height: 21px;
    display: block;
  }

  .mobileCall__icon svg{
    fill: currentColor;
  }

  /* Floating menu button */
  .navToggle{
    display: grid !important;
    place-items: center;
    position: fixed !important;
    top: max(14px, env(safe-area-inset-top));
    right: var(--padX);
    z-index: 2147483000;

    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0 !important;

    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    background: rgba(0,0,0,0.44) !important;
    color: rgba(255,255,255,0.96);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.12),
      0 16px 46px rgba(0,0,0,0.46) !important;

    backdrop-filter: blur(14px) saturate(1.18) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.18) !important;
  }

  .navToggle__icon{
    width: 28px !important;
    height: 22px !important;
    position: relative;
    display: block;
    background: linear-gradient(currentColor, currentColor) center / 100% 3px no-repeat;
  }

  .navToggle__icon::before,
  .navToggle__icon::after{
    content:"";
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 170ms ease, top 170ms ease, bottom 170ms ease;
  }

  .navToggle__icon::before{
    top: 1px;
  }

  .navToggle__icon::after{
    bottom: 1px;
  }

  .navToggle__label{
    display: none !important;
  }

  body.nav-open .navToggle__icon{
    background: none;
  }

  body.nav-open .navToggle__icon::before{
    top: 9px !important;
    transform: rotate(45deg);
  }

  body.nav-open .navToggle__icon::after{
    bottom: 9px !important;
    transform: rotate(-45deg);
  }

  /* Mobile drawer */
  .navLinks{
    position: fixed !important;
    left: var(--padX);
    right: var(--padX);
    top: calc(max(14px, env(safe-area-inset-top)) + 60px);

    z-index: 2147482998;
    display: grid;
    gap: 8px;

    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.16);

    background: rgba(0,6,16,0.90);
    box-shadow:
      0 36px 120px rgba(0,0,0,0.72),
      0 0 30px rgba(0,119,255,0.12);

    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;

    transition: opacity 160ms ease, transform 160ms ease;

    max-height: calc(100dvh - max(14px, env(safe-area-inset-top)) - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .navLinks .nav__link{
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .navLinks .nav__link:hover,
  .navLinks .nav__link--active{
    background: rgba(46,119,183,0.14);
  }

  .navLinks .nav__link::after{
    left: 12px;
    right: 12px;
  }

  .nav__link--hasCaret::before{
    display: none;
  }

  .navPhone{
    display: inline-flex !important;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 14px 12px 8px;
    margin-top: 4px;
  }

  .navPhone__label{
    display: inline;
  }

  .navLinks .navQuote{
    width: 100%;
    min-height: 54px;
  }

  body.nav-open .navLinks{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open{
    overflow: hidden;
  }
}

@media (max-width: 430px){
  .mobileCall{
    width: 44px;
    height: 44px;
    right: calc(var(--padX) + 54px);
  }

  .navToggle{
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .navToggle__icon{
    width: 26px !important;
    height: 20px !important;
  }

  body.nav-open .navToggle__icon::before{
    top: 8px !important;
  }

  body.nav-open .navToggle__icon::after{
    bottom: 8px !important;
  }

  .navLinks{
    top: calc(max(14px, env(safe-area-inset-top)) + 56px);
  }
}