/* Miami Water Damage conversion-first theme. */
:root {
  --mwd-primary: #003087;
  --mwd-primary-2: #051a3f;
  --mwd-secondary: #e8270a;
  --mwd-secondary-dark: #b81804;
  --mwd-teal: #027a72;
  --mwd-gold: #ffc107;
  --mwd-red: #e8270a;
  --mwd-blue: #1a9bd4;
  --mwd-bg: #f4f7fb;
  --mwd-surface: #fff;
  --mwd-surface-low: #f3f4f5;
  --mwd-surface-mid: #edeeef;
  --mwd-border: #c2c6d1;
  --mwd-text: #191c1d;
  --mwd-muted: #424750;
  --mwd-dark: #1a2b3c;
  --mwd-blue-soft: #e4f5fd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--mwd-bg);
  color: var(--mwd-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.mwd-brand,
.mwd-btn,
.mwd-plan__price strong {
  font-family: Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

.mwd-container {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.mwd-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: var(--mwd-surface);
  border-bottom: 1px solid var(--mwd-border);
}

.mwd-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mwd-brand {
  color: var(--mwd-primary);
  font-size: 25px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.mwd-brand span {
  color: #001c38;
}

.mwd-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.mwd-nav a {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  color: var(--mwd-muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.mwd-nav a:hover,
.mwd-nav a.active {
  color: var(--mwd-primary);
  border-color: var(--mwd-primary);
}

.mwd-emergency-link,
.mwd-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease, background .18s ease, color .18s ease;
}

.mwd-emergency-link {
  padding: 0 18px;
  color: #fff;
  background: var(--mwd-secondary);
  box-shadow: 0 8px 18px rgba(160, 65, 0, .18);
}

.mwd-emergency-link:hover,
.mwd-btn:hover {
  color: #fff;
  filter: brightness(.96);
  transform: translateY(-1px);
}

.mwd-page {
  background: var(--mwd-bg);
}

.mwd-content-page,
.mwd-auth-page {
  min-height: 72vh;
}

.mwd-subhero,
.mwd-auth-shell {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 12, 28, .95) 0%, rgba(0, 48, 135, .84) 52%, rgba(2, 12, 28, .84) 100%),
    url("/assets/img/hero-section/miami-water-damage-restoration-hero.png") center/cover;
}

.mwd-subhero {
  padding: 82px 0 70px;
}

.mwd-auth-shell {
  padding: 84px 0;
}

.mwd-subhero__grid,
.mwd-auth-grid,
.mwd-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
}

.mwd-subhero h1,
.mwd-auth-copy h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
}

.mwd-subhero p,
.mwd-auth-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.58;
}

.mwd-subhero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mwd-cta-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}

.mwd-cta-panel strong,
.mwd-cta-panel a {
  color: #fff;
}

.mwd-cta-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.mwd-cta-panel p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}

.mwd-cta-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mwd-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mwd-blog-card,
.mwd-empty-state,
.mwd-form-panel,
.mwd-contact-strip article,
.mwd-auth-card {
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 48, 135, .08);
}

.mwd-blog-card {
  overflow: hidden;
}

.mwd-blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--mwd-blue-soft);
  overflow: hidden;
}

.mwd-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwd-blog-card > div {
  padding: 22px;
}

.mwd-blog-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--mwd-secondary-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-blog-card h3 {
  margin: 0 0 12px;
  color: var(--mwd-text);
  font-size: 21px;
  line-height: 1.24;
}

.mwd-blog-card h3 a,
.mwd-text-link {
  color: inherit;
  text-decoration: none;
}

.mwd-blog-card p {
  color: var(--mwd-muted);
  line-height: 1.55;
}

.mwd-blog-detail .mwd-subhero h1 {
  max-width: 900px;
}

.mwd-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mwd-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 900;
}

.mwd-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.mwd-article,
.mwd-side-panel {
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 48, 135, .08);
}

.mwd-article {
  overflow: hidden;
}

.mwd-article__media {
  aspect-ratio: 16 / 8;
  background: var(--mwd-blue-soft);
  overflow: hidden;
}

.mwd-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwd-article__body {
  padding: 34px;
}

.mwd-article__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.mwd-blog-content {
  color: var(--mwd-text);
  font-size: 17px;
  line-height: 1.75;
}

.mwd-blog-content h2,
.mwd-blog-content h3 {
  margin: 34px 0 12px;
  color: var(--mwd-primary);
  line-height: 1.24;
}

.mwd-blog-content p,
.mwd-blog-content ul,
.mwd-blog-content ol {
  margin-bottom: 18px;
}

.mwd-blog-content li {
  margin-bottom: 8px;
}

.mwd-article-sidebar {
  display: grid;
  gap: 18px;
}

.mwd-article-sidebar .mwd-form-panel form {
  display: grid;
  gap: 14px;
}

.mwd-policy-shell {
  max-width: 940px;
}

.mwd-side-panel {
  padding: 24px;
}

.mwd-side-panel h3 {
  margin: 0 0 14px;
  color: var(--mwd-primary);
  font-size: 22px;
}

.mwd-side-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--mwd-border);
  color: var(--mwd-text);
  text-decoration: none;
}

