/* ============================================================
   Buck Steel Colorado LP
   Wireframe contract: .agents/clients/buck-steel/landing-page-build/FULL-WIREFRAME.png
   Hero contract:      .agents/clients/buck-steel/landing-page-build/hero-variants/LOCKED-C1-PRIMARY.png
   ============================================================ */

/* Palette + tokens */
:root {
  --lp-yellow:       #FFBE1D;   /* Buck Steel brand yellow */
  --lp-cta:          #FFB700;   /* CTA button */
  --lp-cta-text:     #1A1A1A;
  --lp-navy:         #00104B;   /* Emphasis sections, hero overlay */
  --lp-navy-band:    rgba(0, 16, 75, 0.88);
  --lp-text:         #1A1A1A;   /* Body text */
  --lp-text-muted:   #4A4A4A;
  --lp-cream:        #FAF7EE;   /* Primary canvas */
  --lp-warm-white:   #FBF8EE;
  --lp-toasted:      #F0E5CB;
  --lp-sage:         #E5EBE9;
  --lp-white:        #FFFFFF;
  --lp-border:       rgba(0, 16, 75, 0.10);

  --lp-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --lp-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --lp-max:          1200px;
}

/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--lp-font-body);
  color: var(--lp-text);
  background: var(--lp-cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.lp-heading, h1, h2, h3 { text-wrap: balance; }

/* ============================================================
   Section 0 -- Pre-header bar
   ============================================================ */
.lp-preheader {
  background: var(--lp-yellow);
  color: var(--lp-cta-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-preheader a { color: var(--lp-cta-text); font-weight: 700; }
.lp-preheader__right { display: flex; align-items: center; }
@media (max-width: 720px) {
  .lp-preheader { font-size: 11px; padding: 8px 16px; flex-wrap: wrap; }
  .lp-preheader__hours { display: inline; }
}

/* ============================================================
   Section 1 -- Hero
   Layout: photo fills entire hero + semi-transparent navy band over bottom ~40%
   Mirrors LOCKED-C1-PRIMARY wireframe geometry
   ============================================================ */
.lp-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 11 / 4;   /* another 10% shorter per David 2026-06-11 */
  background: #000;
  overflow: hidden;
}
.lp-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.lp-hero__band {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.65);   /* small bump in transparency from 0.68 */
  padding: 36px 24px 32px;
  z-index: 1;
}
.lp-hero__copy {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
  color: var(--lp-white);
}
.lp-hero__eyebrow {
  color: var(--lp-yellow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.lp-hero__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
  color: var(--lp-white);
}
.lp-hero__sub {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  margin: 0 auto 24px;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.92);
}
.lp-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.lp-hero__ctas .lp-cta--primary {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  padding: 18px 36px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(255, 183, 0, 0.36);
}
.lp-hero__ctas .lp-cta--phone {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  padding: 18px 12px;
}
.lp-hero__trust {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  margin: 0;
}
@media (max-width: 720px) {
  .lp-hero { aspect-ratio: 4 / 5; }
  .lp-hero__band { padding: 28px 16px 24px; }
  .lp-hero__ctas { gap: 14px; }
}

/* ============================================================
   CTA buttons
   ============================================================ */
.lp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.005em;
  padding: 14px 24px;
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: 0;
}
/* .lp-cta sets display:inline-flex, which overrides the browser default [hidden]{display:none}.
   Restore it so CTA buttons toggled via the `hidden` attribute (e.g. the sub-2,400 sq ft
   "Next" button) actually hide. */
.lp-cta[hidden] { display: none !important; }
.lp-cta--primary {
  background: var(--lp-cta);
  color: var(--lp-cta-text);
  box-shadow: 0 6px 14px rgba(255, 183, 0, 0.28);
}
.lp-cta--primary:hover { transform: translateY(-1px); box-shadow: 0 9px 20px rgba(255, 183, 0, 0.38); }
.lp-cta--phone {
  color: var(--lp-white);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 14px 8px;
}

/* ============================================================
   Section 2 -- Trust Strip
   Top half: dark navy stats band w/ 5 yellow stat callouts
   Bottom half: cream background with 12-logo wall
   ============================================================ */
