/* ═══════════════════════════════════════════════════════════
   Level1PC — Static Site Stylesheet
   Pure vanilla CSS, no build step required.
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-50:  #fff1f2;
  --brand-100: #ffe4e5;
  --brand-200: #fecdce;
  --brand-400: #f04048;
  --brand-500: #ce0d17;
  --brand-600: #a50b14;
  --dark:      #0f172a;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --max-w: 1280px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
[id] { scroll-margin-top: 80px; }

/* ── Typography ── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Focus rings ── */
:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--dark);
  border-bottom: 1px solid #1e293b;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 3px;
  flex-shrink: 0;
}
.nav-logo-img-wrap img { width: 32px; height: 32px; object-fit: contain; }
.nav-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.nav-brand-name span { color: var(--brand-400); }
.nav-brand-sub {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  line-height: 1;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--slate-800); color: var(--white); }
.nav-links a.active { background: rgba(206,13,23,.1); color: var(--brand-400); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--brand-500);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--brand-600); }
.nav-cta svg { width: 16px; height: 16px; }

/* Mobile menu toggle */
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--slate-300);
  border-radius: var(--radius-sm);
}
.nav-mobile-btn svg { width: 24px; height: 24px; display: block; }

.mobile-menu {
  display: none;
  background: var(--dark);
  border-top: 1px solid var(--slate-800);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu nav a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu nav a:hover { background: var(--slate-800); color: var(--white); }
.mobile-menu nav a.active { background: rgba(206,13,23,.1); color: var(--brand-400); }
.mobile-menu .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 16px 16px;
  padding: 12px;
  background: var(--brand-500);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
}
.mobile-menu .mobile-cta:hover { background: var(--brand-600); }

@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
}

/* ═══════════════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════════════ */
.page-content { padding-top: 64px; }

/* ═══════════════════════════════════════════════
   HERO — DARK BASE
═══════════════════════════════════════════════ */
.hero-dark {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding-top: 80px;
}
.hero-dark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.hero-dark.to-slate::after {
  background: linear-gradient(to bottom, transparent, var(--slate-50));
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  top: -128px; right: -128px;
  width: 500px; height: 500px;
  background: rgba(206,13,23,.05);
}
.hero-glow-2 {
  bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: rgba(59,130,246,.05);
}
.hero-inner {
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(240,64,72,.2);
  background: rgba(206,13,23,.1);
  color: var(--brand-400);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto;
}
.hero-h1 .accent { color: var(--brand-400); }
.hero-p {
  margin-top: 24px;
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--slate-800);
  color: var(--slate-300);
  font-size: 0.875rem;
}
.pill svg { width: 16px; height: 16px; color: var(--brand-400); flex-shrink: 0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  font-size: 0.875rem;
}
.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}
.hero-strip-item svg { width: 16px; height: 16px; color: var(--brand-400); }
.hero-strip-item.muted { color: rgba(255,255,255,.7); font-weight: 400; }
.hero-strip-divider { color: rgba(255,255,255,.2); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4px;
}
.scroll-hint-dot {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,.5);
  animation: bounce 1.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-align: center;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-sm svg { width: 16px; height: 16px; }
.btn-xs { padding: 8px 16px; font-size: 0.8125rem; }
.btn-xs svg { width: 14px; height: 14px; }

.btn-primary { background: var(--brand-500); color: var(--white); }
.btn-primary:hover { background: var(--brand-600); }

.btn-outline-dark {
  background: transparent;
  color: var(--slate-200);
  border: 2px solid var(--slate-600);
}
.btn-outline-dark:hover { border-color: var(--slate-400); color: var(--white); }

.btn-outline-light {
  background: var(--white);
  color: var(--slate-800);
  border: 2px solid var(--slate-200);
}
.btn-outline-light:hover { border-color: var(--slate-400); }