.mwd-side-panel a:first-of-type {
  border-top: 0;
}

.mwd-side-panel a span {
  line-height: 1.35;
}

.mwd-side-panel a strong {
  color: var(--mwd-secondary-dark);
  font-size: 13px;
}

.mwd-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mwd-primary);
  font-weight: 900;
}

.mwd-empty-state {
  padding: 34px;
}

.mwd-pagination {
  margin-top: 28px;
}

.mwd-contact-grid {
  align-items: start;
}

.mwd-contact-strip {
  display: grid;
  gap: 16px;
}

.mwd-contact-strip article {
  padding: 22px;
}

.mwd-contact-strip i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--mwd-blue-soft);
  color: var(--mwd-primary);
}

.mwd-contact-strip strong,
.mwd-contact-strip a,
.mwd-contact-strip span {
  display: block;
}

.mwd-contact-strip strong {
  margin-bottom: 6px;
  color: var(--mwd-text);
}

.mwd-contact-strip a,
.mwd-contact-strip span {
  color: var(--mwd-muted);
}

.mwd-form-panel,
.mwd-auth-card {
  padding: 30px;
}

.mwd-form-panel h2,
.mwd-auth-card h2 {
  margin: 0 0 8px;
  color: var(--mwd-primary);
  font-size: 28px;
}

.mwd-form-panel p,
.mwd-auth-card p {
  margin: 0 0 22px;
  color: var(--mwd-muted);
}

.mwd-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.mwd-form-grid__full {
  grid-column: 1 / -1;
}

.mwd-form-panel label,
.mwd-auth-card label {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--mwd-text);
  font-weight: 900;
}

.mwd-form-panel .form-control,
.mwd-auth-card .form-control {
  min-height: 48px;
  border-color: var(--mwd-border);
  border-radius: 6px;
}

.mwd-auth-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.mwd-auth-card form {
  display: grid;
  gap: 16px;
}

.mwd-auth-card .mwd-btn {
  width: 100%;
}

.mwd-social-login,
.mwd-auth-links {
  display: flex;
  gap: 10px;
}

.mwd-social-login {
  margin-bottom: 18px;
}

.mwd-social-login a {
  flex: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  background: var(--mwd-primary);
  color: #fff;
  font-weight: 900;
}

.mwd-auth-links {
  justify-content: space-between;
  flex-wrap: wrap;
}

.mwd-auth-links a {
  color: var(--mwd-primary);
  font-weight: 900;
}

.mwd-hero {
  position: relative;
  min-height: 614px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--mwd-primary);
  color: #fff;
  text-align: center;
}

.mwd-hero--command {
  min-height: 690px;
  padding: 72px 0;
  place-items: stretch;
  background:
    radial-gradient(circle at 88% 12%, rgba(26, 155, 212, .28), transparent 34%),
    linear-gradient(135deg, #03152f 0%, #003087 48%, #061020 100%);
  text-align: left;
}

.mwd-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 52, 97, .72), rgba(0, 52, 97, .74)),
    url("/assets/img/hero-section/miami-water-damage-restoration-hero.png") center/cover;
  opacity: .58;
}

.mwd-hero--command .mwd-hero__media {
  background:
    linear-gradient(90deg, rgba(3, 14, 31, .92) 0%, rgba(0, 48, 135, .68) 52%, rgba(3, 14, 31, .86) 100%),
    url("/assets/img/hero-section/miami-water-damage-restoration-hero.png") center/cover;
  opacity: .86;
}

.mwd-hero__inner {
  position: relative;
  z-index: 1;
}

.mwd-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 460px);
  gap: 48px;
  align-items: center;
}

.mwd-command-copy {
  max-width: 760px;
}

.mwd-live-pill,
.mwd-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--mwd-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mwd-live-pill {
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(232, 39, 10, .28);
}

.mwd-cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--mwd-gold);
  color: #1d1600;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mwd-hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 800;
}

.mwd-hero--command h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.02;
}

.mwd-hero p {
  max-width: 720px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, .94);
  font-size: 18px;
  line-height: 1.55;
}

.mwd-hero--command p {
  max-width: 650px;
  margin: 0 0 30px;
  font-size: 20px;
}

.mwd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.mwd-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
}

.mwd-proof-strip span {
  padding: 17px 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.mwd-proof-strip span:last-child {
  border-right: 0;
}

.mwd-proof-strip strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.mwd-dispatch-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.mwd-dispatch-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 6px;
}

