/* kvnconstruction-dark — global.css
 * Extracted from design-systems/kvnconstruction/rebuilt/index.html and extended
 * to cover all 12 page-types for the v3 template factory.
 *
 * Theme: yellow accent (#ffc221) on layered dark/light sections, Bebas Neue
 * display headlines + Montserrat body, gradient-overlay bands (purple deep
 * background sections), numbered round process icons, image-overlay service
 * cards, embedded hero quote form.
 */

:root {
  --background: #ffffff;
  --surface: #262626;
  --surface-alt: #f1f1f1;
  --surface-deep: #333333;
  --text-primary: #333333;
  --text-on-dark: #ffffff;
  --text-muted: #777777;
  --accent: #ffc221;
  --accent-hi: #ffd100;
  --brand-deep: #382246;
  --brand-deep-2: #533368;
  --border: #dddddd;
  --border-dark: #555555;
  --link: #00b894;
  --danger: #a94442;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  --shadow-card: 0 4px 8px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-floating: 0 6px 12px rgba(0, 0, 0, 0.175);

  --max-w: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--background);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
a:hover { color: var(--accent); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 16px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-hi); color: #000; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline-primary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline-primary:hover { background: var(--accent); color: #000; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: #000; }
.btn-dark { background: var(--text-primary); color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-block { display: block; width: 100%; }

/* ── TOP BANNER ──────────────────────────────────── */
.top-banner { background: var(--brand-deep); color: var(--surface-alt); text-align: center; padding: 12px 16px; font-size: 14px; }
.top-banner strong { color: var(--accent-hi); }
.top-banner a { color: var(--accent-hi); font-weight: 700; }

/* ── HEADER ──────────────────────────────────────── */
.site-header { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 16px; padding-bottom: 16px; }
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; }
.main-nav { display: flex; gap: 24px; align-items: center; }
.nav-link { font-size: 15px; font-weight: 700; color: var(--text-primary); padding: 8px 4px; }
.nav-link:hover { color: var(--accent); }
.header-cta { display: flex; gap: 14px; align-items: center; }
.phone-link { color: var(--link); font-weight: 700; font-size: 18px; }