.btn-dark {
  background: var(--slate-800);
  color: var(--white);
  border: 2px solid var(--slate-700);
}
.btn-dark:hover { background: var(--slate-700); }

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-bg { background: var(--slate-50); }
.section-dark { background: var(--dark); }
.section-mid { background: var(--slate-700); }

.section-header { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--slate-900); }
.section-sub { margin-top: 16px; font-size: 1.125rem; color: var(--slate-600); line-height: 1.7; }
.section-sub.white { color: var(--slate-400); }

/* ═══════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════ */
.stats-bar {
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.stat-item:nth-child(2n) { border-right: none; }
@media (min-width: 1024px) {
  .stat-item:nth-child(2n) { border-right: 1px solid var(--slate-100); }
  .stat-item:nth-child(4n) { border-right: none; }
  .stat-item { border-bottom: none; }
}
.stat-value { font-size: 1.875rem; font-weight: 900; color: var(--brand-500); }
.stat-label { margin-top: 4px; font-size: 0.875rem; font-weight: 500; color: var(--slate-500); }

/* ═══════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  border: 1px solid var(--slate-100);
}
.card-dark {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  border: 1px solid rgba(206,13,23,.15);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; color: var(--brand-600); }
.card-icon-lg {
  width: 56px; height: 56px;
  border-radius: 14px;
}
.card-icon-lg svg { width: 28px; height: 28px; }
.card-icon-slate {
  background: var(--slate-100);
  border-color: var(--slate-200);
}
.card-icon-slate svg { color: var(--slate-700); }
.card-icon-dark {
  background: rgba(206,13,23,.1);
  border-color: rgba(206,13,23,.2);
}
.card-icon-dark svg { color: var(--brand-400); }

/* Service card checklist */
.check-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--slate-600); }
.check-item svg { width: 16px; height: 16px; color: var(--brand-500); margin-top: 2px; flex-shrink: 0; }
.check-item.light { color: var(--slate-300); }
.check-item.light svg { color: var(--brand-400); }

/* ═══════════════════════════════════════════════
   GRIDS
═══════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

/* ═══════════════════════════════════════════════
   HOME — SERVICE PATH CARDS
═══════════════════════════════════════════════ */
.service-path-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .service-path-grid { grid-template-columns: repeat(2,1fr); } }

.service-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 32px 0;
}
.service-feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; }
.service-feature-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════════ */
.review-card { display: flex; flex-direction: column; }
.review-card blockquote { flex: 1; }
.review-card blockquote p { font-size: 0.875rem; line-height: 1.7; color: var(--slate-600); }
.review-stars { display: flex; gap: 4px; margin-bottom: 12px; }
.review-stars svg { width: 16px; height: 16px; fill: #f59e0b; color: #f59e0b; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-100);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-700, #870910);
  flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 600; color: var(--slate-900); }
.review-loc  { font-size: 0.75rem; color: var(--slate-500); }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(206,13,23,.1);
  color: var(--brand-400);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.cta-tag svg { width: 16px; height: 16px; }
.cta-h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--white); }
.cta-h2 span { color: var(--brand-400); }
.cta-p { margin-top: 16px; font-size: 1.125rem; color: var(--slate-400); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer { background: var(--dark); color: var(--slate-300); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 0 40px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.7; margin-top: 20px; }
.footer-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.footer-guarantee svg { width: 16px; height: 16px; color: var(--brand-500); flex-shrink: 0; }
.footer-guarantee span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col h2 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--slate-400); transition: color 0.15s; }
.footer-col a:hover { color: var(--brand-400); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--slate-400);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--brand-500); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--slate-400); transition: color 0.15s; }
.footer-contact-item a:hover { color: var(--brand-400); }
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: 0.75rem; color: var(--slate-500); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 0.75rem; color: var(--slate-500); transition: color 0.15s; }
.footer-links a:hover { color: var(--slate-300); }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 2px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.timeline-item { position: relative; }
.timeline-dot {
  position: absolute;
  left: -53px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--dark);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-400);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-600);
  margin-bottom: 4px;
}
.timeline-title { font-weight: 600; color: var(--slate-900); margin-bottom: 4px; }
.timeline-desc { font-size: 0.875rem; color: var(--slate-500); }