.mwd-dispatch-panel__head span {
  color: var(--mwd-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-dispatch-panel__head strong {
  color: var(--mwd-primary);
  font-size: 28px;
  line-height: 1;
}

.mwd-dispatch-panel label {
  margin: 0;
  color: var(--mwd-text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-dispatch-panel input,
.mwd-dispatch-panel select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #cbd3df;
  border-radius: 6px;
  background: #f8fafc;
  color: var(--mwd-text);
  font-size: 15px;
  font-weight: 700;
}

.mwd-emergency-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 6px;
  background: #fff1ef;
  color: var(--mwd-red);
  font-size: 13px;
  font-weight: 900;
}

.mwd-dispatch-panel small {
  color: var(--mwd-muted);
  text-align: center;
  font-weight: 700;
}

.mwd-search {
  width: min(100%, 540px);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.mwd-search__field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 12px;
  color: #667085;
}

.mwd-search input {
  width: 100%;
  height: 48px;
  border: 0;
  outline: 0;
  color: var(--mwd-text);
  font-size: 15px;
}

.mwd-btn--urgent {
  padding: 0 22px;
  background: var(--mwd-secondary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(232, 39, 10, .22);
}

.mwd-btn--primary {
  padding: 0 22px;
  background: var(--mwd-primary);
  color: #fff;
}

.mwd-btn--secondary {
  padding: 0 22px;
  border-color: var(--mwd-blue);
  color: var(--mwd-blue);
  background: transparent;
}

.mwd-btn--secondary:hover {
  background: var(--mwd-blue);
}

.mwd-btn--ghost-dark {
  padding: 0 22px;
  border-color: var(--mwd-border);
  color: var(--mwd-primary);
  background: #fff;
}

.mwd-btn--ghost-dark:hover {
  background: var(--mwd-primary);
}

.mwd-btn--glass {
  padding: 0 22px;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  background: rgba(255, 255, 255, .10);
}

.mwd-btn--xl {
  min-height: 58px;
  padding: 0 28px;
  font-size: 15px;
}

.mwd-btn--gold {
  padding: 0 22px;
  color: var(--mwd-dark);
  background: var(--mwd-gold);
}

.mwd-band,
.mwd-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--mwd-border);
}

.mwd-band {
  padding: 46px 0 60px;
  background: var(--mwd-surface-low);
}

.mwd-section h2,
.mwd-band h2 {
  margin: 0 0 24px;
  color: #001c54;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
}

.mwd-service-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mwd-service-card {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: var(--mwd-surface);
  color: var(--mwd-text);
  text-decoration: none;
}

.mwd-service-card span,
.mwd-pro-card__mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--mwd-blue-soft);
  color: var(--mwd-primary);
}

.mwd-service-card strong {
  font-size: 19px;
}

.mwd-service-card small {
  color: var(--mwd-muted);
  font-size: 14px;
  line-height: 1.45;
}

.mwd-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.mwd-section-head p {
  margin: 0;
  color: var(--mwd-muted);
}

.mwd-section-head--urgent {
  padding-bottom: 18px;
  border-bottom: 3px solid var(--mwd-red);
}

.mwd-section-kicker {
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 4px;
}

.mwd-section-head a {
  color: var(--mwd-primary);
  font-weight: 800;
  text-decoration: none;
}

.mwd-feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.mwd-feature-grid--simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mwd-feature-grid--simple article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 48, 135, .08);
}

.mwd-feature-grid--simple article i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mwd-blue-soft);
  color: var(--mwd-primary);
}

.mwd-feature-grid--simple article h3 {
  margin: 0 0 12px;
  color: var(--mwd-primary);
  font-size: 21px;
}

.mwd-feature-grid--simple article p {
  margin: 0;
  color: var(--mwd-muted);
  line-height: 1.58;
}

.mwd-pro-card {
  display: flex;
  min-height: 282px;
  overflow: hidden;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: var(--mwd-surface);
}

.mwd-pro-card:not(.mwd-pro-card--wide) {
  flex-direction: column;
  padding: 24px;
}

.mwd-pro-card__image {
  position: relative;
  width: 40%;
  min-height: 282px;
  display: block;
  overflow: hidden;
  background: var(--mwd-dark);
}

.mwd-pro-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwd-pro-card__image span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--mwd-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.mwd-pro-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.mwd-pro-card:not(.mwd-pro-card--wide) .mwd-pro-card__body {
  padding: 18px 0 0;
}

.mwd-pro-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.mwd-pro-card h3 {
  margin: 0 0 12px;
  color: var(--mwd-text);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.mwd-pro-card p {
  color: var(--mwd-muted);
  line-height: 1.55;
}

.mwd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid #ffd48d;
  border-radius: 4px;
  background: #fff8e5;
  color: #543400;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.mwd-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 22px;
}

.mwd-chip-row span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--mwd-surface-mid);
  color: var(--mwd-dark);
  font-size: 12px;
  font-weight: 700;
}

.mwd-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mwd-section--locations {
  text-align: center;
  background: var(--mwd-surface);
}

.mwd-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mwd-location-grid a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mwd-border);
  border-radius: 6px;
  color: var(--mwd-text);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

.mwd-footer {
  background: var(--mwd-surface);
  border-top: 1px solid var(--mwd-border);
}

.mwd-footer__inner {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 24px;
}

.mwd-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.mwd-footer__links a,
.mwd-footer p {
  color: var(--mwd-muted);
  font-size: 14px;
}

.mwd-footer p {
  margin: 0;
  text-align: right;
}

.mwd-pricing-hero {
  padding: 96px 0 52px;
  text-align: center;
}

.mwd-pricing-hero h1 {
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--mwd-primary);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  font-weight: 800;
}

.mwd-pricing-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--mwd-muted);
  font-size: 20px;
  line-height: 1.55;
}

.mwd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.mwd-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 32px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .02);
}

.mwd-plan--popular {
  border-color: var(--mwd-primary);
  box-shadow: 0 12px 28px rgba(0, 52, 97, .10);
}

