@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --black:      #000000;
  --white:      #ffffff;
  /* Primary accent — dual-context steel silver (aliases red so all existing class names work) */
  --green:      #868686;
  --red:        #868686;
  --red-deep:   #000000;
  --red-hi:     #5f5f5f;
  /* Secondary accent — bright silver, dark-background leaning (aliases yg) */
  --yg:         #e2e2e2;
  --blue:       #e2e2e2;
  --blue-deep:  #969696;
  --blue-light: #f0f0f0;
  /* Deep shade (aliases --dark-green) */
  --dark-green: #000000;
  /* Chrome silver scale */
  --silver-hi:  #FFFFFF;
  --silver-lt:  #E6E6E6;
  --silver-mid: #BFBFBF;
  --silver-dk:  #8C8C8C;
  --silver-edge:#5E5E5E;
  /* Small accent — muted brass/gold, used sparingly for dimension */
  --gold:       #C6A15B;
  --gold-hi:    #E8CD8A;
  --gold-deep:  #9C7B3D;
  /* Layout */
  --light-gray: #f5f5f5;
  --border:     #e0e0e0;
  --text:       #1a1a1a;
  --muted:      #666666;
  --hero-img:   none;
}

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -60px; left: 0; z-index: 9999; background: var(--black); color: #fff; padding: 10px 18px; text-decoration: none; font-size: 14px; font-weight: 700; border-radius: 0; transition: top .15s; }
.skip-link:focus { top: 0; }

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'Poppins', sans-serif; color: var(--text); font-size: 16px; line-height: 1.6; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; letter-spacing: .02em; }

