/* ===== Design tokens ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-dark: #0f172a;
  --surface: #ffffff;
  --surface-border: #e2e8f0;
  --surface-muted: #f8fafc;

  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #f8fafc;

  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #dbeafe;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-soft: #fef3c7;
  --green: #10b981;
  --green-soft: #d1fae5;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow: 0 4px 12px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 40px rgba(15,23,42,0.12);
  --shadow-blue: 0 8px 24px rgba(37,99,235,0.25);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --max-width: 1200px;

  --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}
p { margin: 0 0 1em; }

/* ===== Top utility bar ===== */
.top-bar {
  background: var(--bg-dark);
  color: var(--text-inverse);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--text-inverse); text-decoration: none; }
.top-bar a:hover { color: var(--amber); }
.top-bar__phone { font-weight: 600; }
.top-bar__hours { display: inline-flex; align-items: center; gap: 6px; }
.top-bar__dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}

/* ===== Header (sticky) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.site-header__brand:hover { text-decoration: none; }
.site-header__logo { width: 36px; height: 36px; flex-shrink: 0; }
.site-header__brand-text { line-height: 1.15; }
.site-header__brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav { display: flex; gap: 28px; }
.site-nav__link {
  font-family: var(--font-display);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.site-nav__link:hover { color: var(--blue); text-decoration: none; }
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__link[aria-current="page"] { color: var(--blue); }

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--amber);
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.site-header__cta:hover {
  background: var(--amber-dark);
  color: var(--bg-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245,158,11,0.4);
  text-decoration: none;
}
.site-header__cta-icon { font-size: 16px; }

@media (max-width: 720px) {
  .site-header__brand-text small { display: none; }
  .site-nav { gap: 16px; }
  .site-header__cta { padding: 8px 14px; font-size: 13px; }
  .site-header__cta span:not(.site-header__cta-icon) { display: none; }
}

/* ===== Eyebrow label ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.eyebrow--amber { color: var(--amber-dark); }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--surface-border);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero__title-accent { color: var(--blue); }
.hero__sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 540px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero__meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta-star { color: var(--amber); font-size: 16px; }
.hero__meta-strong { color: var(--text); font-weight: 600; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0) scale(0.97); transition: transform .1s ease; }
.btn--primary {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--blue-dark); color: white; box-shadow: 0 12px 28px rgba(37,99,235,0.35); }
.btn--amber {
  background: var(--amber);
  color: var(--bg-dark);
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.btn--amber:hover { background: var(--amber-dark); color: var(--bg-dark); box-shadow: 0 12px 28px rgba(245,158,11,0.4); }
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover { background: var(--blue); color: white; }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn__icon { font-size: 18px; }

/* ===== Hero image placeholder ===== */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--amber-soft) 100%);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: hero-float 5s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero__media:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 24px 56px rgba(15,23,42,0.18); }
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ===== Trust badges row ===== */
.trust-badges {
  padding: 48px 0;
  background: var(--bg);
}
.trust-badges__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .trust-badges__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .trust-badges__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trust-badge__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.trust-badge__icon--blue { background: var(--blue-soft); }
.trust-badge__icon--amber { background: var(--amber-soft); }
.trust-badge__icon--green { background: var(--green-soft); }
.trust-badge__icon--slate { background: var(--bg-alt); }
.trust-badge__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.trust-badge__sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Section ===== */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 56px 0; }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section__title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section__sub {
  font-size: 17px;
  color: var(--text-muted);
}

/* ===== About ===== */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 800px) { .about { grid-template-columns: 1.2fr 1fr; } }
.about__body { font-size: 17px; color: var(--text-secondary); }
.about__body p { margin-bottom: 1em; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about__stat {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  text-align: center;
}
.about__stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.about__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.service-card:nth-child(4n+2) .service-card__icon { background: var(--amber-soft); }
.service-card:nth-child(4n+3) .service-card__icon { background: var(--green-soft); }
.service-card:nth-child(4n+4) .service-card__icon { background: var(--bg-alt); }
.service-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}
.service-card__body {
  color: var(--text-secondary);
  font-size: 15px;
  flex-grow: 1;
}
.service-card__link {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.service-card__link:hover { gap: 10px; text-decoration: none; }

/* ===== Why choose us (feature grid) ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--blue-soft);
}
.feature:nth-child(4n+2) .feature__icon { background: var(--amber-soft); }
.feature:nth-child(4n+3) .feature__icon { background: var(--green-soft); }
.feature:nth-child(4n+4) .feature__icon { background: var(--bg-alt); }
.feature__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feature__body { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ===== Emergency CTA banner ===== */
.emergency-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.emergency-banner::before {
  content: "⚡";
  position: absolute;
  right: -10px; top: -30px;
  font-size: 180px;
  color: rgba(245,158,11,0.08);
  line-height: 1;
  pointer-events: none;
}
.emergency-banner__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.emergency-banner__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: 12px;
}
.emergency-banner__sub {
  color: #cbd5e1;
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Reviews ===== */
.review-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--blue-soft);
  line-height: 1;
  pointer-events: none;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--amber) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.review-card__name {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 700;
}
.review-card__date {
  color: var(--text-muted);
  font-size: 13px;
}
.review-card__stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}
.review-card__text {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  font-size: 16px;
}