.mwd-plan--dark {
  background: var(--mwd-dark);
  color: #fff;
}

.mwd-plan__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 16px;
  border-radius: 0 8px 0 8px;
  background: var(--mwd-secondary-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-plan h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--mwd-dark);
  font-size: 28px;
  font-weight: 800;
}

.mwd-plan--popular h2 {
  color: var(--mwd-secondary-dark);
}

.mwd-plan--dark h2 {
  color: var(--mwd-gold);
}

.mwd-plan p,
.mwd-plan li {
  color: var(--mwd-muted);
  font-size: 16px;
  line-height: 1.5;
}

.mwd-plan--dark p,
.mwd-plan--dark li {
  color: #f0f1f2;
}

.mwd-plan__price {
  margin: 28px 0;
}

.mwd-plan__price strong {
  color: var(--mwd-primary);
  font-size: 42px;
  line-height: 1;
}

.mwd-plan--dark .mwd-plan__price strong {
  color: #fff;
}

.mwd-plan ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.mwd-plan li i {
  margin-right: 10px;
  color: var(--mwd-teal);
}

.mwd-plan--popular li:first-child {
  font-weight: 800;
}

.mwd-plan .mwd-btn {
  width: 100%;
  margin-top: auto;
}

.mwd-partner-box {
  margin-top: 76px;
  padding: 36px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
}

.mwd-partner-box h2 {
  text-align: center;
}

.mwd-partner-box > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.mwd-partner-box article {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
}

.mwd-partner-box i {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--mwd-blue-soft);
  color: var(--mwd-primary);
}

.mwd-empty {
  padding: 34px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.mwd-directory {
  padding: 48px 0 72px;
}

.mwd-directory__wrap {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.mwd-filter-panel {
  position: sticky;
  top: 96px;
  padding: 26px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: var(--mwd-surface);
}

.mwd-filter-panel h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--mwd-primary);
  font-size: 24px;
}

.mwd-filter-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mwd-filter-panel label,
.mwd-trust-toggles strong {
  color: var(--mwd-text);
  font-size: 14px;
  font-weight: 900;
}

.mwd-filter-panel input,
.mwd-filter-panel select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--mwd-border);
  border-radius: 6px;
  background: var(--mwd-bg);
  color: var(--mwd-text);
}

.mwd-trust-toggles {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--mwd-border);
}

.mwd-trust-toggles span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--mwd-muted);
  font-weight: 700;
}

.mwd-trust-toggles i {
  color: var(--mwd-primary);
}

.mwd-directory__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  margin-bottom: 28px;
}

.mwd-directory__head h1 {
  margin: 0 0 8px;
  color: var(--mwd-primary);
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 800;
}

.mwd-directory__head > .mwd-btn {
  display: none;
}

.mwd-directory__head p {
  margin: 0;
  color: var(--mwd-muted);
  font-size: 20px;
}

.mwd-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mwd-directory-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
}

.mwd-directory-card--lead {
  overflow: hidden;
  border-top: 4px solid var(--mwd-blue);
}

.mwd-directory-card--featured {
  border-color: rgba(232, 39, 10, .42);
  border-top-color: var(--mwd-red);
  box-shadow: 0 18px 36px rgba(0, 48, 135, .10);
}

.mwd-fastest {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 0 8px 0 8px;
  background: var(--mwd-red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-card-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 4px 0 18px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #eef9ff;
  color: var(--mwd-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-card-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mwd-card-status i {
  color: #16a34a;
  font-size: 8px;
}

.mwd-card-status strong {
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--mwd-primary);
  color: #fff;
}

.mwd-directory-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.mwd-directory-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.18;
}

.mwd-directory-card h2 a {
  color: var(--mwd-text);
  text-decoration: none;
}

.mwd-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  color: var(--mwd-text);
  font-size: 14px;
  font-weight: 700;
}

.mwd-rating i {
  color: var(--mwd-gold);
}

.mwd-rating span {
  color: var(--mwd-muted);
  font-weight: 500;
}

.mwd-avatar {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--mwd-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 auto;
}

.mwd-directory-card__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.mwd-directory-card__chips span {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid #d5d9e1;
  border-radius: 4px;
  background: #f7f9fc;
  color: var(--mwd-dark);
  font-size: 12px;
  font-weight: 700;
}

.mwd-directory-card > p {
  color: var(--mwd-muted);
  font-size: 16px;
  line-height: 1.5;
}

.mwd-directory-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--mwd-border);
}

.mwd-directory-card__actions .mwd-claim-link {
  grid-column: 1 / -1;
}

.mwd-claim-link {
  color: var(--mwd-primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.mwd-density-map {
  display: none;
  position: sticky;
  top: 96px;
  min-height: 700px;
  align-items: end;
  padding: 22px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, .10), rgba(255, 255, 255, .10)),
    url("/assets/img/hero-section/miami-water-damage-restoration-hero.png") center/cover,
    #e9eef2;
}

.mwd-density-map div {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--mwd-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 20px rgba(26, 43, 60, .12);
}

.mwd-density-map strong,
.mwd-density-map span {
  display: block;
}