/* ── HEADER ── */
.site-header { background: var(--black); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,.5); transition: background .25s, box-shadow .25s; }
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.5); }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 76px; }
.logo img { height: 56px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.main-nav > a, .nav-item > a {
  color: #fff; text-decoration: none; font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  padding: 8px 12px; border-radius: 0; transition: color .15s; white-space: nowrap;
}
.main-nav > a:hover, .nav-item > a:hover { color: var(--yg); }
.nav-item { position: relative; }
.nav-item:hover .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #111; border-top: 3px solid var(--gold);
  min-width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,.4); z-index: 200;
}
.dropdown a {
  display: block; padding: 11px 18px; color: rgba(255,255,255,.75);
  text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 13px;
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 1px solid #222; transition: color .15s, background .15s;
}
.dropdown a:hover { color: var(--yg); background: #1a1a1a; }
.dropdown a:last-child { border-bottom: none; }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone-link {
  color: var(--gold-hi); text-decoration: none; font-weight: 700;
  font-family: 'Poppins', sans-serif; font-size: 16px; letter-spacing: .5px;
  white-space: nowrap; transition: color .15s;
}
.phone-link:hover { color: var(--gold); }
.mobile-quick-actions { display: none; align-items: center; gap: 16px; }
.mobile-icon-btn {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(0,0,0,.5));
  transition: color .15s, transform .15s;
}
.mobile-icon-btn svg { width: 23px; height: 23px; }
.mobile-icon-btn:hover { color: var(--gold-hi); }
.mobile-icon-btn:active { transform: scale(.92); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 0;
  font-weight: 700; font-size: 15px; font-family: 'Poppins', sans-serif;
  text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
  cursor: pointer; border: none; transition: all .18s; text-align: center; line-height: 1;
}
.btn-green {
  background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%);
  color: #000;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -2px 0 rgba(0,0,0,.4), 0 6px 24px rgba(0,0,0,.4);
}
.btn-green:hover {
  background: linear-gradient(165deg, #FFFFFF 0%, #FFFFFF 6%, #F2F2F2 18%, #CACACA 36%, #ACACAC 52%, #C8C8C8 66%, #F0F0F0 80%, #FFFFFF 92%, #EAEAEA 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.98), inset 0 -2px 0 rgba(0,0,0,.45), 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-2px);
}
.btn-yg {
  background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #EAEAEA 20%, #C6C6C6 38%, #AAAAAA 52%, #C4C4C4 65%, #E8E8E8 78%, #FFFFFF 88%, #E2E2E2 100%);
  color: #000;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.98), inset 0 -2px 0 rgba(0,0,0,.38), 0 6px 28px rgba(0,0,0,.5);
  font-weight: 800;
}
.btn-yg:hover {
  background: linear-gradient(165deg, #FFFFFF 0%, #FFFFFF 6%, #F2F2F2 18%, #CACACA 36%, #ACACAC 52%, #C8C8C8 66%, #F0F0F0 80%, #FFFFFF 92%, #EAEAEA 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.99), inset 0 -2px 0 rgba(0,0,0,.42), 0 8px 32px rgba(0,0,0,.6);
  transform: translateY(-2px);
}
.btn-black { background: var(--black); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.btn-black:hover { background: #1a1a1a; box-shadow: 0 6px 24px rgba(255,255,255,.15); }
.btn-outline { background: transparent; border: 2px solid var(--yg); color: var(--yg); }
.btn-outline:hover { background: var(--yg); color: #000; box-shadow: 0 4px 20px rgba(255,255,255,.25); }
.btn-lg { padding: 17px 40px; font-size: 18px; }
.btn-xl { padding: 20px 48px; font-size: 20px; }
.btn-full { width: 100%; display: block; }

/* ── MOBILE NAV ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; }
.mobile-nav { display: none; background: #0d0d0d; border-top: 1px solid #222; }
.mobile-nav a {
  display: block; padding: 13px 24px; color: rgba(255,255,255,.85);
  text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 15px;
  text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid #1a1a1a;
  transition: color .15s, background .15s;
}
.mobile-nav a:hover { color: var(--yg); background: #111; }
.site-header.nav-open .mobile-nav {
  display: block; max-height: calc(100vh - 76px); overflow-y: auto;
  -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}

/* ── HERO ── */
.hero {
  background:
    linear-gradient(150deg, rgba(0,0,0,.88) 0%, rgba(15,15,15,.82) 55%, rgba(8,8,8,.86) 100%),
    var(--hero-img) center/cover no-repeat,
    linear-gradient(150deg, #000 0%, #0a0a0a 55%, #050505 100%);
  position: relative; overflow: hidden; padding: 70px 24px;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255,255,255,.025) 80px, rgba(255,255,255,.025) 81px);
}
/* Hero variant: sliding conveyor of photos behind the dark overlay, never pauses */
.hero-conveyor { background: linear-gradient(150deg, #000 0%, #0a0a0a 55%, #050505 100%); }
.hero-conveyor::after {
  background:
    linear-gradient(150deg, rgba(0,0,0,.62) 0%, rgba(15,15,15,.55) 55%, rgba(8,8,8,.6) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255,255,255,.025) 80px, rgba(255,255,255,.025) 81px);
}
.hero-conveyor-track {
  position: absolute; inset: 0; display: flex; width: max-content;
  animation: hero-conveyor-scroll 90s linear infinite;
}
.hero-conveyor-slide {
  flex: 0 0 auto; width: 460px; height: 100%;
  background-size: cover; background-position: center;
}
@keyframes hero-conveyor-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .hero-conveyor-slide { width: 260px; }
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.hero h1 { font-size: 54px; color: #fff; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 .accent {
  background: linear-gradient(165deg, #ffffff 0%, #f5f5f5 18%, #e2e2e2 38%, #c8c8c8 55%, #f0f0f0 72%, #b0b0b0 88%, #fafafa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(255,255,255,.5));
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 28px; line-height: 1.65; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.28);
  color: var(--blue-light); padding: 6px 14px; border-radius: 0;
  font-size: 12px; font-weight: 700; font-family: 'Poppins', sans-serif; letter-spacing: .5px;
}

/* ── LEAD FORM CARD ── */
.form-card { background: #fff; border-radius: 0; padding: 32px; box-shadow: 0 10px 48px rgba(0,0,0,.35); border-top: 4px solid var(--gold); }
.form-card .form-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 4px; letter-spacing: 1px; }
.form-card .form-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.form-group { margin-bottom: 14px; }
.h-captcha { margin-bottom: 14px; }
.form-error { display: none; color: #c0392b; font-size: 13px; margin-top: 10px; text-align: center; }
.form-error.show { display: block; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 2px solid var(--border);
  border-radius: 0; font-size: 15px; font-family: 'Poppins', sans-serif;
  transition: border-color .18s; background: #fafafa; color: var(--text);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-success {
  display: none; background: #f2f2f2; border: 2px solid var(--text);
  border-radius: 0; padding: 28px; text-align: center;
}
.form-success-title { color: var(--black); font-family: 'Poppins', sans-serif; font-size: 22px; margin-bottom: 8px; letter-spacing: 1px; font-weight: 700; }
.form-success p { color: var(--black); font-size: 14px; line-height: 1.6; }

/* ── SECTIONS ── */
.section { padding: 72px 24px; }
.section-sm { padding: 48px 24px; }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-sm { max-width: 800px; margin: 0 auto; }
.wrap-md { max-width: 960px; margin: 0 auto; }

.bg-white { background: #fff; }
.bg-gray  { background: var(--light-gray); }
.bg-black { background: var(--black); color: #fff; }
.bg-dg    { background: linear-gradient(165deg, rgba(255,255,255,.05) 0%, transparent 30%, rgba(255,255,255,.03) 50%, transparent 70%, rgba(255,255,255,.04) 100%), linear-gradient(135deg, #000 0%, #141414 40%, #0a0a0a 70%, #1a1a1a 100%); color: #fff; box-shadow: inset 0 3px 0 rgba(255,255,255,.12), inset 0 -3px 0 rgba(0,0,0,.5); }
.bg-red   { background: linear-gradient(165deg, #2a2a2a 0%, #161616 20%, #000000 50%, #000000 75%, #1c1c1c 100%); color: #fff; box-shadow: inset 0 3px 0 rgba(255,255,255,.08), inset 0 -3px 0 rgba(0,0,0,.6), 0 8px 32px rgba(0,0,0,.5); }
.bg-grad  { background: linear-gradient(135deg, #000 0%, #1a1a1a 60%, #000 100%); color: #fff; }

/* ── SECTION PHOTO BACKGROUND (stack onto bg-black/bg-dg/bg-grad + inline background-image) ── */
.section-photo { position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.section-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.62) 50%, rgba(0,0,0,.85) 100%); pointer-events: none; }
.section-photo > * { position: relative; z-index: 1; }
@media (max-width: 900px) { .section-photo { background-attachment: scroll; } }

.section-hd { text-align: center; margin-bottom: 52px; }
.section-hd .eyebrow { justify-content: center; }
.section-hd.align-left { text-align: left; margin-left: 0; }
.section-hd.align-left .eyebrow { justify-content: flex-start; }
.section-hd.align-left p { margin-left: 0; margin-right: 0; }
.section-hd h2::after { content: ''; display: block; width: 46px; height: 3px; background: var(--gold); margin: 14px auto 0; }
.section-hd.align-left h2::after { margin: 14px 0 0; }

/* ── SPLIT IMAGE + CONTENT BLOCK ── */
.split-block { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 560px; }
.split-block.reverse { grid-template-columns: 1fr 1fr; }
.split-block.reverse .split-media { order: 2; }
.split-block.reverse .split-content { order: 1; }
.split-media { position: relative; overflow: hidden; min-height: 360px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-content { display: flex; flex-direction: column; justify-content: center; padding: 64px 6vw; }
.split-content .eyebrow { justify-content: flex-start; }
.split-content h2 { font-size: 38px; margin-bottom: 18px; }
.split-content p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
@media (max-width: 900px) {
  .split-block, .split-block.reverse { grid-template-columns: 1fr; min-height: auto; }
  .split-block.reverse .split-media { order: 1; }
  .split-block.reverse .split-content { order: 2; }
  .split-media { min-height: 280px; }
  .split-content { padding: 44px 28px; }
}

/* ── PHOTO CTA BANNER ── */
.cta-photo { position: relative; padding: 88px 24px; text-align: center; background-size: cover; background-position: center; overflow: hidden; }
.cta-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.78) 100%); }
.cta-photo > * { position: relative; z-index: 1; }

/* ── IMAGE CONVEYOR (auto-sliding, pause on hover) ── */
.conveyor { position: relative; overflow: hidden; border-radius: 0; box-shadow: 0 10px 40px rgba(0,0,0,.25); }
.conveyor-track { display: flex; width: max-content; animation: conveyor-scroll 50s linear infinite; }
.conveyor:hover .conveyor-track { animation-play-state: paused; }
.conveyor-slide { position: relative; flex: 0 0 auto; width: 340px; height: 340px; border-radius: 0; overflow: hidden; }
.conveyor-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.conveyor-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.78) 100%);
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 18px; text-transform: uppercase; letter-spacing: 1px;
}
@keyframes conveyor-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .conveyor-slide { width: 230px; height: 230px; }
  .conveyor-caption { font-size: 15px; padding: 18px 16px 12px; }
}
/* Full-bleed variant: breaks out of the .wrap container to span the full viewport width */
.conveyor-full { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; border-radius: 0; box-shadow: none; }
/* Large variant: bigger tiles for the portfolio showcase */
.conveyor-lg .conveyor-slide { width: 480px; height: 480px; }
.conveyor-lg .conveyor-track { animation-duration: 110s; }
.conveyor-lg .conveyor-caption { font-size: 22px; padding: 30px 26px 20px; }
@media (max-width: 700px) {
  .conveyor-lg .conveyor-slide { width: 280px; height: 280px; }
  .conveyor-lg .conveyor-caption { font-size: 16px; padding: 20px 18px 14px; }
}
.section-hd h2 { font-size: 40px; text-transform: uppercase; }
.section-hd p { font-size: 17px; color: var(--muted); max-width: 640px; margin: 12px auto 0; line-height: 1.65; }
.bg-black .section-hd p, .bg-dg .section-hd p, .bg-grad .section-hd p { color: rgba(255,255,255,.7); }
.bg-black .section-hd h2, .bg-dg .section-hd h2, .bg-grad .section-hd h2 { color: #fff; }

/* ── 3-STEP HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 3px; background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-deep));
  box-shadow: 0 0 8px rgba(255,255,255,.4);
}
.steps.grid-4::before { display: none; }
.step { text-align: center; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%);
  color: #111; font-family: 'Poppins', sans-serif; font-size: 34px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: inset 0 3px 0 rgba(255,255,255,.98), inset 0 -3px 0 rgba(0,0,0,.42), 0 8px 28px rgba(0,0,0,.6);
  text-shadow: 0 1px 0 rgba(255,255,255,.6), 0 -1px 0 rgba(0,0,0,.2);
}
.step h3 { font-size: 19px; text-transform: uppercase; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.bg-dg .step h3, .bg-black .step h3, .bg-grad .step h3 { color: #fff; }
.bg-dg .step p, .bg-black .step p, .bg-grad .step p { color: rgba(255,255,255,.7); }

/* ── CTA BANNER ── */
.cta-banner { padding: 52px 24px; text-align: center; }
.cta-banner h2 { font-size: 42px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 28px; line-height: 1.65; }

/* ── 4-ITEM GRID VARIANT (4 across desktop, 2x2 tablet, 1 per row mobile) ── */
.features-grid.grid-4, .steps.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .features-grid.grid-4, .steps.grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid.grid-4, .steps.grid-4 { grid-template-columns: 1fr; }
}

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 0;
  padding: 28px 22px; text-align: center;
  transition: transform .18s, box-shadow .18s; border-bottom: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.15); border-bottom-color: var(--silver-edge); }
.feature-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(0,0,0,.05); border: 2px solid rgba(0,0,0,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--gold-deep); }
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 17px; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── SITUATIONS ── */
.situations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.sit-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
  border-radius: 0; padding: 22px 14px; text-align: center;
  transition: all .18s; cursor: default;
}
.sit-card:hover {
  background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%);
  border-color: var(--silver-mid); transform: translateY(-3px);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.9), inset 0 -2px 0 rgba(0,0,0,.4), 0 10px 28px rgba(0,0,0,.5);
}
.sit-card:hover h3, .sit-card:hover h4 { color: #000; }
.sit-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--gold-hi); transition: background .18s; }
.sit-icon svg { width: 26px; height: 26px; }
.sit-card:hover .sit-icon { background: rgba(0,0,0,.08); color: #000; }
.sit-card h3, .sit-card h4 { font-size: 15px; text-transform: uppercase; color: var(--blue-light); line-height: 1.4; letter-spacing: .3px; }
.bg-gray .sit-card, .bg-white .sit-card { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.12); }
.bg-gray .sit-icon, .bg-white .sit-icon { background: rgba(0,0,0,.05); color: var(--gold-deep); }
.bg-gray .sit-card h3, .bg-gray .sit-card h4, .bg-white .sit-card h3, .bg-white .sit-card h4 { color: var(--text); }
.bg-gray .eyebrow, .bg-white .eyebrow { color: var(--red); }