/* Metrics grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 1024px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-item { text-align: center; }
.metric-value { font-size: 3rem; font-weight: 900; color: var(--brand-400); line-height: 1; }
.metric-suffix { font-size: 2rem; }
.metric-label { margin-top: 8px; font-size: 0.875rem; font-weight: 500; color: var(--slate-400); }

/* ═══════════════════════════════════════════════
   BUSINESS / RESIDENTIAL — PLAN CARDS
═══════════════════════════════════════════════ */
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  padding: 32px;
}
.plan-card.light {
  background: var(--white);
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.plan-card.dark {
  background: var(--dark);
  border: 1px solid rgba(206,13,23,.25);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  color: var(--white);
}
.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--brand-500);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.plan-tagline { font-size: 0.875rem; font-weight: 500; color: var(--slate-500); margin-bottom: 8px; }
.plan-card.dark .plan-tagline { color: var(--slate-400); }
.plan-name { font-size: 1.5rem; font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
.plan-card.dark .plan-name { color: var(--white); }
.plan-price { font-size: 0.875rem; font-weight: 600; color: var(--brand-600); margin-bottom: 24px; }
.plan-card.dark .plan-price { color: var(--brand-400); }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.plan-card.dark .plan-features li { color: var(--slate-300); }
.plan-features svg { width: 16px; height: 16px; color: var(--brand-500); margin-top: 2px; flex-shrink: 0; }
.plan-card.dark .plan-features svg { color: var(--brand-400); }

/* ═══════════════════════════════════════════════
   CONTACT — CONTACT CARDS
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px)  { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: box-shadow 0.2s, border-color 0.2s;
  color: inherit;
}
.contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: var(--brand-200); }
.contact-card .card-icon { margin-bottom: 16px; width: 56px; height: 56px; }
.contact-card h3 { font-size: 1rem; font-weight: 600; color: var(--slate-900); margin-bottom: 4px; }
.contact-card p  { font-size: 0.875rem; }
.contact-card .brand { color: var(--brand-600); font-weight: 600; }
.contact-card .muted { color: var(--slate-500); font-size: 0.75rem; margin-top: 4px; }

/* ═══════════════════════════════════════════════
   PARTNERS ROW
═══════════════════════════════════════════════ */
.partners-row {
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  padding: 48px 0;
}
.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-400);
  margin-bottom: 32px;
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 48px;
}
.partner-wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════
   SERVICE AREA TAGS
═══════════════════════════════════════════════ */
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.area-tag {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--slate-100);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

/* ═══════════════════════════════════════════════
   SUPPORT TICKET FORM (multi-step)
═══════════════════════════════════════════════ */
.ticket-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  border: 1px solid var(--slate-100);
  overflow: hidden;
}
.ticket-steps {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
  gap: 0;
}
.step-item { display: flex; align-items: center; gap: 8px; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  background: var(--slate-200);
  color: var(--slate-500);
}
.step-num.active { background: var(--dark); color: var(--white); }
.step-num.done   { background: var(--brand-500); color: var(--white); }
.step-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-400);
  transition: color 0.2s;
}
.step-label.active { color: var(--slate-900); }
.step-label.done   { color: var(--brand-600); }
.step-connector {
  flex: 1;
  height: 1px;
  background: var(--slate-200);
  margin: 0 12px;
  transition: background 0.2s;
  min-width: 24px;
}
.step-connector.done { background: var(--brand-400); }

.ticket-body { padding: 32px; }
.ticket-step { display: none; }
.ticket-step.active { display: block; }

.ticket-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
}

/* Radio option cards */
.option-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .option-grid { grid-template-columns: 1fr 1fr; } }

.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border-radius: var(--radius);
  border: 2px solid var(--slate-200);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.option-card:hover { border-color: var(--slate-300); }