.mwd-density-map strong {
  color: var(--mwd-primary);
  font-size: 18px;
}

.mwd-density-map span {
  margin-top: 6px;
  color: var(--mwd-muted);
}

.mwd-detail-hero {
  padding: 34px 0 52px;
  background: var(--mwd-surface-low);
}

.mwd-local-hero {
  padding: 78px 0 56px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 14, 31, .94), rgba(0, 48, 135, .80)),
    url("/assets/img/hero-section/miami-water-damage-restoration-hero.png") center/cover;
}

.mwd-local-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 44px;
  align-items: center;
}

.mwd-local-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 900;
}

.mwd-local-hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .92);
  font-size: 20px;
  line-height: 1.55;
}

.mwd-local-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
}

.mwd-local-facts span {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 800;
}

.mwd-local-facts span:last-child {
  border-right: 0;
}

.mwd-local-facts strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.mwd-local-panel {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: var(--mwd-text);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
}

.mwd-local-panel strong {
  display: block;
  margin-bottom: 18px;
  color: var(--mwd-primary);
  font-size: 26px;
  line-height: 1.1;
}

.mwd-local-panel ul {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.mwd-local-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mwd-muted);
  font-weight: 800;
}

.mwd-local-panel i,
.mwd-local-service-grid i {
  color: var(--mwd-blue);
}

.mwd-local-panel .mwd-btn {
  width: 100%;
}

.mwd-local-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mwd-local-service-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--mwd-border);
  border-top: 4px solid var(--mwd-blue);
  border-radius: 8px;
  background: #fff;
  color: var(--mwd-text);
  text-decoration: none;
}

.mwd-local-service-grid i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--mwd-blue-soft);
}

.mwd-local-service-grid strong {
  color: var(--mwd-primary);
  font-size: 18px;
  line-height: 1.2;
}

.mwd-local-service-grid span,
.mwd-local-copy p {
  color: var(--mwd-muted);
  line-height: 1.55;
}

.mwd-local-copy {
  background: #fff;
}

.mwd-local-copy .mwd-container {
  max-width: 900px;
}

.mwd-local-copy h2 {
  margin-bottom: 18px;
}

.mwd-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 600px);
  gap: 48px;
  align-items: center;
}

.mwd-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.mwd-detail-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--mwd-border);
  border-radius: 999px;
  background: #fff;
  color: var(--mwd-text);
  font-size: 12px;
  font-weight: 800;
}

.mwd-detail-badges i,
.mwd-detail-meta i,
.mwd-review-card i {
  color: var(--mwd-gold);
}

.mwd-detail-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--mwd-primary);
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 800;
}

.mwd-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  color: var(--mwd-muted);
  font-size: 18px;
}

.mwd-detail-hero p {
  max-width: 700px;
  color: var(--mwd-muted);
  font-size: 19px;
  line-height: 1.65;
}

.mwd-detail-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
}

.mwd-detail-actions .mwd-btn {
  min-height: 64px;
  padding: 0 34px;
  font-size: 22px;
}

.mwd-detail-actions > span {
  color: var(--mwd-muted);
  font-size: 13px;
  font-weight: 700;
}

.mwd-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 16px;
}

.mwd-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: var(--mwd-surface-mid);
}

.mwd-detail-gallery__main {
  grid-row: span 2;
}

.mwd-detail-gallery__cover {
  position: relative;
  grid-row: span 2;
  min-height: 100%;
}

.mwd-detail-gallery__cover .mwd-detail-gallery__main {
  grid-row: auto;
}

.mwd-detail-gallery__cover--google .mwd-detail-gallery__main {
  filter: saturate(0.35) opacity(0.72);
}

.mwd-google-photo-watermark {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(0, 48, 135, 0.82);
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}

.mwd-google-photo-watermark strong {
  font-size: 13px;
}

.mwd-google-photo-watermark small {
  color: rgba(255, 255, 255, 0.78);
}

.mwd-detail-body {
  padding: 58px 0 76px;
}

.mwd-detail-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 380px);
  gap: 34px;
  align-items: start;
}

.mwd-detail-main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mwd-detail-tabs {
  position: sticky;
  top: 82px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(0, 48, 135, .08);
}

.mwd-detail-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 48, 135, .14);
  border-radius: 6px;
  color: var(--mwd-primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.mwd-detail-tabs a:hover {
  border-color: var(--mwd-secondary);
  background: rgba(26, 155, 212, .10);
  color: var(--mwd-secondary-dark);
}

.mwd-detail-intel {
  scroll-margin-top: 150px;
}

.mwd-intel-panel,
.mwd-comparison-table {
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
}

.mwd-intel-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.mwd-intel-panel strong,
.mwd-comparison-table strong {
  display: block;
  margin-bottom: 10px;
  color: var(--mwd-primary);
  font-size: 15px;
  font-weight: 900;
}

.mwd-intel-panel p,
.mwd-intel-panel li {
  color: var(--mwd-muted);
  line-height: 1.65;
}

.mwd-intel-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.mwd-comparison-table {
  margin-top: 16px;
  padding: 20px;
  overflow-x: auto;
}

.mwd-comparison-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.mwd-comparison-table th,
.mwd-comparison-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--mwd-border);
  color: var(--mwd-muted);
  text-align: left;
  vertical-align: top;
}