/* ── SUPPORT COLUMNS ── */
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.sup-card { text-align: center; padding: 32px 22px; background: rgba(255,255,255,.04); border-radius: 0; border: 1px solid rgba(255,255,255,.08); }
.sup-icon { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold-hi); }
.sup-icon svg { width: 36px; height: 36px; }
.sup-card h3 { font-size: 22px; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.sup-card p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ── PULL QUOTE ── */
.pull-quote { padding: 56px 24px; text-align: center; background: var(--black); }
.pull-quote blockquote { max-width: 740px; margin: 0 auto; font-size: 22px; font-style: italic; color: #fff; line-height: 1.65; }
.pull-quote cite { display: block; margin-top: 16px; color: var(--gold-hi); font-style: normal; font-family: 'Poppins', sans-serif; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }

/* ── COUNTY TAGS ── */
.county-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.county-tag {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22);
  border-radius: 0; padding: 10px 12px; text-align: center;
  font-family: 'Poppins', sans-serif; font-size: 14px; text-transform: uppercase;
  color: var(--red); letter-spacing: .5px; font-weight: 600;
}
.bg-white .county-tag, .bg-gray .county-tag { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.15); }
.bg-black .county-tag, .bg-dg .county-tag, .bg-grad .county-tag { color: var(--blue-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:
    linear-gradient(150deg, rgba(0,0,0,.88) 0%, rgba(18,18,18,.82) 50%, rgba(10,10,10,.86) 100%),
    var(--hero-img) center/cover no-repeat,
    linear-gradient(150deg, #000, #161616, #0a0a0a);
  padding: 56px 24px; text-align: center;
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 12px; }
.page-hero h1 { font-size: 50px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto; line-height: 1.65; }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; border-radius: 0; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table thead tr { background: var(--black); }
.compare-table th { padding: 16px 20px; font-family: 'Poppins', sans-serif; font-size: 16px; text-transform: uppercase; color: #fff; text-align: left; letter-spacing: 1px; }
.compare-table th:nth-child(3) { background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%); color: #000; box-shadow: inset 0 2px 0 rgba(255,255,255,.9), inset 0 -2px 0 rgba(0,0,0,.35); }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:nth-child(even) { background: var(--light-gray); }
.compare-table td { padding: 13px 20px; font-size: 14px; vertical-align: middle; }
.compare-table td:first-child { font-weight: 600; color: var(--black); }
.yes { color: var(--black); font-weight: 800; }
.no  { color: #888; font-weight: 700; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
details summary {
  padding: 18px 0; font-family: 'Poppins', sans-serif; font-size: 18px;
  font-weight: 600; text-transform: uppercase; color: var(--black);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; list-style: none; user-select: none; letter-spacing: .5px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 24px; color: var(--gold-deep); flex-shrink: 0; }
details[open] summary::after { content: '−'; }
.faq-answer { padding: 0 0 18px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── FORM SECTION (2-col with content) ── */
.form-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.fs-content h2 { font-size: 36px; text-transform: uppercase; margin-bottom: 14px; }
.fs-content p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.check-list { list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--gold-deep); font-weight: 800; flex-shrink: 0; font-size: 16px; margin-top: 1px; }

/* ── SOCIAL PROOF STRIP ── */
.proof-strip { background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%); padding: 16px 24px; text-align: center; box-shadow: inset 0 2px 0 rgba(255,255,255,.9), inset 0 -2px 0 rgba(0,0,0,.35), 0 4px 20px rgba(0,0,0,.3); }
.proof-strip p { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: #000; letter-spacing: 1px; }
.proof-strip p span { color: rgba(0,0,0,.55); }

.pledge-box {
  background: var(--light-gray); border-left: 4px solid var(--silver-edge);
  border-radius: 0; padding: 20px 24px; margin-top: 28px;
}
.pledge-box p { font-size: 15px; font-style: italic; color: var(--text); line-height: 1.7; }
.pledge-box strong { color: var(--black); }

/* ── BEFORE/AFTER ── */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.ba-img {
  background: linear-gradient(135deg, #111, #222); border-radius: 0;
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; border: 2px dashed #3a3a3a; color: #555;
  font-family: 'Poppins', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
}
.ba-img .ba-icon { font-size: 42px; opacity: .4; }
.ba-label {
  display: inline-block;
  background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%);
  color: #000; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px;
  border-radius: 0; margin-bottom: 8px;
}
.ba-big-icon { width: 84px; height: 84px; opacity: .3; color: #fff; }
.ba-label-txt { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.3); }
.ba-footer { background: #0d0d0d; padding: 14px 16px; display: flex; gap: 16px; }
.ba-stat   { text-align: center; flex: 1; }
.ba-stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue-light); }
.ba-after  .ba-footer .ba-stat strong { color: var(--blue-light); }
.ba-stat span { font-size: 10px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .4px; }

/* ── OFFER FORMULA ── */
.formula-box {
  background: var(--black); color: #fff; border-radius: 0;
  padding: 32px; text-align: center; border: 1px solid rgba(255,255,255,.25);
}
.formula-box h3 { font-size: 18px; text-transform: uppercase; color: var(--gold-hi); margin-bottom: 20px; letter-spacing: 1px; }
.formula { font-family: 'Poppins', sans-serif; font-size: 22px; color: #fff; line-height: 2.2; letter-spacing: .5px; }
.formula .var { color: var(--blue-light); }
.formula .op { color: rgba(255,255,255,.4); margin: 0 8px; }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: rgba(255,255,255,.65); padding: 64px 24px 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #1e1e1e; }
.footer-brand img { height: 72px; width: auto; max-width: 220px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.s-btn {
  width: 36px; height: 36px; border-radius: 50%; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .18s, color .18s; color: #fff;
}
.s-btn svg { width: 18px; height: 18px; }
.s-btn:hover { background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%); color: #000; box-shadow: inset 0 1px 0 rgba(255,255,255,.9), inset 0 -1px 0 rgba(0,0,0,.35); }
.footer-col h3 { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: var(--yg); }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.ci-icon { color: var(--gold-hi); flex-shrink: 0; margin-top: 1px; display: flex; }
.ci-icon svg { width: 16px; height: 16px; }
.icon-inline { width: 15px; height: 15px; vertical-align: -2px; margin-right: 5px; fill: currentColor; }
.footer-bar { max-width: 1200px; margin: 0 auto; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px; }
.footer-bar a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bar a:hover { color: var(--yg); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-quick-actions { display: flex; margin-left: auto; margin-right: 14px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .situations-grid { grid-template-columns: repeat(2,1fr); }
  .county-grid { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .support-grid { grid-template-columns: 1fr; }
  .form-section { grid-template-columns: 1fr; gap: 36px; }
  .ba-grid { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 30px; }
  .section-hd h2, .page-hero h1 { font-size: 32px !important; }
}
@media (max-width: 600px) {
  .section { padding: 52px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr 1fr; }
  .county-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .pull-quote blockquote { font-size: 18px; }
}

/* ── SCROLL ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.anim.fade-left  { transform: translateX(-44px); }
.anim.fade-right { transform: translateX(44px); }
.anim.zoom-in    { transform: scale(.9); }
.anim.in { opacity: 1 !important; transform: none !important; }
.anim.d1 { transition-delay: .1s; } .anim.d2 { transition-delay: .2s; } .anim.d3 { transition-delay: .3s; }
.anim.d4 { transition-delay: .4s; } .anim.d5 { transition-delay: .5s; } .anim.d6 { transition-delay: .6s; }

.page-hero { position: relative; overflow: hidden; }

/* ── STATS STRIP ── */
.stats-strip { background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%); padding: 44px 24px; box-shadow: inset 0 3px 0 rgba(255,255,255,.9), inset 0 -3px 0 rgba(0,0,0,.4), 0 8px 32px rgba(0,0,0,.35); }
.stats-grid  { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.stat-num  { display: block; font-family: 'Poppins', sans-serif; font-size: 52px; font-weight: 700; color: #000; line-height: 1; text-shadow: 0 1px 0 rgba(255,255,255,.4); }
.stat-lbl  { font-size: 11px; color: rgba(0,0,0,.65); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block; }

/* ── BEFORE / AFTER CARDS ── */
.ba-card   { border-radius: 0; overflow: hidden; }
.ba-image  { height: 320px; position: relative; overflow: hidden; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-image::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 26%, transparent 74%, rgba(0,0,0,.2) 100%); }
.ba-badge  { position: absolute; top: 14px; left: 14px; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 0; }
.ba-before .ba-badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.65); }
.ba-after  .ba-badge { background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%); color: #000; }
.ba-big-icon { width: 84px; height: 84px; opacity: .3; color: #fff; }
.ba-label-txt { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.3); }

/* ── XAVIER PHOTO PLACEHOLDER ── */
.xavier-photo { background: linear-gradient(145deg, #1a1a1a, #000, #1a1a1a); border-radius: 0; aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; max-width: 340px; }
.xavier-initial { width: 100px; height: 100px; background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFA 8%, #E8E8E8 22%, #C4C4C4 36%, #A8A8A8 50%, #C0C0C0 63%, #EAEAEA 77%, #FFFFFF 90%, #E0E0E0 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 52px; font-weight: 700; color: #000; box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -2px 0 rgba(0,0,0,.4), 0 8px 28px rgba(0,0,0,.5); text-shadow: 0 1px 0 rgba(255,255,255,.5), 0 -1px 0 rgba(0,0,0,.15); }
.xavier-plate strong { display: block; font-family: 'Poppins', sans-serif; font-size: 24px; color: #fff; text-align: center; }
.xavier-plate span   { display: block; font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-top: 4px; }

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-num   { font-size: 40px; }
}

/* ── COOKIE CONSENT BANNER ── */
#cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 10000; background: var(--black); border-top: 3px solid var(--gold); padding: 18px 24px; }
#cookie-banner[hidden] { display: none; }
.cookie-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner-inner p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.6; margin: 0; flex: 1; min-width: 240px; }
.cookie-banner-inner p a { color: var(--yg); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions .btn { flex: 1; }
}
body.has-cookie-banner #a11y-widget { bottom: 112px; transition: bottom .2s; }
@media (max-width: 600px) {
  body.has-cookie-banner #a11y-widget { bottom: 172px; }
}

/* ── ACCESSIBILITY WIDGET ── */
#a11y-widget { position:fixed; bottom:28px; right:28px; z-index:9999; font-family:'Poppins',sans-serif; }
#a11y-toggle { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,#3a3a3a,#0a0a0a); border:none; color:#fff; font-size:22px; cursor:pointer; box-shadow:0 4px 20px rgba(0,0,0,.4); transition:.3s; display:flex; align-items:center; justify-content:center; }
#a11y-toggle:hover { transform:scale(1.1); }
#a11y-panel { position:absolute; bottom:64px; right:0; width:230px; background:#111; border:1px solid rgba(255,255,255,.12); border-radius: 0; padding:20px; box-shadow:0 8px 32px rgba(0,0,0,.6); }
#a11y-panel[hidden] { display:none; }
.a11y-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; color:#fff; font-size:14px; font-weight:600; }
.a11y-close { background:none; border:none; color:rgba(255,255,255,.5); font-size:18px; cursor:pointer; padding:0 4px; line-height:1; }
.a11y-close:hover { color:#fff; }
.a11y-options { display:flex; flex-direction:column; gap:8px; }
.a11y-btn { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); color:#ddd; padding:10px 14px; border-radius: 0; cursor:pointer; font-size:.83rem; transition:.25s; width:100%; text-align:left; }
.a11y-btn:hover { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.35); color:#fff; }
.a11y-btn.active { background:rgba(255,255,255,.2); border-color:var(--yg); color:#fff; }
.a11y-font-row { display:flex; align-items:center; gap:6px; }
.a11y-font-row .a11y-btn { flex:1; text-align:center; padding:10px 6px; }
.a11y-label { color:rgba(255,255,255,.55); font-size:.78rem; white-space:nowrap; flex:1; text-align:center; }
body.a11y-high-contrast { filter:contrast(1.5) brightness(1.1); }
body.a11y-no-motion *, body.a11y-no-motion *::before, body.a11y-no-motion *::after { animation:none!important; transition:none!important; }
body.a11y-dyslexia { font-family:Arial,sans-serif!important; letter-spacing:.05em; line-height:1.9; }

/* Respect OS-level reduced-motion preference automatically, in addition to the manual a11y toggle above */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .anim { opacity: 1 !important; transform: none !important; }
}