.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--text-primary); border-radius: 2px; }
.nav-drawer { display: none; flex-direction: column; gap: 4px; padding: 16px; background: #fff; border-top: 1px solid var(--border); }
.nav-drawer.is-open { display: flex; }
.nav-drawer .nav-link { padding: 12px 8px; }

@media (max-width: 991px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ── HERO with embedded form ─────────────────────── */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; background: var(--surface); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 100px 16px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-text { flex: 1 1 480px; min-width: 280px; }
.hero-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.hero-section h1, .hero h1 { color: #fff; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); margin-bottom: 16px; }
.hero h2 { color: #fff; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.hero-sub, .hero .lead { color: #fff; font-size: 1.15rem; line-height: 1.55; max-width: 640px; margin-bottom: 24px; text-shadow: 1px 1px 4px rgba(0,0,0,0.6); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone { color: #fff; font-weight: 700; font-size: 18px; display: inline-flex; align-items: center; gap: 8px; }

/* Embedded quote form on hero (homepage) */
.hero-form { background: #fff; padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow-floating); flex: 0 1 440px; max-width: 460px; width: 100%; }
.hero-form h2, .hero-form h3 { color: var(--text-primary); font-size: 1.85rem; margin-bottom: 6px; text-shadow: none; }
.hero-form .lead { color: #555; font-size: 15px; margin-bottom: 14px; text-shadow: none; }
.review-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding: 14px; background: var(--surface-alt); border-radius: var(--radius-sm); }
.review-stars { color: var(--accent); font-size: 18px; letter-spacing: 1px; }
.review-text { color: var(--text-primary); font-size: 13px; line-height: 1.4; }
.review-text strong { font-size: 16px; }
.form-group { margin-bottom: 14px; }
.form-control { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; background: #fff; }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,194,33,0.18); }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-group.checkbox label { font-size: 12px; color: #555; display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ── SECTION SHELLS ──────────────────────────────── */
.section { padding: 90px 0; background: var(--background); }
.section-sm { padding: 60px 0; background: var(--background); }

/* Dark variant: services-section shell */
.section-dark { padding: 90px 0; background: var(--surface); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--surface-alt); }

/* Yellow stats variant */
.section-stats { padding: 70px 0; background: var(--accent-hi); }

/* Brand-deep purple gradient overlay band (used for process / testimonials / gallery / before-after) */
.section-deep { position: relative; padding: 100px 0; background: var(--brand-deep); color: #fff; overflow: hidden; }
.section-deep > .deep-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.35; }
.section-deep::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(56,34,70,0.92), rgba(0,0,0,0.78)); z-index: 1; }
.section-deep > .container, .section-deep > .container-narrow { position: relative; z-index: 2; }
.section-deep h1, .section-deep h2, .section-deep h3, .section-deep h4 { color: #fff; }
.section-deep p { color: var(--surface-alt); }

.section-header { margin-bottom: 40px; max-width: 760px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.section-header h2 { margin-bottom: 14px; }
.title-underline { width: 70px; height: 5px; background: var(--accent); margin: 0 0 20px 0; border-radius: 2px; }
.title-underline.center { margin-left: auto; margin-right: auto; }

/* Display script — "since {{founded}}" or eyebrow flourish */
.display-accent { color: var(--accent); }

/* ── BRANDS STRIP (homepage) ─────────────────────── */
.brands-section { background: var(--surface-alt); padding: 50px 0; }
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; }
.brand-grid a, .brand-grid img { display: block; margin: 0 auto; opacity: 0.65; transition: opacity .25s; }
.brand-grid a:hover, .brand-grid img:hover { opacity: 1; }

/* ── SERVICES GRID (image-overlay cards) ─────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease;
  min-height: 320px;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card img { width: 100%; height: 320px; object-fit: cover; display: block; }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; color: #fff;
}
.service-overlay h3 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.service-overlay p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 12px; line-height: 1.45; }
.service-overlay .service-link { color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── PROMO / TYPE GRIDS (3-up white cards) ───────── */
.promo-grid, .types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.promo-card, .type-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.promo-card:hover, .type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.promo-card img, .type-card img { width: 100%; height: 200px; object-fit: cover; }
.promo-content, .type-content { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.promo-content h3, .type-content h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-primary); }
.promo-content p, .type-content p { color: #555; font-size: 15px; margin-bottom: 14px; flex: 1; }

/* ── PROCESS STEPS (numbered round icons) ────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 40px; }
.process-step { text-align: center; }
.process-icon {
  width: 88px; height: 88px; border-radius: 50%; background: var(--accent);
  color: #000; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; margin: 0 auto 18px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
.process-step h4 { font-size: 1.2rem; color: #fff; margin-bottom: 10px; letter-spacing: 0.02em; }
.process-step p { color: var(--surface-alt); font-size: 14px; line-height: 1.55; margin-bottom: 0; }

/* Fallback for service.html (process inside lighter section) */
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.process-step-row { display: flex; gap: 18px; align-items: flex-start; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.process-step-row .step-number {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--accent);
  color: #000; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
}
.process-step-row .step-content h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--text-primary); }
.process-step-row .step-content p { color: #555; margin-bottom: 0; font-size: 15px; }

/* ── TESTIMONIAL CARDS ───────────────────────────── */
.testimonials-grid, .reviews-grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card, .review-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
}
.testimonial-card .stars, .review-card-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-primary); line-height: 1.55; margin-bottom: 14px; font-style: italic; }
.testimonial-card .reviewer, .review-card-author { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.review-card-text { color: var(--text-primary); font-size: 15px; line-height: 1.55; margin: 12px 0 14px; font-style: italic; }
.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; }
.testimonial-single { background: var(--surface-alt); padding: 60px 24px; text-align: center; }
.testimonial-single blockquote { font-size: 1.2rem; color: var(--text-primary); max-width: 760px; margin: 0 auto 14px; font-style: italic; }
.testimonial-single .reviewer { font-weight: 700; color: var(--text-primary); }

/* Star colors when on dark ground */
.section-deep .stars, .section-deep .review-stars, .stars { color: var(--accent); }
.rating { color: var(--accent); font-size: 1.4rem; letter-spacing: 2px; }

