/* seattleroofingco-dark — global.css
 * Derived from design-systems/seattleroofingco/DESIGN.md (2026-04-30).
 *
 * Theme: deep-navy dark (#1a2f45) with darker surface (#0f1825), teal accent
 * (#5bb5c9), Karla display + sans body. Cards use rounded-lg/2xl, white/10
 * borders, subtle teal glow on hover. Subtle motion (150-300ms).
 *
 * Skeleton structure mirrors cloudroofing-dark (only readable HTML reference
 * available — original seattleroofingco Next.js builds were minified beyond
 * extraction). Tokens, typography, color, depth substituted from DESIGN.md.
 */

:root {
  --background: #1a2f45;
  --surface: #0f1825;
  --surface-alt: #15243a;
  --text-primary: #e5e7eb;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  --accent: #5bb5c9;
  --accent-soft: rgba(91, 181, 201, 0.20);
  --accent-glow: rgba(91, 181, 201, 0.45);
  --accent-dark: #3b9eb1;
  --link: #5bb5c9;
  --border: #374151;
  --border-soft: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.20);
  --danger: #ef4444;
  --success: #10b981;
  --warning: #facc15;
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-w: 1280px;
  --shadow-card: 0 1px 5px rgba(0, 0, 0, 0.4);
  --shadow-floating: 0 3px 14px rgba(0, 0, 0, 0.4);
  --shadow-overlay: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 10px 15px -3px rgba(91, 181, 201, 0.20), 0 4px 6px -4px rgba(91, 181, 201, 0.20);
}

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

h1, h2, h3, h4 {
  font-family: 'Karla', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

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 24px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  box-shadow: 0 4px 12px var(--accent-soft);
}
.btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.btn-white { background: #ffffff; color: var(--text-primary); box-shadow: var(--shadow-card); }
.btn-white:hover { background: #f4f4f4; color: var(--text-primary); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: var(--text-primary); box-shadow: none; }
.btn-lg { padding: 18px 40px; font-size: 18px; }

/* ── HEADER ──────────────────────────────────────── */
.site-header {
  background: rgba(15, 24, 37, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-top {
  background: var(--surface);
  color: var(--text-muted);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-soft);
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.header-top a { 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: 48px; width: auto; }
.main-nav { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--accent); background: rgba(91, 181, 201, 0.08); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.phone-link { font-weight: 700; font-size: 16px; 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: 1px; }
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
}
.nav-drawer.is-open { display: flex; }
.nav-drawer .nav-link { padding: 12px 8px; }

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

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

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  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.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 37, 0.55) 0%, rgba(26, 47, 69, 0.85) 100%);
  z-index: 2;
}
.hero-content { position: relative; z-index: 3; padding: 100px 0 80px; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-section h1, .hero h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h2 { color: #ffffff; font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 12px; }
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(229, 231, 235, 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-phone:hover { color: var(--accent); }
.hero-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(15, 24, 37, 0.85);
  color: var(--text-primary);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  text-align: center;
  z-index: 3;
  max-width: 220px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-overlay);
}
.hero-badge h2 { color: var(--accent); font-size: 1.1rem; margin-top: 6px; }

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

/* ── TWO-COLUMN SPLITS (about / process / locations / reviews) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--background); }
.split-img { position: relative; min-height: 480px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-content {
  background: var(--surface);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-soft);
}
.split-content h2 { margin-bottom: 12px; color: var(--text-primary); }
.split-content p { margin-bottom: 18px; color: var(--text-muted); }

/* Title underline — small teal bar under section h2's */
.title-underline { width: 60px; height: 3px; background: var(--accent); margin: 0 0 24px 0; border-radius: 2px; box-shadow: 0 0 12px var(--accent-glow); }
.title-underline.center { margin-left: auto; margin-right: auto; }

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

/* ── SECTION WRAPPERS ────────────────────────────── */
.section { padding: 112px 0; background: var(--background); }
.section-sm { padding: 80px 0; background: var(--background); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: 100px;
}
.section-header h2 { margin-bottom: 14px; color: var(--text-primary); }
.section-header p { color: var(--text-muted); max-width: 720px; }
.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 {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: block;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.service-img-wrapper { position: relative; height: 240px; overflow: hidden; }
.service-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-img-wrapper img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 37, 0) 40%, rgba(15, 24, 37, 0.92) 100%);
}
.service-card h3 { position: absolute; bottom: 22px; left: 22px; color: #ffffff; z-index: 2; font-size: 1.6rem; font-weight: 700; }
.service-content { padding: 24px; }
.service-text { margin-bottom: 14px; color: var(--text-muted); }
.service-btn { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.service-btn::after { content: '→'; transition: transform .2s ease; }
.service-card:hover .service-btn::after { transform: translateX(4px); }

/* ── ROOFING TYPES GRID (4-up) ──────────────────── */
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
.type-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color .25s ease, transform .25s ease; }
.type-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.type-card img { width: 100%; height: 180px; object-fit: cover; }
.type-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.type-content h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--text-primary); }
.type-content p { font-size: 14px; margin-bottom: 14px; flex: 1; color: var(--text-muted); }

