/* eliteroofingnj-dark — global.css
 * Design source: design-systems/eliteroofingnj (DESIGN.md)
 * Theme: dark (#000 bg, #212121 surface), corporate-blue accent (#116dff),
 *        Inter typography (substitute for source WixMadeforDisplay),
 *        4px base grid, 8px primary radius (scale 2-30px), 1080px max content,
 *        expressive motion. Hudson County NJ source brand.
 */

:root {
  --background:      #000000;
  --surface:         #212121;
  --surface-alt:     #151414;
  --text-primary:    #ffffff;
  --text-secondary:  #cccccc;
  --text-muted:      #787878;
  --text-faint:      #5f6360;
  --accent:          #116dff;
  --accent-dark:     #0a4dc4;
  --accent-light:    #3699ec;
  --warning:         #c7ac43;
  --success:         #2bc550;
  --danger:          #e94133;
  --link:            #116dff;
  --border:          #333333;
  --border-light:    #444444;
  --radius:          8px;
  --radius-sm:       3px;
  --radius-md:       12px;
  --radius-lg:       16px;
  --radius-xl:       24px;
  --radius-pill:     100px;
  --max-w:           1080px;
  --shadow-sm:       0 1px 4px rgba(0,0,0,0.6);
  --shadow-md:       0 2px 10px 1px rgba(0,0,0,0.45);
  --shadow-lg:       0 10px 40px rgba(0,0,0,0.7);
  --transition:      0.3s ease;
  --transition-fast: 0.15s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

p  { margin-bottom: 16px; max-width: 65ch; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 16px 1.25em; }
li { margin-bottom: 4px; }

/* ── LAYOUT ────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  font-family: inherit;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #ffffff; transform: translateY(-1px); }
.btn-lg    { padding: 16px 32px; font-size: 16px; }
.btn-sm    { padding: 8px 16px; font-size: 13px; }
.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border-light); }
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); background: transparent; transform: translateY(-1px); }
.btn-light { background: #ffffff; color: var(--background); border-color: #ffffff; }
.btn-light:hover { background: var(--accent); border-color: var(--accent); color: #ffffff; }

/* Pill variant */
.btn-pill {
  background: var(--accent);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition-fast), transform var(--transition-fast);
  font-family: inherit;
  border: none;
}
.btn-pill:hover { background: var(--accent-dark); color: #ffffff; transform: translateY(-2px); }

/* ── HEADER ────────────────────────────────────────── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.header-top {
  background: var(--surface-alt);
  color: var(--text-secondary);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.header-top a { color: var(--text-secondary); }
.header-top a:hover { color: var(--accent); }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-wrap { display: flex; align-items: center; }
.logo-img  { height: 50px; width: auto; }
.main-nav  { display: flex; gap: 4px; align-items: center; }
.nav-link  { font-size: 14px; font-weight: 500; padding: 10px 12px; color: var(--text-primary); border-radius: var(--radius-sm); transition: color var(--transition-fast), background var(--transition-fast); }
.nav-link:hover  { color: var(--accent); }
.nav-link.active { color: var(--accent); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.phone-link { font-weight: 700; font-size: 15px; color: var(--text-primary); }
.phone-link:hover { color: var(--accent); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer { display: none; flex-direction: column; gap: 4px; padding: 16px; background: var(--surface); border-top: 1px solid var(--border); }
.nav-drawer.is-open { display: flex; }
.nav-drawer .nav-link { padding: 12px 14px; font-size: 15px; }
.nav-drawer .nav-link:hover { background: rgba(255,255,255,0.04); }
.nav-drawer .btn,
.nav-drawer .btn-ghost { margin-top: 6px; text-align: center; justify-content: center; }

/* ── ANNOUNCEMENT MARQUEE (homepage) ─────────────── */
.announcement-bar {
  background: var(--surface-alt);
  color: var(--accent);
  padding: 10px 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.announcement-slider { display: flex; animation: scroll 30s linear infinite; gap: 60px; padding-left: 60px; }
.announcement-item { white-space: nowrap; display: flex; align-items: center; gap: 8px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 540px;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--background);
}
.hero-bg, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(7,33,54,0.55) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; padding: 88px 0 72px; }
.hero-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.hero-section h1, .hero h1 { color: #ffffff; margin-bottom: 18px; }
.hero h2 { color: #ffffff; }
.hero-sub { font-size: 1.1rem; line-height: 1.5; max-width: 620px; margin-bottom: 26px; color: rgba(255,255,255,0.88); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone { display: inline-flex; align-items: center; gap: 8px; color: #ffffff; font-weight: 700; font-size: 17px; }
.hero-phone:hover { color: var(--accent-light); }

/* Trust widget */
.trust-widget {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #ffffff;
}
.trust-widget .stars { color: var(--warning); letter-spacing: 2px; }

/* ── STATS STRIP ───────────────────────────────────── */
.stats { background: var(--surface); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat-num { font-family: 'Inter', sans-serif; font-size: 2.75rem; line-height: 1; color: var(--accent); font-weight: 800; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── TWO-COLUMN SPLITS (about / process / location / warranty) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--surface); }
.split-img { position: relative; min-height: 440px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-content { background: var(--surface); padding: 70px 56px; display: flex; flex-direction: column; justify-content: center; }
.split-content h2 { margin-bottom: 14px; }
.split-content p  { margin-bottom: 18px; color: var(--text-secondary); }

/* Title underline — small accent bar under section h2 */
.title-underline { width: 50px; height: 4px; background: var(--accent); margin: 0 0 22px 0; border-radius: 2px; }
.title-underline.center { margin-left: auto; margin-right: auto; }

/* ── BENEFITS GRID (about-blurb) ──────────────────── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-bottom: 24px; }
.benefit { padding: 6px 0; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.benefit::before { content: '✓'; color: var(--accent); margin-right: 8px; font-weight: 900; }

/* ── SECTION WRAPPERS ────────────────────────────── */
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--text-secondary); max-width: 700px; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ── SERVICES GRID (homepage) ─────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-img-wrapper { position: relative; height: 220px; overflow: hidden; }
.service-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.service-icon-wrapper {
  position: absolute;
  bottom: -25px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
}
.service-content { padding: 36px 24px 26px; }
.service-content h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-primary); }
.service-text { margin-bottom: 16px; color: var(--text-secondary); font-size: 14px; }
.service-btn { color: var(--accent); font-weight: 700; font-size: 14px; }

/* ── ROOFING TYPES GRID (4-up) ───────────────────── */
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 30px; }
.type-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: border-color var(--transition); }
.type-card:hover { border-color: var(--accent); }
.type-card img { width: 100%; height: 170px; object-fit: cover; }
.type-content { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.type-content h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-primary); }
.type-content p  { font-size: 14px; margin-bottom: 14px; flex: 1; color: var(--text-secondary); }