.mwd-comparison-table th {
  color: var(--mwd-primary);
  font-size: 13px;
  text-transform: uppercase;
}

.mwd-comparison-table td:first-child {
  color: var(--mwd-text);
  font-weight: 900;
}

.mwd-detail-main h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--mwd-primary);
  font-size: 28px;
}

.mwd-detail-main h2 i {
  color: var(--mwd-secondary-dark);
}

.mwd-detail-main h3 {
  margin: -8px 0 18px;
  color: var(--mwd-text);
  font-size: 19px;
}

.mwd-detail-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mwd-detail-services article,
.mwd-contact-card,
.mwd-google-card,
.mwd-review-card,
.mwd-detail-faqs details {
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
}

.mwd-detail-services article {
  min-height: 220px;
  padding: 26px;
}

.mwd-detail-services article > span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mwd-blue-soft);
  color: var(--mwd-primary);
}

.mwd-detail-services h3 {
  margin: 0 0 10px;
  color: var(--mwd-text);
  font-size: 20px;
}

.mwd-detail-services p {
  color: var(--mwd-muted);
  line-height: 1.55;
}

.mwd-detail-services strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mwd-teal);
  font-size: 14px;
}

.mwd-detail-map {
  min-height: 320px;
  display: flex;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background:
    linear-gradient(rgba(227, 242, 253, .18), rgba(227, 242, 253, .18)),
    url("/assets/img/hero-section/miami-water-damage-restoration-hero.png") center/cover;
}

.mwd-detail-map div {
  padding: 16px 18px;
  border: 1px solid var(--mwd-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
}

.mwd-detail-map strong,
.mwd-detail-map span {
  display: block;
}

.mwd-detail-faqs {
  display: grid;
  gap: 12px;
}

.mwd-detail-faqs details {
  padding: 18px 20px;
}

.mwd-detail-faqs summary {
  color: var(--mwd-primary);
  font-weight: 900;
  cursor: pointer;
}

.mwd-detail-faqs p {
  margin: 14px 0 0;
  color: var(--mwd-muted);
}

.mwd-google-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mwd-google-signals > div {
  padding: 18px;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
}

.mwd-google-signals strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mwd-primary);
  font-size: 15px;
  font-weight: 900;
}

.mwd-google-signals p {
  margin: 0 0 12px;
  color: var(--mwd-text);
  font-weight: 800;
}

.mwd-google-signals ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--mwd-muted);
  font-size: 14px;
}

.mwd-google-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mwd-google-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(26, 155, 212, .10);
  color: var(--mwd-secondary-dark);
  font-size: 12px;
  font-weight: 900;
}

.mwd-detail-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mwd-contact-card,
.mwd-google-card,
.mwd-review-card {
  padding: 26px;
}

.mwd-google-card {
  border-color: rgba(0, 48, 135, .24);
  background:
    linear-gradient(180deg, rgba(228, 245, 253, .92), #fff 42%);
}

.mwd-google-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--mwd-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-google-card__score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mwd-google-card__score strong {
  color: var(--mwd-primary);
  font-size: 38px;
  line-height: 1;
}

.mwd-google-card__score span {
  color: var(--mwd-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-google-card__facts {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.mwd-google-card__facts span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mwd-text);
  font-size: 14px;
  font-weight: 800;
}

.mwd-google-card__facts i {
  color: var(--mwd-secondary-dark);
}

.mwd-google-card > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  border-radius: 6px;
  background: var(--mwd-primary);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.mwd-contact-card h2 {
  margin: 0 0 22px;
  color: var(--mwd-text);
  font-size: 26px;
}

.mwd-contact-card dl {
  display: grid;
  gap: 18px;
  margin: 0 0 24px;
}

.mwd-contact-card dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mwd-text);
  font-size: 14px;
  font-weight: 900;
}

.mwd-contact-card dt i {
  color: var(--mwd-secondary-dark);
}

.mwd-contact-card dd {
  margin: 4px 0 0 27px;
  color: var(--mwd-muted);
  line-height: 1.45;
}

.mwd-contact-card dd.urgent {
  color: var(--mwd-red);
  font-weight: 900;
}

.mwd-contact-card .mwd-btn {
  width: 100%;
}

.mwd-contact-card .mwd-claim-link {
  display: block;
  margin-top: 16px;
  text-align: center;
}

.mwd-review-card div {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.mwd-review-card p {
  color: var(--mwd-text);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
}

.mwd-review-card strong {
  color: var(--mwd-text);
}

/* 2026 Emergency Dispatch Marketplace refresh. */
.mwd-btn--blue {
  padding: 0 22px;
  background: var(--mwd-blue);
  border-color: var(--mwd-blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(26, 155, 212, .20);
}

.mwd-hero--dispatch {
  min-height: 640px;
  padding: 64px 0 50px;
  place-items: stretch;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(2, 12, 28, .95) 0%, rgba(0, 48, 135, .82) 48%, rgba(2, 12, 28, .78) 100%),
    url("/assets/img/hero-section/miami-water-damage-restoration-hero.png") center/cover;
}

.mwd-hero--dispatch .mwd-hero__media {
  background:
    radial-gradient(circle at 82% 20%, rgba(26, 155, 212, .28), transparent 30%),
    linear-gradient(115deg, rgba(0, 0, 0, .12), rgba(255, 255, 255, .04));
  opacity: 1;
}

.mwd-hero--dispatch h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(44px, 5.6vw, 74px);
  line-height: .98;
  font-weight: 900;
}