/* ── TESTIMONIAL CARDS ───────────────────────────── */
.testimonial-single { background: var(--surface); padding: 80px 24px; text-align: center; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.rating, .stars { color: var(--accent); font-size: 1.5rem; margin-bottom: 14px; letter-spacing: 2px; text-shadow: 0 0 12px var(--accent-glow); }
.quote, blockquote { font-size: 1.25rem; font-style: italic; color: var(--text-primary); margin-bottom: 14px; max-width: 760px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.author, .reviewer { font-weight: 700; color: var(--text-muted); }

.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-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: border-color .25s ease, transform .25s ease;
}
.testimonial-card:hover, .review-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.testimonial-card .stars { font-size: 16px; }
.testimonial-card blockquote { font-size: 16px; text-align: left; margin: 12px 0 16px; color: var(--text-primary); font-style: normal; }
.testimonial-card .reviewer { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.review-card-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.review-card-text { margin: 12px 0 16px; font-style: italic; color: var(--text-primary); }
.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: 12px; display: flex; align-items: center; gap: 8px; }
.review-source-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; box-shadow: 0 0 8px var(--accent-glow); }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
  padding: 112px 0;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--text-primary); margin-bottom: 16px; }
.cta-band p { font-size: 1.125rem; max-width: 800px; margin: 0 auto 32px; color: var(--text-muted); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone-large {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 14px 28px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow-glow);
  transition: background .2s ease;
}
.cta-phone-large:hover { background: var(--accent-dark); color: #ffffff; }
.cta-footnote { font-size: 13px; color: var(--text-subtle); margin-top: 24px; }

/* ── PROCESS STEPS (split layout) ────────────────── */
.process-step { display: flex; gap: 18px; margin-bottom: 24px; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.step-content h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--text-primary); }
.step-content p { color: var(--text-muted); margin-bottom: 0; }
.process-steps { display: flex; flex-direction: column; gap: 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 16px; }
.detail-list li { padding: 10px 0 10px 28px; position: relative; font-size: 15px; color: var(--text-primary); border-bottom: 1px solid var(--border-soft); }
.detail-list li::before { content: '✓'; color: var(--accent); font-weight: 700; position: absolute; left: 0; top: 10px; }

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

/* ── CASE STUDY CARD ────────────────────────────── */
.case-study {
  background: var(--surface);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-card);
}
.case-study .case-meta { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 8px; font-weight: 700; }
.case-study h3 { margin-bottom: 12px; color: var(--text-primary); }
.case-study p { color: var(--text-muted); }
.case-study .materials { list-style: none; margin: 16px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.case-study .materials li { padding-left: 22px; position: relative; color: var(--text-primary); font-size: 14px; }
.case-study .materials li::before { content: '·'; color: var(--accent); position: absolute; left: 8px; font-size: 22px; line-height: 14px; }
.case-study .outcome { font-weight: 700; padding-top: 14px; border-top: 1px solid var(--border-soft); 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-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: inherit;
}
.faq-question[aria-expanded="true"] { background: var(--surface-alt); color: var(--accent); }
.faq-icon { color: var(--accent); font-size: 24px; transition: transform .2s ease; 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: 0 24px 22px; color: var(--text-muted); }
details.faq-item summary { padding: 22px 24px; font-weight: 700; cursor: pointer; list-style: none; color: var(--text-primary); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item .faq-answer { padding: 0 24px 22px; max-height: none; color: var(--text-muted); }

/* ── VALUE / TEAM / FEATURE CARD GRIDS (about) ──── */
.values-grid, .team-grid, .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card, .team-member, .feature-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: border-color .25s ease, transform .25s ease;
}
.value-card:hover, .team-member:hover, .feature-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.value-card h3, .team-member h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-primary); }
.value-card p, .team-member p, .feature-item p { color: var(--text-muted); }
.team-member img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.team-member .role { color: var(--accent); font-weight: 700; font-size: 14px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; padding: 24px; }
.feature-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 10px var(--accent-glow);
}
.feature-item strong { color: var(--text-primary); display: block; margin-bottom: 4px; }