.lp-trust {
  width: 100%;
}
.lp-trust__stats {
  background: var(--lp-navy);
  padding: 56px 24px;
}
.lp-trust__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}
.lp-stat__number {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1;
  color: var(--lp-yellow);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.lp-stat__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  color: var(--lp-white);
  text-transform: uppercase;
}
.lp-trust__logos {
  background: var(--lp-white);   /* full-width white band per David */
  padding: 56px 24px 64px;
  text-align: center;
}
.lp-trust__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 36px;
}
.lp-trust__logo-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 16 logos = 4 cols x 4 rows */
  gap: 28px 24px;
  align-items: center;
  justify-items: center;
}
.lp-trust__logo-grid img {
  /* Uniform "tile" sizing: each logo letterboxes into the same visual cell */
  width: 100%;
  max-width: 200px;
  height: 80px;
  display: block;
  object-fit: contain;
}
@media (max-width: 920px) {
  .lp-trust__inner { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .lp-trust__inner > :nth-child(4),
  .lp-trust__inner > :nth-child(5) { grid-column: span 1; }
  .lp-trust__logo-grid { grid-template-columns: repeat(4, 1fr); gap: 22px 18px; }
  .lp-trust__logo-grid img { height: 64px; max-width: 160px; }
}
@media (max-width: 560px) {
  .lp-trust__stats { padding: 40px 16px; }
  .lp-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .lp-trust__inner > :nth-child(5) { grid-column: span 2; }
  .lp-trust__logo-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; } /* 16 logos = 2 cols x 8 rows on mobile */
  .lp-trust__logo-grid img { height: 56px; max-width: 140px; }
  .lp-trust__logos { padding: 36px 16px 44px; }
}

/* ============================================================
   Section 3 -- Problem / Pain
   Dark navy bg, yellow eyebrow, white headline, 3 cream cards w/ yellow icons
   ============================================================ */
.lp-problem {
  background: var(--lp-navy);
  padding: 80px 24px;
}
.lp-problem__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-problem__eyebrow {
  color: var(--lp-yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.lp-problem__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--lp-white);
  margin: 0 0 56px;
  text-wrap: balance;
}
.lp-problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lp-problem__card {
  background: var(--lp-cream);
  border-radius: 16px;
  padding: 44px 32px 40px;
  text-align: center;
}
.lp-problem__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-problem__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lp-problem__card-heading {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.18;
  color: var(--lp-text);
  margin: 0 0 14px;
  text-wrap: balance;
}
.lp-problem__card-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--lp-text-muted);
  margin: 0;
}
@media (max-width: 720px) {
  .lp-problem { padding: 56px 16px; }
  .lp-problem__cards { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   Section 4 -- Solution / Value Prop (The Buck Steel Advantage)
   Cream bg, black eyebrow, large serif headline, 3 columns w/ centered icons
   ============================================================ */
.lp-solution {
  background: var(--lp-cream);
  padding: 88px 24px;
}
.lp-solution__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-solution__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
}
.lp-solution__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 0 64px;
  text-wrap: balance;
}
.lp-solution__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.lp-solution__col {
  display: flex;
  flex-direction: column;
  align-items: center;        /* CENTER icons per David */
  text-align: center;
}
.lp-solution__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.lp-solution__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-solution__col-heading {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.2;
  color: var(--lp-navy);
  margin: 0 0 14px;
  text-wrap: balance;
  max-width: 320px;
  min-height: 2.4em;          /* force 2-line height so all 3 headings + body align across columns */
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-solution__col-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--lp-text-muted);
  margin: 0;
  max-width: 320px;
  text-wrap: pretty;       /* prevent orphan words */
}
@media (max-width: 720px) {
  .lp-solution { padding: 56px 16px; }
  .lp-solution__cols { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Section 5 -- How It Works (4-step process w/ numbered circles)
   ============================================================ */
.lp-how {
  background: var(--lp-warm-white);
  padding: 88px 24px;
}
.lp-how__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-how__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
}
.lp-how__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 0 72px;
  text-wrap: balance;
}
.lp-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
/* Connecting thin line between circles, positioned behind */
.lp-how__steps::before {
  content: '';
  position: absolute;
  top: 44px;            /* halfway through 88px circle */
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(0, 16, 75, 0.18);
  z-index: 0;
}
.lp-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-how__circle {
  width: 88px;
  height: 88px;
  background: var(--lp-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  flex-shrink: 0;
}
.lp-how__circle span {
  font-family: var(--lp-font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--lp-cta-text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp-how__step-heading {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  color: var(--lp-navy);
  margin: 0 0 12px;
  text-wrap: balance;
  max-width: 240px;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-how__step-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--lp-text-muted);
  margin: 0;
  max-width: 240px;
  text-wrap: pretty;
}
@media (max-width: 920px) {
  .lp-how__steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .lp-how__steps::before { display: none; }
}
@media (max-width: 560px) {
  .lp-how { padding: 56px 16px; }
  .lp-how__steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Section 6 -- Social Proof (testimonials + 10/10 rating)
   Toasted-cream bg, eyebrow, headline, stars, 4 white testimonial cards
   ============================================================ */
.lp-social {
  background: var(--lp-toasted);
  padding: 88px 24px;
}
.lp-social__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-social__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
}
.lp-social__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 auto 24px;
  text-wrap: balance;
  max-width: 920px;
}
.lp-social__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 56px;
}
.lp-social__stars svg {
  width: 32px;
  height: 32px;
  display: block;
}
.lp-social__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.lp-social__card {
  background: var(--lp-white);
  border-radius: 16px;
  padding: 32px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 16, 75, 0.06);
}
.lp-social__quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--lp-text);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.lp-social__attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-social__name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--lp-navy);
}
.lp-social__role {
  font-size: 13px;
  color: var(--lp-text-muted);
}
@media (max-width: 920px) {
  .lp-social__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-social { padding: 56px 16px; }
  .lp-social__cards { grid-template-columns: 1fr; }
  .lp-social__stars svg { width: 26px; height: 26px; }
}