.mwd-hero--dispatch p {
  max-width: 660px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .92);
  font-size: 21px;
}

.mwd-hero--dispatch .mwd-command-copy {
  padding-top: 12px;
}

.mwd-hero--dispatch .mwd-proof-strip {
  max-width: 760px;
  background: rgba(2, 12, 28, .46);
  border-color: rgba(255, 255, 255, .20);
}

.mwd-hero--dispatch .mwd-dispatch-panel {
  position: relative;
  border: 0;
  background: #fff;
  color: var(--mwd-text);
}

.mwd-hero--dispatch .mwd-dispatch-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--mwd-red), var(--mwd-blue));
}

.mwd-dispatch-fields {
  display: grid;
  gap: 13px;
}

.mwd-dispatch-fields label {
  display: grid;
  gap: 8px;
}

.mwd-inline-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.mwd-inline-head h2 {
  margin: 0;
}

.mwd-inline-head a {
  color: var(--mwd-primary);
  font-weight: 900;
  text-decoration: none;
}

.mwd-band--services {
  margin-top: -1px;
  padding: 34px 0;
  background: #fff;
}

.mwd-service-card {
  min-height: 148px;
  border-top: 4px solid var(--mwd-blue);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mwd-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 48, 135, .38);
  box-shadow: 0 18px 34px rgba(0, 48, 135, .10);
}

.mwd-crew-board {
  display: grid;
  gap: 14px;
}

.mwd-crew-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--mwd-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 48, 135, .05);
}

.mwd-crew-row--featured {
  border-color: rgba(232, 39, 10, .42);
  box-shadow: 0 18px 34px rgba(232, 39, 10, .10);
}

.mwd-crew-row__media {
  position: relative;
  min-height: 220px;
  display: block;
  overflow: hidden;
  background: var(--mwd-dark);
}

.mwd-crew-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwd-crew-row__media span {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--mwd-red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mwd-crew-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.mwd-crew-row__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 5px;
  background: #f0f6fb;
  color: var(--mwd-primary);
  font-size: 12px;
  font-weight: 900;
}

.mwd-crew-row__meta .fa-star {
  color: var(--mwd-gold);
}

.mwd-location-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mwd-location-grid a {
  min-height: 70px;
  flex-direction: column;
  gap: 3px;
}

.mwd-location-grid strong,
.mwd-location-grid span {
  display: block;
}

.mwd-location-grid span {
  color: var(--mwd-muted);
  font-size: 12px;
  font-weight: 700;
}

.mwd-directory-command {
  padding: 46px 0 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 14, 31, .96), rgba(0, 48, 135, .88)),
    url("/assets/img/hero-section/miami-water-damage-restoration-hero.png") center/cover;
}

.mwd-directory-command__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: 28px;
  align-items: end;
}