/* ── WARRANTY LISTS (covered / not-covered) ─────── */
.coverage-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.coverage-col { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 32px; }
.coverage-col h3 { margin-bottom: 16px; 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-soft); color: var(--text-muted); }
.coverage-col li:last-child { border-bottom: none; }
.coverage-col.covered li::before { content: '✓'; color: var(--accent); font-weight: 700; position: absolute; left: 0; top: 10px; }
.coverage-col.not-covered li::before { content: '✕'; color: var(--danger); font-weight: 700; position: absolute; left: 0; top: 10px; }

/* ── MANUFACTURER WHY/PRODUCT GRIDS ─────────────── */
.why-grid, .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 32px; transition: border-color .25s ease, transform .25s ease; }
.why-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.why-icon { font-size: 2.25rem; margin-bottom: 12px; color: var(--accent); }
.why-card h3 { margin-bottom: 8px; color: var(--text-primary); }
.why-card p { color: var(--text-muted); }
.product-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: border-color .25s ease, transform .25s ease; }
.product-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.product-card-thumb { width: 100%; height: 200px; object-fit: cover; }
.product-card-body { padding: 24px; }
.product-card-body h3 { color: var(--text-primary); margin-bottom: 8px; }
.product-card-body p { color: var(--text-muted); }
.product-card-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 10px;
}
.product-spec-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.product-spec { background: var(--surface-alt); border: 1px solid var(--border-soft); padding: 4px 12px; border-radius: 100px; font-size: 12px; color: var(--text-muted); }
.warranty-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 32px; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); margin: 32px 0; text-align: center; }
.warranty-stat { font-family: 'Karla', sans-serif; font-weight: 700; font-size: 2rem; color: var(--accent); }
.warranty-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.10em; color: var(--text-muted); margin-top: 4px; }

/* ── LOCATIONS GRID (cities) ────────────────────── */
.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-soft);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all .2s ease;
}
.location-chip:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.location-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: block;
  transition: border-color .25s ease, transform .25s ease;
}
.location-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.location-card h3 { margin-bottom: 8px; color: var(--text-primary); }
.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-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: border-color .25s ease;
}
.loc-service-card:hover { border-color: var(--accent); }
.loc-service-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-primary); }
.loc-service-card p { color: var(--text-muted); }

/* ── FORMS (contact) ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-subtle); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.info-panel {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
}
.info-panel h2 { margin-bottom: 18px; color: var(--text-primary); }
.info-row { padding: 12px 0; border-bottom: 1px solid var(--border-soft); font-size: 14px; color: var(--text-muted); }
.info-row:last-child { border-bottom: none; }
.info-row strong { display: block; margin-bottom: 4px; color: var(--text-primary); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── PRIVACY / LEGAL ────────────────────────────── */
.legal { padding: 80px 0; background: var(--background); }
.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.5rem; margin: 32px 0 14px; color: var(--accent); }
.legal p, .legal li { font-size: 15px; line-height: 1.7; margin-bottom: 10px; color: var(--text-muted); }
.legal ul { margin-left: 1.4em; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer { background: var(--surface); color: var(--text-muted); padding: 80px 0 24px; border-top: 1px solid var(--border-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 50px; margin-bottom: 18px; }
.footer-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.footer-contact a, .footer-contact span { color: var(--text-muted); }
.footer-contact a:hover { color: var(--accent); }
.footer-heading { font-family: 'Karla', sans-serif; color: var(--accent); font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.10em; }
.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-soft); padding-top: 20px; font-size: 13px; color: var(--text-subtle); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

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

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { padding: 70px 0 50px; }
  .hero-badge { position: static; margin-bottom: 24px; max-width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
  .split-content { padding: 56px 24px; border-left: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 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 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; }
  .section { padding: 80px 0; }
  .cta-band { padding: 80px 0; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .values-grid, .team-grid, .feature-grid, .why-grid, .product-grid, .location-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-top { display: none; }
  body { padding-bottom: 70px; } /* room for sticky CTA */
}
