/* blissroofing-dark — global.css
 * Extracted from design-systems/blissroofing/rebuilt/index.html and extended
 * to cover all 12 page-types for the v3 template factory.
 *
 * Theme: dark slate background (#32373c) with darker surface (#1f2124),
 * hot-pink accent (#ec008c). BakbakOne display headlines paired with
 * Fustat body. 1700px wide container, 4px spacing grid.
 */

:root {
  --background: #32373c;
  --surface: #1f2124;
  --surface-alt: #111111;
  --text-primary: #ffffff;
  --text-muted: #abb8c3;
  --accent: #ec008c;
  --accent-dark: #d0007a;
  --link: #ec008c;
  --border: #55595c;
  --border-subtle: #494c4f;
  --danger: #cc3366;
  --success: #7bdcb5;
  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 8px;
  --max-w: 1700px;
  --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 8px 18px rgba(0, 0, 0, 0.35);
  --shadow-floating: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Fustat', 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 { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: 'BakbakOne', 'Impact', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: 0.01em;
}
h1 { font-size: 4.5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.4rem; }

p { margin-bottom: 1em; }
ul, ol { margin: 0 0 1em 1.25em; }
li { margin-bottom: 0.4em; }

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

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

/* ── HEADER ──────────────────────────────────────── */
.site-header { background: #ffffff; color: var(--surface); position: sticky; top: 0; z-index: 100; }
.promo-bar { background: var(--accent); color: #ffffff; text-align: center; padding: 14px 40px; font-size: 15px; font-weight: 600; }
.promo-bar a { color: #ffffff; text-decoration: underline; }

.top-nav { display: flex; justify-content: space-between; align-items: center; padding: 14px 40px; background: #ffffff; color: var(--surface); font-size: 14px; gap: 16px; flex-wrap: wrap; }
.top-nav a { color: var(--surface); }
.top-nav .top-nav-actions { display: flex; gap: 10px; align-items: center; }
.top-nav .top-nav-actions .btn { padding: 8px 18px; font-size: 14px; }
.top-nav .top-nav-tagline { color: var(--text-muted); font-style: italic; }
.top-nav .top-nav-phones { display: flex; gap: 18px; align-items: center; }
.top-nav .top-nav-phones a { font-weight: 700; }

.header-main { display: flex; align-items: stretch; gap: 0; background: #ffffff; }
.header-main .logo-wrap { display: flex; align-items: center; padding: 16px 40px; }
.header-main .logo-img { width: 280px; max-width: 100%; height: auto; }
.main-nav-wrap { flex: 1; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.main-nav { display: flex; gap: 32px; padding: 16px; flex-wrap: wrap; align-items: center; }
.nav-link { color: #ffffff; font-size: 16px; font-weight: 500; padding: 8px 4px; }
.nav-link:hover { color: var(--accent); }
.header-cta { background: var(--accent); color: #ffffff; padding: 18px 28px; text-align: center; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; min-width: 180px; }
.header-cta .header-cta-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.header-cta .header-cta-phone { font-family: 'BakbakOne', sans-serif; font-size: 1.5rem; color: #ffffff; }
.header-cta .header-cta-phone:hover { color: #ffffff; opacity: 0.9; }

/* Mobile nav */
.nav-toggle { display: none; background: var(--surface); color: #ffffff; border: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 14px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: #ffffff; border-radius: 2px; }
.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 8px; color: #ffffff; }

@media (max-width: 991px) {
  .top-nav { display: none; }
  .header-main { flex-wrap: wrap; }
  .header-main .logo-wrap { flex: 1; padding: 14px 20px; }
  .header-main .logo-img { width: 200px; }
  .main-nav-wrap { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ── HERO ────────────────────────────────────────── */
.hero { position: relative; min-height: 600px; color: #ffffff; overflow: hidden; display: flex; align-items: center; background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 2; }
.hero-content { position: relative; z-index: 3; padding: 100px 0 80px; }
.hero-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.hero-section h1, .hero h1 { color: #ffffff; font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 18px; }
.hero h2 { color: #ffffff; font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 12px; }
.hero-sub { font-size: 1.2rem; line-height: 1.55; max-width: 720px; margin-bottom: 28px; color: rgba(255, 255, 255, 0.92); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-phone { display: inline-flex; align-items: center; gap: 8px; color: #ffffff; font-weight: 700; font-size: 18px; }
.hero-badges { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.hero-badges img { height: 38px; }
.hero-badges .star-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255, 255, 255, 0.9); }

/* ── PROMO / PARTNERSHIP STRIP ──────────────────── */
.partnership { background: #ffffff; color: var(--surface); padding: 40px; border-left: 6px solid var(--accent); }
.partnership-content { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; max-width: var(--max-w); margin: 0 auto; }
.partnership h2 { font-size: 2rem; flex: 1; color: var(--surface); }
.partnership .partnership-meta { color: var(--text-muted); font-size: 14px; max-width: 360px; }

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

/* ── SECTION WRAPPERS ────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 720px; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* Title underline accent under H2 — pink bar */
.title-underline { width: 60px; height: 4px; background: var(--accent); margin: 0 0 24px 0; border-radius: 2px; }
.title-underline.center { margin-left: auto; margin-right: auto; }

/* ── TWO-COLUMN SPLITS ───────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--max-w); margin: 0 auto; padding: 80px 40px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.split-content h2 { margin-bottom: 14px; }
.split-content p { margin-bottom: 16px; }

/* ── BENEFITS / FEATURE LIST ─────────────────────── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 28px; }
.benefit { padding: 8px 0 8px 26px; font-size: 15px; font-weight: 600; position: relative; }
.benefit::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--accent); font-weight: 900; }

/* ── SERVICES GRID (homepage 3-up + CTA card slot) ── */
.services { background: var(--surface); padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--background); padding: 36px 28px; border-radius: var(--radius); box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.service-card img { max-width: 160px; margin-bottom: 18px; }
.service-card h3 { font-size: 1.75rem; margin-bottom: 14px; color: #ffffff; }
.service-card p { color: var(--text-muted); margin-bottom: 18px; flex: 1; font-size: 15px; }
.service-cta-card { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: #ffffff; padding: 48px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: var(--radius); text-align: center; }
.service-cta-card h2 { color: #ffffff; font-size: 2rem; margin-bottom: 14px; }
.service-cta-card h3 { color: #ffffff; font-size: 1.5rem; margin-bottom: 18px; }
.service-cta-card .btn { background: #ffffff; color: var(--accent); }
.service-cta-card .btn:hover { background: #ffeef7; color: var(--accent-dark); }

/* ── ABOUT SECTION (with embedded dark form) ─────── */
.about-section { background: var(--background); padding: 80px 40px; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: var(--max-w); margin: 0 auto; align-items: start; }
.about-text img { max-width: 360px; margin: 20px 0; border-radius: var(--radius); }
.about-text p { color: rgba(255, 255, 255, 0.88); }
.form-box { background: var(--surface); color: #ffffff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-floating); }
.form-box h2 { font-size: 2.5rem; margin-bottom: 14px; color: #ffffff; }
.form-box p { color: var(--text-muted); margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px; border: 1px solid var(--border); background: var(--background); color: #ffffff;
  font-size: 15px; font-family: inherit; border-radius: var(--radius-sm);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.25);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.checkbox-label { display: flex; gap: 8px; font-size: 12px; align-items: start; color: var(--text-muted); }

/* ── MEMBERS / AWARDS LOGO STRIPS ───────────────── */
.members, .awards { background: var(--surface); color: #ffffff; padding: 50px 0; text-align: center; }
.members p, .awards p { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; margin-bottom: 18px; }
.members-scroll, .awards-scroll { display: flex; gap: 50px; overflow-x: auto; align-items: center; justify-content: center; padding: 12px 24px; flex-wrap: wrap; }
.members-scroll img { height: 60px; filter: brightness(0) invert(1); opacity: 0.85; }
.awards-scroll img { height: 70px; }

/* ── BENEFITS SECTION (image + 2x2 grid) ─────────── */
.benefits-section { background: #ffffff; color: var(--surface); padding: 80px 40px; }
.benefits-section .section-eyebrow { color: var(--accent); }
.benefits-section h2 { color: var(--surface); }
.benefits-section p { color: var(--text-muted); }
.benefits-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: var(--max-w); margin: 0 auto; align-items: center; }
.benefits-image { width: 100%; border-radius: var(--radius); }
.benefits-grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 28px; }
.benefit-item img { max-width: 90px; margin-bottom: 14px; }
.benefit-item h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--surface); }
.benefit-item p { color: var(--text-muted); font-size: 15px; }

/* ── SERVICE AREAS ───────────────────────────────── */
.service-area-section { background: var(--background); color: #ffffff; padding: 80px 40px; }
.service-area-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: var(--max-w); margin: 0 auto; align-items: start; }
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 30px; margin: 24px 0; list-style: none; padding: 0; }
.cities-grid li { padding: 8px 0 8px 24px; position: relative; font-size: 15px; }
.cities-grid li::before { content: '📍'; position: absolute; left: 0; top: 6px; }
.coverage-callout { margin-top: 28px; padding: 24px; background: var(--surface); border-radius: var(--radius); border-left: 4px solid var(--accent); }
.coverage-callout h3 { font-size: 1.5rem; margin-bottom: 8px; color: #ffffff; }
.coverage-callout p { color: var(--text-muted); margin: 0; }

/* ── FINAL CTA ───────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%); color: #ffffff; padding: 80px 40px; }
.final-cta-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: var(--max-w); margin: 0 auto; align-items: center; }
.final-cta h2 { color: #ffffff; }
.final-cta-content img { width: 100%; border-radius: var(--radius); }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band { background: var(--accent); padding: 80px 40px; text-align: center; }
.cta-band h2 { color: #ffffff; margin-bottom: 14px; }
.cta-band p { font-size: 1.125rem; max-width: 800px; margin: 0 auto 24px; color: rgba(255, 255, 255, 0.95); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn { background: #ffffff; color: var(--accent); }
.cta-band .btn:hover { background: #ffeef7; color: var(--accent-dark); }
.cta-phone-large { font-family: 'BakbakOne', sans-serif; font-size: 1.75rem; padding: 16px 30px; background: var(--surface); color: #ffffff; border-radius: var(--radius-sm); display: inline-block; }
.cta-phone-large:hover { background: #000; color: #ffffff; }
.cta-footnote { font-size: 13px; color: rgba(255, 255, 255, 0.85); margin-top: 18px; }

/* ── PROCESS STEPS ───────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.process-step { display: flex; gap: 18px; align-items: flex-start; }
.step-number { width: 56px; height: 56px; background: var(--accent); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'BakbakOne', sans-serif; font-size: 1.75rem; flex-shrink: 0; }
.step-content h3 { font-size: 1.3rem; margin-bottom: 6px; color: #ffffff; }
.step-content p { color: var(--text-muted); margin-bottom: 0; font-size: 15px; }

/* ── INCLUSIONS / DETAIL LISTS ──────────────────── */
.detail-list { list-style: none; margin: 0 0 18px 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: rgba(255, 255, 255, 0.92); }
.detail-list li::before { content: '✓'; color: var(--accent); font-weight: 900; position: absolute; left: 0; top: 8px; }

/* ── COMPARISON TABLE ───────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 16px 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; color: #ffffff; }
.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; }
.comparison-table tbody th { font-weight: 700; background: var(--surface-alt); }
.comparison-table .row-business { background: rgba(236, 0, 140, 0.12); }
.comparison-table .row-business th { background: var(--accent); color: #ffffff; }

/* ── CASE STUDY CARD ────────────────────────────── */
.case-study { background: var(--surface); padding: 32px; border-radius: var(--radius); border-left: 4px solid var(--accent); color: #ffffff; }
.case-study .case-meta { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.case-study h3 { margin-bottom: 12px; color: #ffffff; }
.case-study p { color: rgba(255, 255, 255, 0.88); }
.case-study .materials { list-style: disc; margin: 12px 0 12px 18px; color: rgba(255, 255, 255, 0.88); }
.case-study .outcome { font-weight: 700; padding-top: 12px; border-top: 1px solid var(--border); margin-bottom: 0; color: var(--accent); }

/* ── FAQ ACCORDION ──────────────────────────────── */
.faq-list, .faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { background: none; border: none; width: 100%; padding: 20px 24px; font-weight: 700; font-size: 16px; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: #ffffff; font-family: inherit; }
.faq-question[aria-expanded="true"] { background: rgba(236, 0, 140, 0.12); }
.faq-icon { color: var(--accent); font-size: 24px; transition: transform .2s; font-weight: 900; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-question[aria-expanded="true"] + .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 24px 22px; color: rgba(255, 255, 255, 0.88); }
details.faq-item summary { padding: 20px 24px; font-weight: 700; cursor: pointer; list-style: none; color: #ffffff; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item .faq-answer { padding: 0 24px 22px; max-height: none; color: rgba(255, 255, 255, 0.88); }

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

/* ── TESTIMONIAL CARDS ───────────────────────────── */
.testimonial-single { background: var(--surface); padding: 60px 24px; text-align: center; color: #ffffff; }
.rating, .stars { color: #ffb800; font-size: 1.5rem; margin-bottom: 14px; letter-spacing: 2px; }
.quote, blockquote { font-size: 1.125rem; font-style: italic; color: rgba(255, 255, 255, 0.92); margin-bottom: 14px; max-width: 760px; margin-left: auto; margin-right: auto; }
.author, .reviewer { font-weight: 700; color: var(--accent); font-size: 14px; }

.testimonials-grid, .reviews-grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card, .review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); color: #ffffff; }
.testimonial-card .stars { font-size: 18px; }
.testimonial-card blockquote { font-size: 16px; text-align: left; margin: 12px 0 16px; color: rgba(255, 255, 255, 0.88); font-style: italic; }
.testimonial-card .reviewer { font-size: 14px; color: var(--accent); font-weight: 700; }
.review-card-stars { color: #ffb800; font-size: 18px; letter-spacing: 2px; }
.review-card-text { margin: 12px 0 16px; font-style: italic; color: rgba(255, 255, 255, 0.88); }
.review-card-author { font-weight: 700; font-size: 14px; color: var(--accent); }
.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; }

/* ── WARRANTY LISTS ──────────────────────────────── */
.coverage-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.coverage-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; color: #ffffff; }
.coverage-col h3 { margin-bottom: 14px; color: #ffffff; }
.coverage-col ul { list-style: none; margin: 0; padding: 0; }
.coverage-col li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; border-bottom: 1px solid var(--border-subtle); color: rgba(255, 255, 255, 0.88); }
.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: 8px; }
.coverage-col.not-covered li::before { content: '✕'; color: var(--danger); font-weight: 900; position: absolute; left: 0; top: 8px; }

/* ── MANUFACTURER WHY/PRODUCT GRIDS ─────────────── */
.why-grid, .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--surface); border-radius: var(--radius); padding: 28px; color: #ffffff; border: 1px solid var(--border); }
.why-icon { font-size: 2.5rem; margin-bottom: 12px; }
.why-card h3 { margin-bottom: 8px; color: #ffffff; font-size: 1.4rem; }
.why-card p { color: var(--text-muted); }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); color: #ffffff; }
.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: #ffffff; }
.product-card-body p { color: var(--text-muted); font-size: 14px; }
.product-card-badge { display: inline-block; background: var(--accent); color: #ffffff; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.product-spec-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.product-spec { background: var(--background); padding: 4px 10px; border-radius: 100px; font-size: 12px; color: rgba(255, 255, 255, 0.88); border: 1px solid var(--border); }
.warranty-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 32px; background: var(--surface); border-radius: var(--radius); margin: 32px 0; text-align: center; color: #ffffff; }
.warranty-stat { font-family: 'BakbakOne', sans-serif; font-size: 2rem; color: var(--accent); }
.warranty-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

/* ── LOCATION CHIPS / CARDS ─────────────────────── */
.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 20px; border-radius: 100px; font-size: 14px; font-weight: 600; color: #ffffff; transition: all .2s; }
.location-chip:hover { background: var(--accent); border-color: var(--accent); color: #ffffff; }
.location-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); display: block; color: #ffffff; }
.location-card:hover { border-color: var(--accent); color: #ffffff; }
.location-card h3 { margin-bottom: 8px; color: #ffffff; font-size: 1.4rem; }
.location-card p { font-size: 14px; margin-bottom: 12px; color: var(--text-muted); }
.location-card-link { color: var(--accent); font-weight: 700; }
.loc-service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-card); color: #ffffff; }
.loc-service-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: #ffffff; }
.loc-service-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 0; }

/* ── FORMS (contact page) ────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.contact-form { background: var(--surface); padding: 36px; border-radius: var(--radius); }
.contact-form h2 { color: #ffffff; margin-bottom: 14px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.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: var(--background); color: #ffffff;
}
.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(236, 0, 140, 0.25);
}
.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); color: #ffffff; }
.info-panel h2 { margin-bottom: 14px; color: #ffffff; }
.info-row { padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 14px; color: rgba(255, 255, 255, 0.92); }
.info-row:last-child { border-bottom: none; }
.info-row strong { display: block; margin-bottom: 4px; color: var(--accent); }

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

/* ── FOOTER ──────────────────────────────────────── */
.site-footer { background: var(--surface); color: #ffffff; padding: 60px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; margin-bottom: 36px; }
.footer-logo { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 14px; color: rgba(255, 255, 255, 0.72); margin-bottom: 16px; }
.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-heading { font-family: 'BakbakOne', sans-serif; color: var(--accent); font-size: 1.3rem; margin-bottom: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links a { color: rgba(255, 255, 255, 0.72); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border-subtle); 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); }

/* ── STICKY MOBILE CTA ──────────────────────────── */
.sticky-cta { display: none; }
@media (max-width: 991px) {
  .sticky-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface); 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.4); }
  .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-sm); font-weight: 700; font-size: 14px; }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1199px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.8rem; }
  .hero-content { padding: 70px 0 50px; }
  .split { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 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; }
  .about-content, .benefits-layout, .service-area-content, .final-cta-content, .partnership-content { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid-4 { grid-template-columns: 1fr 1fr; }
  .detail-list { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; } /* room for sticky CTA */
  .container, .container-narrow { padding: 0 20px; }
  .cities-grid { grid-template-columns: 1fr; }
  .benefits-grid-4 { grid-template-columns: 1fr; }
}