/* ============================================================
   Section 7 -- Deep Proof / Case Study (Trinidad + NY Yankees)
   Cream bg, two-column split w/ photo + verbatim feature lists
   ============================================================ */
.lp-proof {
  background: var(--lp-sage);
  padding: 88px 24px;
}
.lp-proof__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-proof__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
}
.lp-proof__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 auto 56px;
  text-wrap: balance;
  max-width: 920px;
}
.lp-proof__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: left;
}
.lp-proof__card {
  display: flex;
  flex-direction: column;
}
.lp-proof__loc {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lp-navy);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.lp-proof__photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  background: var(--lp-text-muted);
}
.lp-proof__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-proof__body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--lp-text);
  margin: 0 0 12px;
  text-wrap: pretty;
}
.lp-proof__body strong { color: var(--lp-navy); }
.lp-proof__features {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: disc;
  color: var(--lp-text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.lp-proof__features li { margin: 0 0 4px; }
@media (max-width: 720px) {
  .lp-proof { padding: 56px 16px; }
  .lp-proof__cards { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Section 8 -- Product Tiers (Express Line / Roof Only / Custom)
   Warm-white bg, 3 cards w/ yellow banners + 7 use-case chips
   ============================================================ */
.lp-tiers {
  background: var(--lp-warm-white);
  padding: 88px 24px;
}
.lp-tiers__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-tiers__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
}
.lp-tiers__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 0 56px;
  text-wrap: balance;
}
.lp-tiers__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  margin-bottom: 56px;
}
.lp-tiers__card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-tiers__banner {
  background: var(--lp-cta);
  color: var(--lp-cta-text);
  padding: 12px 20px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-tiers__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lp-tiers__card-heading {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.22;
  color: var(--lp-navy);
  margin: 0 0 14px;
  text-wrap: balance;
}
.lp-tiers__sizes {
  font-size: 14px;
  color: var(--lp-text-muted);
  margin: 0 0 16px;
  line-height: 1.5;
}
.lp-tiers__incl {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  list-style: disc;
  color: var(--lp-text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.lp-tiers__incl li { margin: 0 0 4px; }
.lp-tiers__price {
  margin: auto 0 0;
  padding-top: 8px;
  font-size: 14.5px;
  color: var(--lp-text);
}
.lp-tiers__price strong {
  color: var(--lp-navy);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.lp-tiers__uses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 36px;
}
.lp-tiers__use {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 88px;
}
.lp-tiers__use img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.lp-tiers__use span {
  font-weight: 600;
  font-size: 14px;
  color: var(--lp-navy);
  letter-spacing: 0.02em;
}
@media (max-width: 920px) {
  .lp-tiers__cards { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 560px) {
  .lp-tiers { padding: 56px 16px; }
}

/* ============================================================
   Section 8.5 -- Advantages + Specifications (Buck Steel-published trust)
   Warm cream bg, eyebrow, headline, 4 grouped category cards w/ yellow checkmarks
   ============================================================ */
.lp-advantages {
  background: var(--lp-cream);
  padding: 88px 24px;
}
.lp-advantages__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp-advantages__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
  text-align: center;
}
.lp-advantages__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 0 16px;
  text-wrap: balance;
  text-align: center;
}
.lp-advantages__sub {
  font-size: 15.5px;
  color: var(--lp-text-muted);
  margin: 0 auto 48px;
  text-align: center;
  max-width: 720px;
}
.lp-advantages__h3 {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--lp-navy);
  margin: 0 0 24px;
}
.lp-advantages__h3--specs { margin-top: 56px; }
.lp-advantages__groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.lp-advantages__group {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 28px 28px 24px;
}
.lp-advantages__group h4 {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--lp-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lp-yellow);
  display: inline-block;
}
.lp-advantages__group ul,
.lp-advantages__specs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-advantages__group li {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  position: relative;
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.5;
}
.lp-advantages__group li:last-child { margin-bottom: 0; }
.lp-advantages__group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%23FFB700'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}
.lp-advantages__group li strong {
  color: var(--lp-navy);
  font-weight: 700;
  margin-bottom: 2px;
}
.lp-advantages__group li span { color: var(--lp-text-muted); }
.lp-advantages__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 28px 32px;
}
.lp-advantages__specs li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--lp-text);
}
.lp-advantages__specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23FFB700'><circle cx='12' cy='12' r='12'/><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='white'/></svg>") no-repeat center / contain;
}
@media (max-width: 800px) {
  .lp-advantages__groups { grid-template-columns: 1fr; gap: 18px; }
  .lp-advantages__specs { grid-template-columns: 1fr; padding: 24px 22px; }
}
@media (max-width: 560px) {
  .lp-advantages { padding: 56px 16px; }
}

