/* ============================================================
   HUNTSVILLE EPOXY — MASTER STYLESHEET
   Palette: Industrial Steel + Rocket Orange + Clean White
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --orange:    #E85D04;
  --orange-dk: #C44E03;
  --orange-lt: #FFF0E6;
  --steel:     #1A1F2E;
  --steel-md:  #2D3446;
  --steel-lt:  #4A5568;
  --white:     #FFFFFF;
  --off-white: #F8F9FA;
  --border:    #E2E8F0;
  --text:      #1A202C;
  --text-muted:#718096;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);

  --max-w: 1160px;
  --gutter: 1.5rem;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dk); }
ul   { list-style: none; }

/* ── UTILITIES ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all .2s;
  white-space: nowrap;
}
.btn-primary   { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dk); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline   { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--steel); }
.btn-dark      { background: var(--steel); color: var(--white); }
.btn-dark:hover { background: var(--steel-md); color: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1; color: var(--steel); text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title span { color: var(--orange); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── TOPBAR ──────────────────────────────────────────── */
.topbar {
  background: var(--steel); color: rgba(255,255,255,.75);
  font-size: .8rem; padding: .45rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.topbar-phone { font-weight: 600; font-size: .9rem; color: var(--orange) !important; }

/* ── HEADER / NAV ────────────────────────────────────── */
.site-header {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1.5rem; }
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--steel); text-transform: uppercase; letter-spacing: .02em; }
.logo-main span { color: var(--orange); }
.logo-sub  { font-size: .65rem; font-weight: 500; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 1px; }

.nav { display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }
.nav-link {
  font-family: var(--font-display); font-size: .95rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase; padding: .5rem .7rem;
  color: var(--steel); border-radius: var(--radius-sm); transition: all .15s;
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: var(--orange-lt); }

.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 220px; z-index: 999; overflow: hidden;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: .7rem 1.2rem;
  font-size: .9rem; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--steel); border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--orange-lt); color: var(--orange); }

.nav-cta { margin-left: .5rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--steel); margin: 5px 0; transition: all .3s; border-radius: 2px; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--steel);
  min-height: 92vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,31,46,.92) 0%, rgba(26,31,46,.7) 60%, rgba(232,93,4,.15) 100%),
    url('../images/hero-epoxy-floor.jpg') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; padding: 5rem 0 4rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(232,93,4,.18); border: 1px solid rgba(232,93,4,.4);
  border-radius: 100px; padding: .35rem 1rem; margin-bottom: 1.5rem;
}
.hero-eyebrow span { font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #FFA570; }
.hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }

.hero-title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem); line-height: 1.0;
  color: var(--white); margin-bottom: 1.25rem; max-width: 820px;
}
.hero-title .accent { color: var(--orange); }
.hero-title .city { display: block; font-size: clamp(1.6rem,4vw,3rem); color: rgba(255,255,255,.55); }

.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,.78); max-width: 540px; line-height: 1.75; margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat { }
.stat-num  { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label{ font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }

.hero-badges {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1rem; z-index: 2;
}
.badge-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; text-align: center; width: 140px;
}
.badge-icon  { font-size: 1.8rem; margin-bottom: .35rem; }
.badge-title { font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .04em; }
.badge-sub   { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--orange); padding: 1.1rem 0;
}
.trust-bar .container { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; }
.trust-item svg { flex-shrink: 0; }

/* ── SERVICES GRID ───────────────────────────────────── */
.services { padding: 5rem 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all .25s; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-img {
  height: 200px; background: var(--steel-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.service-img img { width:100%; height:100%; object-fit:cover; }
.service-img-placeholder { color: rgba(255,255,255,.15); font-size: 4rem; }
.service-body { padding: 1.5rem; }
.service-tag  { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .4rem; }
.service-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; text-transform: uppercase; color: var(--steel); margin-bottom: .6rem; line-height: 1.2; }
.service-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.service-link { font-family: var(--font-display); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--orange); display: flex; align-items: center; gap: .4rem; }
.service-link:hover { gap: .7rem; }

/* ── WHY US ──────────────────────────────────────────── */
.why-us { padding: 5rem 0; }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 520px; background: var(--steel-md);
  display: flex; align-items: center; justify-content: center;
}
.why-img-wrap img { width:100%; height:100%; object-fit:cover; }
.why-badge-float {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--orange); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; color: var(--white);
}
.why-badge-float .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.why-badge-float .lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }

.why-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.why-feat { display: flex; gap: 1rem; align-items: flex-start; }
.why-feat-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--orange-lt); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.why-feat-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--steel); margin-bottom: .25rem; }
.why-feat-desc  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── PROCESS ─────────────────────────────────────────── */
.process { padding: 5rem 0; background: var(--steel); }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,.6); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 3rem; position: relative; }
.process-step { padding: 2rem 1.5rem; position: relative; text-align: center; }
.process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -12px; top: 2.5rem;
  color: var(--orange); font-size: 1.5rem; z-index: 2;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--white); margin-bottom: .5rem; }