.option-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.option-card.selected { border-color: var(--brand-500); background: var(--brand-50); }
.option-title { font-weight: 600; color: var(--slate-900); }
.option-desc  { font-size: 0.875rem; color: var(--slate-500); }

/* Priority dot */
.priority-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.option-card[data-priority="low"]      .priority-title { color: #16a34a; }
.option-card[data-priority="normal"]   .priority-title { color: #2563eb; }
.option-card[data-priority="high"]     .priority-title { color: #d97706; }
.option-card[data-priority="critical"] .priority-title { color: #dc2626; }
.option-card[data-priority="low"]      .priority-dot   { background: #16a34a; }
.option-card[data-priority="normal"]   .priority-dot   { background: #2563eb; }
.option-card[data-priority="high"]     .priority-dot   { background: #d97706; }
.option-card[data-priority="critical"] .priority-dot   { background: #dc2626; }

/* Form fields */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--slate-700); }
.form-label .req { color: #ef4444; }
.form-input, .form-textarea {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  font-size: 0.875rem;
  color: var(--slate-900);
  background: var(--white);
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--slate-400); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(206,13,23,.12);
}
.form-textarea { resize: none; min-height: 128px; }

/* Remote support info box */
.remote-box {
  margin-top: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 20px;
}
.remote-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.remote-box-header span { font-size: 0.875rem; font-weight: 600; color: var(--slate-900); }
.remote-note {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fffbeb;
  border: 1px solid #fde68a;
  margin-bottom: 16px;
}
.remote-note svg { width: 14px; height: 14px; color: #d97706; flex-shrink: 0; margin-top: 2px; }
.remote-note p { font-size: 0.75rem; line-height: 1.6; color: #92400e; }

/* ═══════════════════════════════════════════════
   REVIEWS PAGE
═══════════════════════════════════════════════ */
.rating-summary-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .rating-summary-card { flex-direction: row; align-items: flex-start; }
}
.rating-big { flex-shrink: 0; text-align: center; }
@media (min-width: 640px) {
  .rating-big {
    padding-right: 32px;
    border-right: 1px solid var(--slate-100);
  }
}
.rating-number { font-size: 5rem; font-weight: 900; color: var(--slate-900); line-height: 1; }
.rating-stars-lg { display: flex; gap: 4px; justify-content: center; margin: 8px 0; }
.rating-stars-lg svg { width: 24px; height: 24px; fill: #f59e0b; color: #f59e0b; }
.rating-count { font-size: 0.875rem; color: var(--slate-500); }
.rating-powered { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 8px; }
.rating-powered span { font-size: 0.75rem; color: var(--slate-400); }
.rating-bars { flex: 1; width: 100%; display: flex; flex-direction: column; gap: 10px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-num { width: 12px; font-size: 0.75rem; font-weight: 600; color: var(--slate-600); text-align: right; flex-shrink: 0; }
.bar-star svg { width: 14px; height: 14px; fill: #f59e0b; color: #f59e0b; flex-shrink: 0; }
.bar-track {
  flex: 1;
  height: 10px;
  border-radius: 5px;
  background: var(--slate-100);
  overflow: hidden;
}
.bar-fill { height: 100%; border-radius: 5px; background: #f59e0b; }
.bar-pct { width: 32px; font-size: 0.75rem; color: var(--slate-500); flex-shrink: 0; }

.reviews-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .reviews-toolbar { flex-direction: row; align-items: center; justify-content: space-between; }
}
.reviews-title { font-size: 1.25rem; font-weight: 700; color: var(--slate-900); }
.reviews-title span { font-size: 1rem; font-weight: 400; color: var(--slate-400); margin-left: 8px; }
.reviews-controls { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 480px) { .reviews-controls { flex-direction: row; } }

.search-wrap { position: relative; }
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--slate-400);
  pointer-events: none;
}
.search-input {
  padding: 10px 16px 10px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  font-size: 0.875rem;
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  font-family: inherit;
  width: 100%;
}
@media (min-width: 480px) { .search-input { width: 224px; } }
.search-input:focus { border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(206,13,23,.12); }

.sort-select {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  font-size: 0.875rem;
  color: var(--slate-700);
  background: var(--white);
  font-family: inherit;
  outline: none;
  cursor: pointer;
  min-width: 160px;
}
.sort-select:focus { border-color: var(--brand-500); }

.review-card-wrap {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.quote-icon { width: 24px; height: 24px; color: var(--brand-200); margin-bottom: 16px; }
.review-text { font-size: 0.875rem; line-height: 1.7; color: var(--slate-600); flex: 1; }
.review-expand-btn {
  background: none;
  border: none;
  padding: 0;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-600);
  cursor: pointer;
  font-family: inherit;
}
.review-expand-btn:hover { text-decoration: underline; }
.review-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-author-info { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.review-author-text { min-width: 0; }
.review-name { font-size: 0.875rem; font-weight: 600; color: var(--slate-900); }
.review-time { font-size: 0.75rem; color: var(--slate-400); }
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-50);
  font-size: 0.75rem;
  font-weight: 500;
  color: #870910;
  margin-top: 12px;
}
.service-badge svg { width: 12px; height: 12px; }

.leave-review-box {
  margin-top: 64px;
  border-radius: var(--radius-xl);
  background: var(--dark);
  padding: 40px 32px;
  text-align: center;
}
.leave-review-box h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin: 16px 0 8px; }
.leave-review-box p { color: var(--slate-400); margin-bottom: 24px; }

/* ═══════════════════════════════════════════════
   COMMON ISSUES GRID
═══════════════════════════════════════════════ */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px)  { .issues-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .issues-grid { grid-template-columns: repeat(6, 1fr); } }
.issue-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  text-align: center;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
}
.issue-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.issue-icon svg { width: 20px; height: 20px; color: var(--brand-600); }
.issue-label { font-size: 0.75rem; font-weight: 500; color: var(--slate-700); line-height: 1.4; }

/* ═══════════════════════════════════════════════
   TICKET SECTION LAYOUT
═══════════════════════════════════════════════ */
.ticket-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 1024px) { .ticket-layout { grid-template-columns: 1fr 1fr; } }
.ticket-info h2 { color: var(--slate-900); }
.ticket-info p { font-size: 1.125rem; color: var(--slate-600); margin-top: 16px; line-height: 1.7; }
.ticket-bullets { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.ticket-bullet { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: var(--slate-600); }
.ticket-bullet-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ticket-bullet-icon.brand-bg { background: var(--brand-50); }
.ticket-bullet-icon.white-bg { background: var(--white); border: 1px solid var(--slate-200); }
.ticket-bullet-icon svg { width: 16px; height: 16px; color: var(--brand-600); }

/* ═══════════════════════════════════════════════
   HERO — HOME SPECIFIC
═══════════════════════════════════════════════ */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-home-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.57), rgba(0,0,0,.72));
  z-index: 1;
}
.hero-home-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 96px 0 120px;
}
.hero-home-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.hero-home-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-400); animation: pulse 2s infinite; }
.hero-home-badge span { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,.9); text-shadow: 0 2px 8px rgba(0,0,0,.8); }
.hero-home h1 { text-shadow: 0 2px 8px rgba(0,0,0,.8); animation: fadeIn 250ms ease-out 300ms both; }
.hero-home p  { text-shadow: 0 2px 8px rgba(0,0,0,.8); animation: fadeIn 250ms ease-out 400ms both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════════════════
   RESPONSIVE UTILITIES
═══════════════════════════════════════════════ */
.text-center { text-align: center; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── About page — story section two-column layout ── */
@media (min-width: 1024px) {
  #story-col { max-width: none; }
  section:nth-of-type(2) .container > div { grid-template-columns: 1fr 1fr; }
}