/* ============================================================
   Section 8.6 -- Commercial Steel Building Specifications
   ============================================================ */
.lp-specs {
  background: var(--lp-navy);
  color: #fff;
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}
.lp-specs::before {
  /* Subtle blueprint grid backdrop -- adds visual texture without distracting */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.7;
}
.lp-specs__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  position: relative;
}
.lp-specs__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-yellow);
  margin: 0 0 16px;
  text-align: center;
}
.lp-specs__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 14px;
  text-align: center;
  text-wrap: balance;
}
.lp-specs__sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 48px;
  text-align: center;
  max-width: 720px;
  text-wrap: pretty;
}
.lp-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.lp-specs__card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 32px 30px 30px;
  overflow: hidden;
}
.lp-specs__card::before {
  /* Yellow corner accent -- adds visual hierarchy + brand color */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: var(--lp-yellow);
  border-radius: 16px 0 0 0;
}
.lp-specs__card-num {
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: 38px;
  color: rgba(255, 190, 29, 0.18);
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp-specs__card-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--lp-yellow);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.lp-specs__card-h {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.18;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.lp-specs__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-specs__items li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 12px;
}
.lp-specs__items li:last-child { margin-bottom: 0; }
.lp-specs__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23FFBE1D'><circle cx='12' cy='12' r='12'/><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='%2300104B'/></svg>") no-repeat center / contain;
}
@media (max-width: 800px) {
  .lp-specs__grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-specs__card { padding: 26px 22px 24px; }
  .lp-specs__card-num { font-size: 32px; top: 16px; right: 20px; }
  .lp-specs__card-h { font-size: 20px; }
}
@media (max-width: 560px) {
  .lp-specs { padding: 56px 16px; }
}

/* ============================================================
   Subtle card hover (lifts + soft shadow). Applied to all card sections.
   ============================================================ */