.step-desc  { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews { padding: 5rem 0; background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: .95rem; color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-name   { font-weight: 600; font-size: .9rem; color: var(--steel); }
.author-detail { font-size: .8rem; color: var(--text-muted); }

/* ── GALLERY STRIP ───────────────────────────────────── */
.gallery-strip { padding: 5rem 0; }
.gallery-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; margin-top: 2rem; height: 480px; }
.gallery-item  { background: var(--steel-md); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(232,93,4,.0);
  display: flex; align-items: flex-end; padding: 1rem;
  transition: background .3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(232,93,4,.45); }
.gallery-label { font-family: var(--font-display); font-size: .9rem; font-weight: 700; text-transform: uppercase; color: var(--white); opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── CTA BAND ────────────────────────────────────────── */
.cta-band {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--steel) 0%, var(--steel-md) 100%);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(232,93,4,.12);
}
.cta-band-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-title { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.cta-band-title span { color: var(--orange); }
.cta-band-sub { font-size: 1rem; color: rgba(255,255,255,.6); margin-top: .5rem; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── SERVICE AREAS ───────────────────────────────────── */
.areas { padding: 5rem 0; background: var(--off-white); }
.areas-list { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.area-pill {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: .5rem 1.1rem;
  font-family: var(--font-display); font-size: .88rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--steel); transition: all .2s;
}
.area-pill:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ── BLOG PREVIEW ────────────────────────────────────── */
.blog-preview { padding: 5rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all .25s; box-shadow: var(--shadow-sm);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px; background: var(--steel-md);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.15); font-size:3rem;
  overflow:hidden;
}
.blog-card-img img { width:100%; height:100%; object-fit:cover; }
.blog-card-body { padding: 1.5rem; }
.blog-cat  { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.blog-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--steel); margin: .4rem 0 .6rem; line-height: 1.3; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--orange); }
.blog-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.blog-meta  { display: flex; gap: 1rem; margin-top: 1rem; font-size: .8rem; color: var(--text-muted); }

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-family: var(--font-display); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--steel); }
.form-input, .form-select, .form-textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: var(--off-white); transition: border-color .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--steel); color: rgba(255,255,255,.65); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-main { color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: .75rem; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col li a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col li a:hover { color: var(--white); }
.footer-contact { font-size: .88rem; line-height: 1.8; }
.footer-phone { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--orange) !important; display: block; margin-bottom: .35rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; font-size: .8rem; flex-wrap: wrap; gap: .75rem; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--steel);
  padding: 4rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,31,46,.95), rgba(26,31,46,.75));
}
.page-hero-inner { position: relative; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-title { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.page-title span { color: var(--orange); }
.page-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.65); margin-top: .75rem; max-width: 560px; }

/* ── FAQ ACCORDION ───────────────────────────────────── */
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: .75rem; margin-top: 2.5rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  padding: 1.1rem 1.5rem; background: var(--white); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em; color: var(--steel);
  transition: background .15s; user-select: none;
}
.faq-q:hover { background: var(--orange-lt); }
.faq-q.open  { background: var(--orange); color: var(--white); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-icon    { font-size: 1.3rem; transition: transform .25s; flex-shrink: 0; }
.faq-a {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  font-size: .92rem; color: var(--text-muted); line-height: 1.75;
  transition: max-height .35s ease, padding .35s ease; background: var(--off-white);
}
.faq-a.open  { max-height: 400px; padding: 1.1rem 1.5rem; }

/* ── COMPARISON TABLE ────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: 1.5rem 0; }
.compare-table th { background: var(--steel); color: var(--white); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .9rem 1rem; text-align: left; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table .check { color: #16A34A; font-size: 1.1rem; }
.compare-table .cross { color: #DC2626; font-size: 1.1rem; }
.compare-table .hl-col { background: var(--orange-lt) !important; font-weight: 600; }

/* ── UTILITY SECTIONS ────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.bg-off { background: var(--off-white); }
.bg-dark { background: var(--steel); }
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── STICKY CTA BAR (mobile) ─────────────────────────── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--steel); border-top: 2px solid var(--orange);
  padding: .75rem var(--gutter); gap: .75rem;
  align-items: center; justify-content: space-between;
}
.sticky-cta-text { color: var(--white); font-family: var(--font-display); font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.sticky-cta-text span { color: var(--orange); }

/* ── SCHEMA / HIDDEN ─────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-badges { display: none; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-img-wrap { height: 340px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .gallery-item:first-child { grid-row: auto; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--steel); z-index: 9999; padding: 2rem; overflow-y: auto; }
  .nav.open .nav-link { font-size: 1.4rem; padding: .85rem .5rem; border-bottom: 1px solid rgba(255,255,255,.1); color: var(--white); }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: 2.6rem; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band-inner { flex-direction: column; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .process-step:not(:last-child)::after { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
}

@media (max-width: 480px) {
  :root { --gutter: 1rem; }
  .hero { min-height: 85vh; }
  .trust-bar .container { gap: 1.5rem; }
}