/* ── TESTIMONIAL CARDS ───────────────────────────── */
.testimonial-single { background: var(--surface); padding: 60px 24px; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rating, .stars { color: var(--warning); font-size: 1.4rem; margin-bottom: 14px; letter-spacing: 2px; }
.quote, blockquote { font-size: 1.125rem; font-style: italic; color: var(--text-secondary); margin-bottom: 14px; max-width: 760px; margin-left: auto; margin-right: auto; }
.author, .reviewer { font-weight: 700; color: var(--text-primary); }

.testimonials-grid, .reviews-grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card, .review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}
.testimonial-card:hover, .review-card:hover { border-color: var(--accent); }
.testimonial-card .stars, .review-card .stars { font-size: 16px; }
.testimonial-card blockquote { font-size: 15px; text-align: left; margin: 12px 0 16px; color: var(--text-secondary); font-style: italic; }
.testimonial-card .reviewer { font-size: 14px; color: var(--text-muted); font-weight: 700; }

.review-card-stars  { color: var(--warning); font-size: 16px; letter-spacing: 2px; }
.review-card-text   { margin: 12px 0 16px; font-style: italic; color: var(--text-secondary); }
.review-card-author { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.review-card-badge  { font-size: 12px; color: var(--text-muted); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.review-source-dot  { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band { background: var(--accent); padding: 80px 0; text-align: center; color: #ffffff; }
.cta-band h2 { color: #ffffff; margin-bottom: 14px; }
.cta-band p  { font-size: 1.1rem; max-width: 760px; margin: 0 auto 28px; color: rgba(255,255,255,0.95); }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-light { background: #ffffff; color: var(--accent); border-color: #ffffff; }
.cta-band .btn-light:hover { background: var(--background); color: #ffffff; border-color: var(--background); }
.cta-band .btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.7); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; color: #ffffff; }
.cta-phone-large { font-family: 'Inter', sans-serif; font-size: 1.5rem; padding: 14px 28px; background: var(--background); color: #ffffff; border-radius: var(--radius); display: inline-block; font-weight: 700; }
.cta-phone-large:hover { background: var(--surface); color: var(--accent-light); }
.cta-footnote { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 18px; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px; }
.process-step  {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: border-color var(--transition);
}
.process-step:hover { border-color: var(--accent); }
.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 18px;
}
.step-content h3, .process-step h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-primary); }
.step-content p, .process-step p   { color: var(--text-secondary); margin-bottom: 0; font-size: 14px; }

/* Variant: split-layout vertical list */
.process-steps.list { grid-template-columns: 1fr; gap: 0; }
.process-steps.list .process-step { text-align: left; padding: 18px 0; border: none; border-bottom: 1px solid var(--border); border-radius: 0; display: flex; gap: 18px; align-items: flex-start; }
.process-steps.list .process-step:last-child { border-bottom: none; }
.process-steps.list .step-number { margin: 0; flex-shrink: 0; }

/* ── INCLUSIONS / DETAIL LISTS ──────────────────── */
.detail-list { list-style: none; margin: 0 0 18px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.detail-list li { padding: 10px 0 10px 26px; position: relative; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.detail-list li::before { content: '✓'; color: var(--accent); font-weight: 900; position: absolute; left: 0; top: 10px; }

/* ── COMPARISON TABLE ───────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); }
.comparison-table thead th { background: var(--surface-alt); color: var(--text-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; border-bottom: 2px solid var(--accent); }
.comparison-table tbody th { font-weight: 700; background: var(--surface-alt); color: var(--text-primary); width: 22%; }
.comparison-table .row-business { background: rgba(17, 109, 255, 0.10); }
.comparison-table .row-business th { background: var(--accent); color: #ffffff; }
.comparison-table .row-business td { color: var(--text-primary); }

/* ── CASE STUDY CARD ────────────────────────────── */
.case-study {
  background: var(--surface);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  max-width: 820px;
  margin: 0 auto;
}
.case-study .case-meta { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; font-weight: 700; }
.case-study h3 { margin-bottom: 14px; font-size: 1.4rem; }
.case-study p  { margin-bottom: 14px; color: var(--text-secondary); line-height: 1.65; }
.case-study .materials { list-style: none; padding: 0; margin: 14px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.case-study .materials li { background: var(--surface-alt); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 5px 12px; font-size: 13px; color: var(--text-secondary); margin: 0; }
.case-study .outcome { font-weight: 700; padding-top: 14px; border-top: 1px solid var(--border); margin-bottom: 0; color: var(--text-primary); font-style: italic; }

/* ── FAQ ACCORDION ──────────────────────────────── */
.faq-list, .faq-accordion { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition); }
.faq-item:hover { border-color: var(--border-light); }
.faq-item summary,
.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: inherit;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after,
.faq-question .faq-icon {
  content: '+';
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-question[aria-expanded="true"] { background: var(--surface-alt); }
.faq-answer { padding: 0 24px 22px; color: var(--text-secondary); line-height: 1.65; font-size: 14px; }
.faq-question + .faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding-top: 0; padding-bottom: 0; }
.faq-question[aria-expanded="true"] + .faq-answer { max-height: 800px; padding: 0 24px 22px; }
details.faq-item .faq-answer { padding: 0 24px 22px; max-height: none; }

/* ── VALUE / TEAM / FEATURE / WHY CARD GRIDS ─────── */
.values-grid, .team-grid, .feature-grid, .why-grid, .product-grid, .location-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card, .team-member, .feature-item, .why-card, .product-card, .location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover, .team-member:hover, .why-card:hover, .product-card:hover, .location-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.value-card h3, .team-member h3, .why-card h3, .product-card h3, .location-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-primary); }
.value-card p, .team-member p, .why-card p, .product-card p, .location-card p { color: var(--text-secondary); font-size: 14px; }
.team-member img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 16px; }
.team-member .role { color: var(--accent); font-weight: 700; font-size: 13px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; }
.feature-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.feature-item strong { color: var(--text-primary); display: block; margin-bottom: 4px; }
.feature-item p { margin: 0; }
.why-card { background: var(--surface-alt); }
.why-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.product-card { padding: 0; overflow: hidden; }
.product-card-thumb { width: 100%; height: 180px; object-fit: cover; }
.product-card-body { padding: 22px; }
.product-card-badge { display: inline-block; background: var(--accent); color: #ffffff; padding: 4px 10px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.product-spec-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.product-spec { background: var(--surface-alt); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 4px 10px; font-size: 12px; color: var(--text-secondary); }

/* ── WARRANTY LISTS (covered / not-covered) ─────── */
.coverage-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.coverage-col  { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.coverage-col h3 { margin-bottom: 16px; }
.coverage-col ul { list-style: none; margin: 0; padding: 0; }
.coverage-col li { padding: 10px 0 10px 28px; position: relative; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text-secondary); margin: 0; }
.coverage-col li:last-child { border-bottom: none; }
.coverage-col.covered li::before     { content: '✓'; color: var(--accent);  font-weight: 900; position: absolute; left: 0; top: 10px; }
.coverage-col.not-covered li::before { content: '✕'; color: var(--warning); font-weight: 900; position: absolute; left: 0; top: 10px; }

/* Warranty strip */
.warranty-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin: 30px 0; text-align: center; }
.warranty-stat  { font-family: 'Inter', sans-serif; font-size: 1.8rem; color: var(--accent); font-weight: 800; }
.warranty-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 6px; }

/* ── LOCATIONS ──────────────────────────────────── */
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 18px; }
.location-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}
.location-chip:hover { background: var(--accent); border-color: var(--accent); color: #ffffff; }
.location-card { display: block; }
.location-card-link { color: var(--accent); font-weight: 700; font-size: 14px; }
.loc-service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: border-color var(--transition); }
.loc-service-card:hover { border-color: var(--accent); }
.loc-service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }

/* ── FORMS (contact) ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.form-field   { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  background: var(--surface);
  color: var(--text-primary);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(17, 109, 255, 0.25);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note  { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.info-panel { background: var(--surface); padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.info-panel h2 { margin-bottom: 14px; font-size: 1.4rem; }
.info-row   { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-row strong { display: block; margin-bottom: 4px; color: var(--text-primary); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.info-row a, .info-row span { color: var(--text-secondary); }

/* ── PRIVACY / LEGAL ────────────────────────────── */
.legal { padding: 60px 0; background: var(--background); color: var(--text-secondary); }
.legal h1 { margin-bottom: 8px; color: var(--text-primary); }
.legal .subline { color: var(--text-muted); margin-bottom: 32px; font-size: 14px; }
.legal h2 { font-size: 1.4rem; margin: 28px 0 12px; color: var(--text-primary); }
.legal p, .legal li { font-size: 15px; line-height: 1.7; margin-bottom: 10px; }
.legal ul { margin-left: 1.4em; }
.legal a { color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer { background: var(--surface-alt); color: var(--text-secondary); padding: 60px 0 22px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 36px; margin-bottom: 40px; max-width: var(--max-w); margin-left: auto; margin-right: auto; padding: 0 24px; }
.footer-logo { height: 50px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; max-width: 30ch; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-contact a, .footer-contact span { color: var(--text-muted); }
.footer-contact a:hover { color: var(--accent); }
.footer-heading { font-family: 'Inter', sans-serif; color: var(--accent); font-size: 0.95rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 18px; font-size: 13px; color: var(--text-muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; max-width: var(--max-w); margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ── STICKY MOBILE CTA ──────────────────────────── */
.sticky-cta { display: none; }
@media (max-width: 980px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-alt);
    color: #ffffff;
    padding: 10px 16px;
    z-index: 90;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0 -3px 8px rgba(0,0,0,0.55);
    border-top: 1px solid var(--border);
  }
  .sticky-cta p { font-size: 14px; font-weight: 700; margin: 0; color: #ffffff; }
  .sticky-cta a {
    background: var(--accent);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
  }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 56px 0 40px; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; position: relative; }
  .split-content { padding: 40px 24px; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid, .reviews-grid-cards { grid-template-columns: 1fr; }
  .values-grid, .team-grid, .feature-grid, .why-grid, .product-grid, .location-cards-grid { grid-template-columns: 1fr; }
  .coverage-cols { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .detail-list   { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 745px) {
  .section    { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .types-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-top  { display: none; }
  body { padding-bottom: 70px; } /* room for sticky CTA */
  .process-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .hero-actions .btn-pill { justify-content: center; }
}

/* ── REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