.lp-problem__card,
.lp-social__card,
.lp-tiers__card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.lp-problem__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 16, 75, 0.22);
}
.lp-social__card:hover,
.lp-tiers__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 16, 75, 0.10);
}

/* ============================================================
   Section 9 -- FAQ (accordion)
   ============================================================ */
.lp-faq {
  background: var(--lp-sage);  /* cool tint -- breaks up the warm cream sections above */
  padding: 88px 24px;
}
.lp-faq__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.lp-faq__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
}
.lp-faq__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 0 48px;
  text-wrap: balance;
}
.lp-faq__list {
  text-align: left;
  border-top: 1px solid var(--lp-border);
}
.lp-faq__item {
  border-bottom: 1px solid var(--lp-border);
}
.lp-faq__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 4px;
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--lp-navy);
  line-height: 1.35;
  transition: color 0.15s ease;
}
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__q::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  color: var(--lp-cta);
  line-height: 1;
  transition: transform 0.18s ease;
}
.lp-faq__item[open] .lp-faq__q::after {
  content: '\2212';     /* minus */
  transform: translateY(-50%);
}
.lp-faq__q:hover { color: var(--lp-text); }
.lp-faq__a {
  padding: 0 4px 24px;
  color: var(--lp-text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.lp-faq__a p { margin: 0; text-wrap: pretty; }
@media (max-width: 560px) {
  .lp-faq { padding: 56px 16px; }
}

/* ============================================================
   Section 10 -- Comparison table (Ours vs Others)
   Toasted-cream bg, 12-row published Buck Steel comparison
   ============================================================ */
.lp-compare {
  background: var(--lp-toasted);
  padding: 88px 24px;
}
.lp-compare__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.lp-compare__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
}
.lp-compare__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 auto 16px;
  text-wrap: balance;
  max-width: 880px;
}
.lp-compare__sub {
  font-size: 15.5px;
  color: var(--lp-text-muted);
  margin: 0 auto 40px;
  max-width: 720px;
}
.lp-compare__table {
  background: var(--lp-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 16, 75, 0.06);
  text-align: left;
}
.lp-compare__row {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--lp-border);
  font-size: 15px;
  color: var(--lp-text);
}
.lp-compare__row:last-child { border-bottom: none; }
.lp-compare__row--head {
  background: var(--lp-navy);
  color: var(--lp-white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 24px;
}
.lp-compare__col-us, .lp-compare__col-them {
  text-align: center;
}
.lp-compare__col-us { color: var(--lp-yellow); }
.lp-compare__yes,
.lp-compare__no,
.lp-compare__yes-them {
  text-align: center;
  font-size: 22px;
  line-height: 1;
}
.lp-compare__yes { color: var(--lp-cta); font-weight: 700; }
.lp-compare__yes-them { color: var(--lp-text-muted); font-weight: 600; }
.lp-compare__no { color: #B22222; font-weight: 700; }
@media (max-width: 640px) {
  .lp-compare { padding: 56px 16px; }
  .lp-compare__row { grid-template-columns: 1fr 70px 70px; padding: 14px 16px; font-size: 13.5px; }
  .lp-compare__row--head { padding: 14px 16px; font-size: 11.5px; }
  .lp-compare__yes, .lp-compare__no, .lp-compare__yes-them { font-size: 18px; }
}

/* ============================================================
   Section 11 -- Risk Reversal (Buck Steel guarantee)
   Dark navy bg, yellow eyebrow, white serif headline, 4 columns w/ yellow circle icons
   ============================================================ */
.lp-risk {
  background: var(--lp-navy);
  padding: 88px 24px;
}
.lp-risk__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-risk__eyebrow {
  color: var(--lp-yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.lp-risk__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--lp-white);
  margin: 0 0 56px;
  text-wrap: balance;
}
.lp-risk__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.lp-risk__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp-risk__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-risk__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.lp-risk__heading {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.22;
  color: var(--lp-white);
  margin: 0 0 12px;
  text-wrap: balance;
  max-width: 260px;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-risk__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 260px;
  text-wrap: pretty;
}
@media (max-width: 920px) {
  .lp-risk__cols { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 560px) {
  .lp-risk { padding: 56px 16px; }
  .lp-risk__cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Mid-page CTA strip (tight) -- navy band between sections
   ============================================================ */
.lp-midcta {
  background: var(--lp-navy);
  padding: 40px 24px;
}
.lp-midcta__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.lp-midcta__copy { flex: 1 1 380px; }
.lp-midcta__eyebrow {
  color: var(--lp-yellow);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.lp-midcta__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--lp-white);
  margin: 0 0 6px;
  text-wrap: balance;
}
.lp-midcta__bullets {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.lp-midcta__ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.lp-midcta__phone {
  color: var(--lp-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 720px) {
  .lp-midcta { padding: 32px 16px; }
  .lp-midcta__inner { flex-direction: column; align-items: stretch; text-align: center; gap: 20px; }
  .lp-midcta__copy { flex: 0 0 auto; }
  .lp-midcta__ctas { justify-content: center; flex-wrap: wrap; gap: 14px; }
}

/* ============================================================
   Section 12 -- Two-step quote form (qualify -> contact)
   ============================================================ */
.lp-form {
  background: var(--lp-cream);
  padding: 88px 24px;
}
.lp-form__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lp-form__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 18px;
}
.lp-form__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 0 36px;
  text-wrap: balance;
}
.lp-form__card {
  background: var(--lp-white);
  border-radius: 18px;
  padding: 36px 36px 32px;
  box-shadow: 0 8px 30px rgba(0, 16, 75, 0.08);
  text-align: left;
  position: relative;
}
.lp-form__steps { margin-bottom: 28px; }
.lp-form__step-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lp-cta);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lp-form__progress {
  height: 6px;
  background: rgba(0, 16, 75, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.lp-form__progress-bar {
  height: 100%;
  width: 50%;
  background: var(--lp-cta);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.lp-form__step { border: 0; margin: 0; padding: 0; }
.lp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-form__field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.lp-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 6px;
}
.lp-form__field label span {
  font-weight: 500;
  color: var(--lp-text-muted);
  font-size: 13px;
}
.lp-form__field input,
.lp-form__field select,
.lp-form__field textarea {
  font-family: inherit;
  font-size: 15.5px;
  color: var(--lp-text);
  background-color: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.lp-form__field input:focus,
.lp-form__field select:focus,
.lp-form__field textarea:focus {
  border-color: var(--lp-cta);
  box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.18);
}
.lp-form__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231A1A1A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lp-form__field textarea { resize: vertical; min-height: 80px; }
.lp-form__min-note {
  margin: 8px 0 16px;
  padding: 14px 18px;
  background: rgba(178, 34, 34, 0.06);
  border-left: 3px solid #B22222;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-text);
  text-align: center;
}
.lp-form__min-note a { color: var(--lp-navy); font-weight: 700; }

/* Step 1 intro / qualifier gate */
.lp-form__intro-heading {
  margin: 0 0 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
}
.lp-form__intro-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.lp-form__intro-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--lp-text);
}
.lp-form__intro-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--lp-cta);
  font-weight: 800;
  font-size: 16px;
}
.lp-form__intro-list a { color: var(--lp-navy); font-weight: 700; text-decoration: none; }
.lp-form__intro-list a:hover { text-decoration: underline; }