/* ── STATS BAR (yellow band) ─────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-card { background: #fff; padding: 34px 24px; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3.4rem; color: var(--text-primary); line-height: 1; margin-bottom: 6px; }
.stat-label { color: #555; font-size: 14px; font-weight: 700; }

/* ── BENEFITS / 2-COL FEATURE LAYOUT ─────────────── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.benefits-content h2 { color: var(--text-primary); margin-bottom: 14px; }
.benefits-content .lead { color: #555; margin-bottom: 22px; font-size: 1.05rem; }

/* ── ACCORDION / FAQ ─────────────────────────────── */
.faq-accordion, .faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  background: var(--surface-alt); border: none; width: 100%; padding: 18px 22px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; text-align: left;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  color: var(--text-primary); transition: background .2s;
}
.faq-question:hover { background: var(--border); }
.faq-question[aria-expanded="true"] { background: var(--accent); color: #000; }
.faq-icon { font-size: 22px; transition: transform .25s; font-weight: 700; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-question[aria-expanded="true"] + .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 18px 22px; color: var(--text-primary); font-size: 15px; line-height: 1.6; }
details.faq-item summary { padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none; background: var(--surface-alt); color: var(--text-primary); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item .faq-answer { padding: 18px 22px; max-height: none; color: var(--text-primary); }

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

/* ── COMPARISON TABLE ────────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 16px 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.comparison-table thead th { background: var(--surface-alt); font-weight: 700; color: var(--text-primary); }
.comparison-table tbody th { font-weight: 700; background: #fafafa; color: var(--text-primary); }
.comparison-table .row-business { background: rgba(255, 194, 33, 0.18); }
.comparison-table .row-business th { background: var(--accent); }

/* ── CASE STUDY CARD ─────────────────────────────── */
.case-study { background: #fff; padding: 32px; border-radius: var(--radius); border-left: 5px solid var(--accent); box-shadow: var(--shadow-card); }
.case-study .case-meta { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 8px; }
.case-study h3 { margin-bottom: 12px; color: var(--text-primary); font-size: 1.6rem; }
.case-study .materials { list-style: disc; margin: 12px 0 12px 22px; color: var(--text-primary); }
.case-study .materials li { margin-bottom: 4px; }
.case-study .outcome { font-weight: 700; padding-top: 10px; border-top: 1px solid var(--border); margin-bottom: 0; color: var(--text-primary); }

/* ── VALUE / TEAM / FEATURE GRIDS (about) ────────── */
.values-grid, .team-grid, .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card, .team-member, .feature-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-card);
}
.value-card h3, .team-member h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-primary); }
.value-card p, .team-member p, .feature-item p { color: #555; font-size: 15px; line-height: 1.55; }
.team-member img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 14px; }
.team-member .role { color: var(--accent); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-dot { width: 14px; height: 14px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.feature-item strong { color: var(--text-primary); display: block; margin-bottom: 4px; }

/* ── WARRANTY (covered / not covered) ────────────── */
.coverage-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.coverage-col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-card); }
.coverage-col h3 { margin-bottom: 14px; color: var(--text-primary); }
.coverage-col ul { list-style: none; margin: 0; padding: 0; }
.coverage-col li { padding: 10px 0 10px 28px; position: relative; font-size: 15px; border-bottom: 1px solid var(--border); color: var(--text-primary); }
.coverage-col li:last-child { border-bottom: none; }
.coverage-col.covered li::before { content: '✓'; color: var(--link); font-weight: 700; position: absolute; left: 0; top: 8px; font-size: 18px; }
.coverage-col.not-covered li::before { content: '✕'; color: var(--danger); font-weight: 700; position: absolute; left: 0; top: 8px; font-size: 18px; }