/* ===== Reviews aggregate row ===== */
.review-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.review-summary__score {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.review-summary__detail { display: flex; flex-direction: column; gap: 2px; }
.review-summary__stars { color: var(--amber); font-size: 18px; letter-spacing: 2px; }
.review-summary__count { color: var(--text-muted); font-size: 14px; }
.review-summary__badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== Final CTA section ===== */
.final-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "⚡";
  position: absolute;
  left: -10px; bottom: -40px;
  font-size: 200px;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.final-cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  position: relative;
}
.final-cta__phone {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
}
.final-cta__phone:hover { color: var(--amber); text-decoration: none; }
.final-cta__hours {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  position: relative;
}

/* ===== Page header (services/contact) ===== */
.page-header {
  padding: 56px 0 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--surface-border);
}
.page-header__inner { max-width: 760px; }
.page-header__title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.page-header__sub {
  font-size: 17px;
  color: var(--text-muted);
}

/* ===== Info card ===== */
.info-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--surface-border);
}
.info-row:first-of-type { padding-top: 0; }
.info-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.info-row__icon {
  font-size: 22px;
  line-height: 1.4;
  width: 40px;
  flex-shrink: 0;
  text-align: center;
}
.info-row__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.info-row__value { color: var(--text); font-size: 16px; }
.info-row__value a { color: var(--blue); font-weight: 600; }
.status-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--green);
  animation: status-pulse 2.4s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 14px rgba(16,185,129,0.9), 0 0 4px rgba(16,185,129,0.6); }
}

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--green-soft);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-pill);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge__dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}

/* ===== Contact grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact__col-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}

/* ===== Map placeholder ===== */
.map-placeholder {
  margin-top: 20px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-placeholder__icon { font-size: 36px; position: relative; }
.map-placeholder__text {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  position: relative;
}

/* ===== Forms ===== */
.form { display: grid; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form__input, .form__textarea {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--surface-muted);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--text-muted); }
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__submit { justify-self: start; }
.form__success {
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 500;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 64px 0 24px;
  margin-top: 80px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: white;
}
.site-footer__logo {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.site-footer__about { font-size: 14px; line-height: 1.7; color: #94a3b8; }
.site-footer__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { margin-bottom: 10px; }
.site-footer__list a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}
.site-footer__list a:hover { color: var(--amber); text-decoration: none; }
.site-footer__contact { font-size: 14px; line-height: 1.8; color: #cbd5e1; }
.site-footer__contact a { color: white; text-decoration: none; }
.site-footer__contact a:hover { color: var(--amber); }
.site-footer__contact-phone {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  display: inline-block;
  margin-bottom: 8px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94a3b8;
}
.site-footer__bottom a { color: #94a3b8; text-decoration: none; }
.site-footer__bottom a:hover { color: var(--amber); }
.site-footer__license { font-family: var(--font-display); font-weight: 600; color: #cbd5e1; }

/* ===== Placeholder convention ===== */
.placeholder {
  font-style: italic;
  color: var(--text-muted);
  background: repeating-linear-gradient(
    45deg, transparent, transparent 8px, rgba(15,23,42,0.04) 8px, rgba(15,23,42,0.04) 16px
  );
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ===== Scroll progress bar ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--amber) 100%);
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(37,99,235,0.4);
}

/* ===== Card icon hover scale ===== */
.service-card__icon,
.trust-badge__icon,
.feature__icon {
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card__icon,
.trust-badge:hover .trust-badge__icon,
.feature:hover .feature__icon {
  transform: scale(1.12);
}

/* ===== Stat counter ===== */
.about__stat-num[data-count-to] { display: inline-block; }

/* ===== Reduced motion: disable all new animations ===== */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .status-dot { animation: none; }
  .service-card__icon,
  .trust-badge__icon,
  .feature__icon { transition: none; }
  .service-card:hover .service-card__icon,
  .trust-badge:hover .trust-badge__icon,
  .feature:hover .feature__icon { transform: none; }
  .btn:active { transform: none; }
  .hero__media { animation: none; transition: none; }
  .hero__media:hover { transform: none; }
}