/* Required asterisk inline marker */
.lp-form__req { color: #B22222; font-weight: 700; }

/* Live "Selected Size" calc row on Step 2 */
.lp-form__size-calc {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 18px;
  padding: 12px 16px;
  background: var(--lp-cream, #FAF7EE);
  border-radius: 8px;
  font-size: 15px;
}
.lp-form__size-calc-label { font-weight: 600; color: var(--lp-text); }
.lp-form__size-calc-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--lp-navy);
  letter-spacing: -0.01em;
}
.lp-form__size-calc-unit { color: var(--lp-text-muted); font-size: 13px; }

/* Conditional reveal block on Step 2 (Eave / Zip / Pitch / Use) */
.lp-form__size-gated { margin-top: 4px; }

/* File upload field */
.lp-form__field--file input[type="file"] {
  padding: 10px 14px;
  font-size: 14px;
  background: #fff;
}
.lp-form__file-hint {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--lp-text-muted);
}
.lp-form__continue { width: 100%; margin-top: 8px; }
.lp-form__submit { flex: 1; }
.lp-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.lp-form__back {
  background: transparent;
  border: 0;
  color: var(--lp-text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 8px;
}
.lp-form__back:hover { color: var(--lp-text); }
.lp-form__micro {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--lp-text-muted);
  text-align: center;
}
.lp-form__disclaimer {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--lp-text-muted);
  line-height: 1.5;
}
.lp-form__error {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(178, 34, 34, 0.08);
  border: 1px solid rgba(178, 34, 34, 0.25);
  border-radius: 8px;
  color: #B22222;
  font-size: 14px;
}
@media (max-width: 560px) {
  .lp-form { padding: 56px 16px; }
  .lp-form__card { padding: 28px 22px 24px; border-radius: 14px; }
  .lp-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer -- Buck Steel branded
   Yellow logo mark + name, dark navy background, 3-column info, bottom strip
   ============================================================ */
.lp-footer {
  background: #000;
  color: var(--lp-white);
  padding: 96px 24px 36px;
  border-top: 4px solid var(--lp-yellow);
}
.lp-footer__top {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-footer__logo-mark {
  width: 240px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}
.lp-footer__tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
.lp-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.lp-footer__h {
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: var(--lp-yellow);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.lp-footer__phone {
  display: block;
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--lp-white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.lp-footer__phone:hover { color: var(--lp-yellow); }
.lp-footer__hours {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.lp-footer__line {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.lp-footer__bottom {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
@media (max-width: 920px) {
  .lp-footer__top { grid-template-columns: 1fr; gap: 36px; }
  .lp-footer__cols { gap: 28px; }
}
@media (max-width: 640px) {
  .lp-footer { padding: 48px 16px 20px; }
  .lp-footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .lp-footer__bottom { justify-content: center; text-align: center; }
}
/* ============================================================
   Specializations Grid (Buck Steel building types)
   ============================================================ */
.lp-spec-grid {
  background: var(--lp-warm-white);
  padding: 120px 24px 120px;
}
.lp-spec-grid__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp-spec-grid__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 14px;
  text-align: center;
}
.lp-spec-grid__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin: 0 auto 48px;
  text-align: center;
  text-wrap: balance;
  max-width: 880px;
}
.lp-spec-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lp-spec-grid__card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-spec-grid__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--lp-toasted);
}
.lp-spec-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-spec-grid__card-h {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--lp-navy);
  margin: 22px 24px 10px;
  line-height: 1.18;
}
.lp-spec-grid__card-body {
  margin: 0 24px 24px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--lp-text-muted);
}
@media (max-width: 920px) {
  .lp-spec-grid__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-spec-grid { padding: 56px 16px; }
  .lp-spec-grid__cards { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   Accessories / Customize Your Building
   ============================================================ */
.lp-accessories {
  background: var(--lp-toasted);
  padding: 88px 24px;
}
.lp-accessories__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
}
.lp-accessories__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-text);
  margin: 0 0 14px;
  text-align: center;
}
.lp-accessories__headline {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--lp-navy);
  margin: 0 0 14px;
  text-align: center;
  text-wrap: balance;
}
.lp-accessories__sub {
  font-size: 15.5px;
  color: var(--lp-text-muted);
  margin: 0 auto 44px;
  text-align: center;
  max-width: 760px;
  text-wrap: pretty;
}
.lp-accessories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lp-accessories__card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 26px 26px 24px;
}
.lp-accessories__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lp-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
}
.lp-accessories__icon svg { width: 28px; height: 28px; }
.lp-accessories__h {
  font-family: var(--lp-font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--lp-navy);
  margin: 0 0 10px;
  line-height: 1.22;
}
.lp-accessories__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--lp-text-muted);
  margin: 0;
}
.lp-accessories__footnote {
  margin: 40px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 13.5px;
  color: var(--lp-text-muted);
  font-style: italic;
}
@media (max-width: 920px) {
  .lp-accessories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lp-accessories { padding: 56px 16px; }
  .lp-accessories__grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Mobile: equal-width stacked hero CTAs */
@media (max-width: 720px) {
  .lp-hero__ctas { flex-direction: column; align-items: stretch; }
  .lp-hero__ctas .lp-cta { width: 100%; }
}