.mwd-directory-command h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.mwd-directory-command p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.mwd-directory-command__search {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.mwd-directory-command__search input,
.mwd-directory-command__search select {
  min-height: 52px;
  padding: 0 13px;
  border: 1px solid #cbd3df;
  border-radius: 6px;
  background: #f8fafc;
  color: var(--mwd-text);
  font-weight: 800;
}

.mwd-directory__head h2 {
  margin: 0 0 8px;
  color: var(--mwd-primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}

.mwd-directory-list {
  display: grid;
  gap: 16px;
}

.mwd-directory-list .mwd-directory-card {
  min-height: 0;
  padding: 22px;
}

.mwd-directory-list .mwd-directory-card__top {
  align-items: flex-start;
}

.mwd-directory-list .mwd-directory-card__chips {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mwd-directory-list .mwd-directory-card__actions {
  grid-template-columns: minmax(150px, .75fr) minmax(150px, .75fr) minmax(120px, 1fr);
}

.mwd-directory-list .mwd-directory-card__actions .mwd-claim-link {
  grid-column: auto;
  justify-self: end;
}

.mwd-detail-hero {
  background:
    linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}

.mwd-detail-actions {
  flex-direction: row;
  flex-wrap: wrap;
}

.mwd-detail-actions .mwd-btn {
  min-height: 58px;
  padding: 0 24px;
  font-size: 15px;
}

.mwd-detail-command {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
}

.mwd-detail-command span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #d7e0eb;
  border-radius: 6px;
  background: #fff;
  color: var(--mwd-primary);
  font-size: 12px;
  font-weight: 900;
}

.mwd-detail-command i {
  color: var(--mwd-red);
}

.mwd-contact-card {
  border-top: 5px solid var(--mwd-red);
  box-shadow: 0 18px 34px rgba(0, 48, 135, .08);
}

.mwd-contact-card .mwd-btn + .mwd-btn {
  margin-top: 10px;
}

.mwd-mobile-cta {
  display: none;
}

.mwd-directory .pagination {
  gap: 6px;
  margin-top: 30px;
}

.mwd-directory .pagination .page-link,
.mwd-directory .pagination a,
.mwd-directory .pagination span {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--mwd-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.mwd-directory .pagination svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  stroke-width: 2;
}

.btn-primary,
.btn.btn-primary,
.claim-btn {
  background: var(--mwd-secondary) !important;
  border-color: var(--mwd-secondary) !important;
  color: #fff !important;
}

.go-top {
  background: var(--mwd-secondary);
}

@media (max-width: 991px) {
  .mwd-container {
    width: min(100% - 32px, 1200px);
  }

  .mwd-header__inner {
    min-height: 64px;
  }

  .mwd-nav {
    display: none;
  }

  .mwd-brand {
    font-size: 21px;
  }

  .mwd-emergency-link {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .mwd-search,
  .mwd-command-grid,
  .mwd-section-head,
  .mwd-inline-head {
    flex-direction: column;
    align-items: stretch;
  }

  .mwd-command-grid {
    grid-template-columns: 1fr;
  }

  .mwd-hero--command,
  .mwd-hero--dispatch {
    min-height: auto;
    padding: 46px 0 96px;
  }

  .mwd-hero--command h1,
  .mwd-hero--dispatch h1 {
    font-size: 40px;
  }

  .mwd-proof-strip {
    grid-template-columns: 1fr;
  }

  .mwd-proof-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .mwd-proof-strip span:last-child {
    border-bottom: 0;
  }

  .mwd-service-row,
  .mwd-feature-grid,
  .mwd-location-grid,
  .mwd-pricing-grid,
  .mwd-partner-box > div,
  .mwd-footer__inner,
  .mwd-directory__wrap,
  .mwd-directory-grid,
  .mwd-directory-command__inner,
  .mwd-directory-command__search,
  .mwd-crew-row,
  .mwd-detail-command,
  .mwd-intel-panel,
  .mwd-article-grid {
    grid-template-columns: 1fr;
  }

  .mwd-filter-panel,
  .mwd-density-map {
    position: static;
  }

  .mwd-directory__wrap,
  .mwd-directory__results,
  .mwd-filter-panel,
  .mwd-detail-body__grid,
  .mwd-detail-main,
  .mwd-detail-sidebar,
  .mwd-detail-intel,
  .mwd-intel-panel,
  .mwd-comparison-table {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .mwd-density-map {
    min-height: 300px;
  }

  .mwd-directory__head,
  .mwd-directory-card__actions,
  .mwd-directory-card__chips {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .mwd-detail-hero__grid,
  .mwd-detail-body__grid,
  .mwd-detail-services,
  .mwd-google-signals,
  .mwd-local-hero__grid,
  .mwd-local-service-grid,
  .mwd-local-facts {
    grid-template-columns: 1fr;
  }

  .mwd-local-facts span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .mwd-local-facts span:last-child {
    border-bottom: 0;
  }

  .mwd-detail-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .mwd-detail-gallery__main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .mwd-detail-tabs {
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mwd-detail-tabs a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .mwd-detail-actions .mwd-btn {
    width: 100%;
    font-size: 16px;
  }

  .mwd-directory-list .mwd-directory-card__chips,
  .mwd-directory-list .mwd-directory-card__actions {
    grid-template-columns: 1fr;
  }

  .mwd-directory-list .mwd-directory-card__actions .mwd-claim-link {
    justify-self: start;
  }

  .mwd-directory .pagination {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .mwd-directory .pagination .page-item,
  .mwd-directory .pagination .page-link,
  .mwd-directory .pagination a,
  .mwd-directory .pagination span {
    flex: 0 0 auto;
  }

  .mwd-subhero__grid,
  .mwd-auth-grid,
  .mwd-contact-grid,
  .mwd-blog-grid,
  .mwd-form-grid {
    grid-template-columns: 1fr;
  }

  .mwd-subhero,
  .mwd-auth-shell {
    padding: 46px 0 58px;
  }

  .mwd-subhero h1,
  .mwd-auth-copy h1 {
    font-size: 38px;
  }

  .mwd-subhero__actions,
  .mwd-social-login {
    flex-direction: column;
  }

  .mwd-article__media {
    aspect-ratio: 16 / 10;
  }

  .mwd-article__body {
    padding: 24px;
  }

  .mwd-article__tools .mwd-btn {
    width: 100%;
  }

  .mwd-crew-row__media {
    min-height: 210px;
  }

  .mwd-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1050;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 10px;
    background: rgba(2, 12, 28, .94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
  }

  .mwd-mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mwd-mobile-cta a:first-child {
    background: var(--mwd-red);
  }

  .mwd-mobile-cta a:last-child {
    background: var(--mwd-blue);
  }

  .mwd-detail-sidebar {
    position: static;
  }

  .mwd-pro-card,
  .mwd-pro-card--wide {
    flex-direction: column;
  }

  .mwd-pro-card__image {
    width: 100%;
    min-height: 240px;
  }

  .mwd-card-actions {
    grid-template-columns: 1fr;
  }

  .mwd-footer__inner {
    padding: 36px 0;
    text-align: center;
  }

  .mwd-footer p {
    text-align: center;
  }
}