/* ── MANUFACTURER — WHY / PRODUCTS / WARRANTY STRIP ─ */
.why-grid, .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.why-icon { font-size: 2.4rem; margin-bottom: 12px; }
.why-card h3 { margin-bottom: 10px; font-size: 1.3rem; color: var(--text-primary); }
.why-card p { color: #555; font-size: 15px; line-height: 1.55; margin-bottom: 0; }
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.product-card-thumb { width: 100%; height: 180px; object-fit: cover; }
.product-card-body { padding: 22px; }
.product-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-primary); }
.product-card-body p { color: #555; font-size: 14px; margin-bottom: 12px; }
.product-card-badge {
  display: inline-block; background: var(--accent); color: #000; padding: 4px 12px;
  border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.product-spec-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.product-spec { background: var(--surface-alt); padding: 4px 12px; border-radius: 100px; font-size: 12px; color: var(--text-primary); }
.warranty-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 36px 28px;
  background: var(--accent); border-radius: var(--radius); margin: 32px 0; text-align: center;
}
.warranty-stat { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: #000; line-height: 1; }
.warranty-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: #000; font-weight: 700; margin-top: 4px; }

/* ── LOCATIONS (chips / cards) ───────────────────── */
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 18px; }
.location-chip {
  background: #fff; border: 1px solid var(--border); padding: 10px 18px;
  border-radius: 100px; font-size: 14px; font-weight: 700; color: var(--text-primary); transition: all .2s;
}
.location-chip:hover { background: var(--accent); border-color: var(--accent); color: #000; }
.location-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); display: block; transition: transform .2s, box-shadow .2s; }
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.location-card h3 { margin-bottom: 8px; color: var(--text-primary); font-size: 1.5rem; }
.location-card p { font-size: 14px; margin-bottom: 12px; color: #555; }
.location-card-link { color: var(--accent); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.loc-service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-card); }
.loc-service-card h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text-primary); }
.loc-service-card p { color: #555; font-size: 14px; margin-bottom: 0; }

/* ── CONTACT (form + info) ───────────────────────── */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.contact-form { background: #fff; padding: 36px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 14px; color: var(--text-primary); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 15px; background: #fff;
}
.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(255,194,33,0.18);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.info-panel { background: var(--brand-deep); color: #fff; padding: 32px; border-radius: var(--radius); }
.info-panel h2 { color: var(--accent); margin-bottom: 16px; }
.info-row { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.18); font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-row strong { display: block; margin-bottom: 4px; color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.info-row a { color: #fff; }
.info-row a:hover { color: var(--accent); }

/* ── CTA BAND ────────────────────────────────────── */
.cta-band { background: var(--accent); padding: 90px 0; text-align: center; }
.cta-band h2 { color: #000; margin-bottom: 14px; }
.cta-band p { font-size: 1.1rem; max-width: 800px; margin: 0 auto 28px; color: #000; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-phone-large {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; padding: 14px 28px;
  background: #000; color: #fff; border-radius: var(--radius-sm); display: inline-block;
}
.cta-footnote { font-size: 13px; color: #000; margin-top: 18px; opacity: 0.7; }

/* Closing CTA on dark ground */
.cta-band.dark { background: var(--surface); }
.cta-band.dark h2, .cta-band.dark p { color: #fff; }
.cta-band.dark .cta-phone-large { background: var(--accent); color: #000; }

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

/* ── FOOTER ──────────────────────────────────────── */
.site-footer { background: var(--brand-deep); color: var(--surface-alt); padding: 80px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.78); margin-bottom: 16px; line-height: 1.55; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--accent); }
.footer-heading { font-family: 'Bebas Neue', sans-serif; color: var(--accent); font-size: 1.3rem; margin-bottom: 10px; letter-spacing: 0.04em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links a { color: rgba(255,255,255,0.78); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 18px; font-size: 13px; color: rgba(255,255,255,0.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.78); }
.footer-bottom a:hover { color: var(--accent); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
  .hero-content { flex-direction: column; padding: 70px 16px; }
  .hero-form { flex: 1 1 100%; max-width: 100%; }
  .services-grid, .promo-grid, .types-grid,
  .testimonials-grid, .reviews-grid-cards,
  .values-grid, .team-grid, .feature-grid,
  .why-grid, .product-grid,
  .location-cards-grid,
  .stats-grid,
  .process-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .coverage-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .warranty-strip { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
  .top-banner { font-size: 13px; padding: 10px 12px; }
}

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