@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* ============================================================
   GetMoldRemovalService.com — Design System v2
   ============================================================ */

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

:root {
  /* ── Design System ── */
  --bg-page:          #F0F4F8;
  --bg-dark:          #1C3D5A;
  --color-mid:        #2E86AB;
  --color-alert:      #E63946;
  --color-text:       #1A1A1A;
  --color-text-muted: #4A5568;
  --color-border:     #CBD5E0;
  --bg-card:          #FFFFFF;

  /* ── Legacy aliases (keep existing classes working) ── */
  --navy:        #1C3D5A;
  --navy-mid:    #2E86AB;
  --navy-light:  #2a6080;
  --orange:      #E63946;
  --orange-dark: #c72030;
  --green:       #16a34a;
  --green-light: #dcfce7;
  --bg:          #F0F4F8;
  --bg-alt:      #E4ECF3;
  --text:        #1A1A1A;
  --muted:       #4A5568;
  --border:      #CBD5E0;
  --white:       #FFFFFF;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --radius:      6px;
  --radius-lg:   10px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --font:         'Open Sans', sans-serif;
  --transition:  .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--bg-page);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--bg-dark); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--bg-dark);
}
h1 { font-size: 2.3rem; font-weight: 700; margin-bottom: 1rem; }
h2 {
  font-size: 1.55rem; font-weight: 700;
  margin: 2rem 0 .85rem;
  padding-bottom: .3rem;
  border-bottom: 2px solid var(--color-mid);
}
h3 {
  font-size: 1.1rem; font-weight: 600;
  color: var(--color-mid);
  margin: 1.75rem 0 .6rem;
}
h4 { font-size: 1rem; font-weight: 600; margin: 1rem 0 .4rem; }
p  { margin-bottom: 1rem; }
ul, ol { padding-left: 1.6rem; margin-bottom: 1rem; }
li { margin-bottom: .45rem; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ── Layout ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 1.25rem; }
.container--wide   { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Top Bar ── */
.top-bar {
  background: var(--color-mid);
  color: #fff;
  text-align: center;
  padding: .4rem 1rem;
  font-family: var(--font-body);
  font-size: .85rem;
  line-height: 1.4;
}
.top-bar p, .top-bar span { margin: 0; display: inline; }
.top-bar .container { display: block; }
.top-bar a { color: #fff; }
.top-bar-badge { display: none; } /* legacy — hidden by default */

/* ── Header ── */
.site-header {
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}
.logo:hover { color: #fff; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--color-mid);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.logo-text, .logo-text span { color: #fff; }

/* ── Primary Nav ── */
.primary-nav { display: flex; align-items: center; margin-left: auto; }
.nav-list {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0; gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: #A0BCCC;
  padding: .55rem .65rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.nav-link:hover,
.nav-item.active > .nav-link { color: #fff; border-bottom-color: var(--color-mid); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px); left: 0;
  min-width: 215px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  list-style: none; padding: .35rem 0; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  z-index: 500;
}
.nav-item:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li a {
  display: block; padding: .45rem 1rem;
  font-family: var(--font-body); font-size: .84rem;
  color: var(--color-text); white-space: nowrap;
  transition: background .12s, color .12s; text-decoration: none;
}
.nav-dropdown li:first-child a {
  font-weight: 700; color: var(--bg-dark);
  border-bottom: 1px solid var(--color-border); margin-bottom: .2rem;
}
.nav-dropdown li a:hover { background: var(--bg-page); color: var(--color-mid); }

/* Hamburger / Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: .4rem; border: none; background: none; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) { .nav-link { font-size: .8rem; padding: .55rem .5rem; } }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow-md); z-index: 400;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .primary-nav.is-open { display: flex; flex-direction: column; }
  .nav-list { flex-direction: column; width: 100%; padding: .5rem 0; }
  .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-link { padding: .9rem 1.25rem; width: 100%; border-bottom: none; color: #A0BCCC; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: rgba(0,0,0,.2); padding: 0; min-width: unset; display: none;
  }
  .nav-item.is-open > .nav-dropdown { display: block; }
  .nav-dropdown li a { padding: .7rem 2rem; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.75); }
  .nav-dropdown li:first-child a { border-bottom: 1px solid rgba(255,255,255,.1); color: #fff; }
  .nav-dropdown li a:hover { background: rgba(255,255,255,.1); color: #fff; }
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .3rem; font-family: var(--font-body); font-size: .8rem; margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.72); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb-sep { color: rgba(255,255,255,.35); font-size: .72rem; }
.breadcrumb-current { color: rgba(255,255,255,.92); font-weight: 500; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e5f82 100%);
  padding: 3rem 0 2rem;
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: 2.3rem; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.85); font-size: 1rem; margin: 0; max-width: 600px; }
.page-hero .breadcrumb a   { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb     { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,.35); }
.page-hero .breadcrumb .breadcrumb-current { color: rgba(255,255,255,.9); }

/* ── Article Layout ── */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0 3rem;
}
.article-content { font-family: var(--font-body); min-width: 0; }
.article-content h1 { font-size: 2.3rem; }
.article-content h2 {
  font-size: 1.55rem; font-weight: 700;
  color: var(--bg-dark);
  margin: 2rem 0 .85rem;
  padding-bottom: .3rem;
  border-bottom: 2px solid var(--color-mid);
}
.article-content h3 {
  font-size: 1.1rem; font-weight: 600;
  color: var(--color-mid);
  margin: 1.75rem 0 .6rem;
  border: none; padding: 0;
}
.article-content p  { font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.article-content ul,
.article-content ol { padding-left: 1.6rem; margin-bottom: 1rem; }
.article-content li { margin-bottom: .45rem; }

/* ── Medical Disclaimer ── */
.disclaimer {
  background: #FFF5F5;
  border: 1px solid var(--color-alert);
  border-radius: 4px;
  padding: .6rem 1rem;
  font-family: var(--font-body);
  font-size: .85rem;
  color: #742A2A;
  margin-bottom: 1.5rem;
}

/* ── Health Warning Box ── */
.health-warning {
  background: #FFF5F5;
  border: 1px solid var(--color-alert);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.health-warning-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  color: var(--color-alert);
  margin-bottom: .4rem;
  letter-spacing: .05em;
}
.health-warning p {
  font-family: var(--font-body);
  font-size: .875rem;
  color: #742A2A;
  margin: 0;
}

/* ── Info Box (Expert Tip) ── */
.info-box {
  background: #EBF8FF;
  border-left: 4px solid var(--color-mid);
  border-radius: 0 6px 6px 0;
  padding: .9rem 1.1rem;
  margin: 1.5rem 0;
}
.info-box-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: .4rem;
  letter-spacing: .05em;
}
.info-box p {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--color-text);
  margin: 0;
}

/* ── CTA Box (inline article) ── */
.cta-box {
  background: var(--bg-dark);
  color: #fff;
  padding: 1.75rem;
  border-radius: 6px;
  margin: 2rem 0;
  text-align: center;
}
.cta-box h3 {
  font-family: var(--font-heading); font-weight: 700;
  color: #fff; font-size: 1.3rem;
  margin: 0 0 .6rem; border: none; padding: 0;
}
.cta-box p { color: rgba(255,255,255,.85); margin-bottom: 1.25rem; font-family: var(--font-body); }
.cta-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--color-alert); color: #fff;
  padding: .7rem 1.5rem; border-radius: 4px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.cta-btn:hover { background: #c72030; color: #fff; transform: translateY(-1px); }

/* ── Sidebar ── */
.article-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1.25rem;
}
.sidebar-card h4 {
  font-family: var(--font-heading); font-size: .875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--color-text-muted);
  margin: 0 0 1rem; padding-bottom: .6rem;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card ul li { margin: 0; }
.sidebar-card ul li a {
  display: block; padding: .45rem 0;
  font-family: var(--font-body); font-size: .875rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition), padding var(--transition); text-decoration: none;
}
.sidebar-card ul li:last-child a { border-bottom: none; }
.sidebar-card ul li a:hover { color: var(--color-mid); padding-left: .35rem; }

.sidebar-cta {
  background: var(--bg-dark); border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center; margin-bottom: 1.25rem;
}
.sidebar-cta h4 {
  color: #fff; font-size: 1rem; margin: 0 0 .5rem;
  border: none; padding: 0; letter-spacing: 0; text-transform: none;
}
.sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; }

/* ── Tables ── */
table {
  width: 100%; border-collapse: collapse;
  margin: 1.75rem 0; font-family: var(--font-body);
  font-size: .95rem; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--color-border);
}
th {
  background: var(--bg-dark); color: #fff;
  padding: .8rem 1rem; text-align: left;
  font-family: var(--font-heading); font-weight: 600; font-size: .88rem;
}
td { padding: .7rem 1rem; border-bottom: 1px solid var(--color-border); }
tr:nth-child(even) td { background: #F7FAFC; }
tr:nth-child(odd)  td { background: #fff; }
tr:last-child td   { border-bottom: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--color-alert); color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,.3);
}
.btn-primary:hover { background: #c72030; color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn-light { background: #fff; color: var(--bg-dark); }
.btn-light:hover { background: var(--bg-page); color: var(--bg-dark); transform: translateY(-1px); }

/* ── Sections ── */
.section { padding: 4rem 0; }
.section--alt  { background: var(--bg-page); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2  { border: none; padding: 0; margin: 0 0 .75rem; }
.section--dark .section-header h2 { color: #fff; border: none; }
.section-header p   { color: var(--color-text-muted); margin: 0; }
.section--dark .section-header p { color: rgba(255,255,255,.7); }
.section-eyebrow {
  display: inline-block; font-family: var(--font-heading);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-alert); margin-bottom: .6rem;
}

/* ── CTA Banner (bottom of page) ── */
.cta-banner {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem; text-align: center;
}
.cta-banner h2 { color: #fff; border: none; padding: 0; margin: 0 0 1rem; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Hero (homepage) ── */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e6180 100%);
  color: #fff; padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: .35rem .9rem;
  font-size: .82rem; font-weight: 600; color: #fbbf24; margin-bottom: 1.25rem;
}
.hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 2.75rem); margin-bottom: 1.25rem; line-height: 1.15; }
.hero h1 span { color: #fbbf24; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; line-height: 1.7; }
.hero-trust { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: rgba(255,255,255,.8); }
.hero-trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Lead Form */
.lead-form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.lead-form-card h3 { font-size: 1.35rem; color: var(--bg-dark); margin: 0 0 .5rem; border: none; padding: 0; }
.lead-form-card p  { font-size: .88rem; color: var(--color-text-muted); margin-bottom: 1.25rem; }
.form-group { margin-bottom: .9rem; }
.form-group label {
  display: block; font-family: var(--font-body); font-size: .82rem;
  font-weight: 600; color: var(--color-text); margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .7rem .9rem; font-size: .95rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--color-border); border-radius: var(--radius);
  color: var(--color-text); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-mid);
  box-shadow: 0 0 0 3px rgba(46,134,171,.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-submit {
  width: 100%; background: var(--color-alert); color: #fff;
  font-size: 1.05rem; font-weight: 700; font-family: var(--font-body);
  padding: .9rem 1.5rem; border: none; border-radius: var(--radius);
  cursor: pointer; transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(230,57,70,.3); margin-top: .25rem;
}
.form-submit:hover { background: #c72030; transform: translateY(-1px); }
.form-privacy { font-size: .76rem; color: var(--color-text-muted); text-align: center; margin-top: .6rem; }

/* ── Trust Bar ── */
.trust-bar { background: var(--bg-dark); padding: 2rem 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.trust-stat { padding: .5rem 1rem; border-right: 1px solid rgba(255,255,255,.12); }
.trust-stat:last-child { border-right: none; }
.trust-stat-num {
  font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700;
  color: #fbbf24; line-height: 1; margin-bottom: .25rem;
}
.trust-stat-label { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-mid); }
.service-icon {
  width: 52px; height: 52px; background: var(--bg-dark);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.1rem; flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; fill: #fff; }
.service-card h3 { font-size: 1.05rem; color: var(--bg-dark); margin: 0 0 .6rem; border: none; padding: 0; }
.service-card p  { font-size: .9rem; color: var(--color-text-muted); flex: 1; margin: 0 0 1rem; }
.service-link { font-size: .88rem; font-weight: 700; color: var(--color-mid); display: inline-flex; align-items: center; gap: .3rem; }
.service-link:hover { color: var(--bg-dark); }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px; background: linear-gradient(90deg, var(--color-border), var(--color-mid), var(--color-border));
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px; background: var(--bg-dark); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 1.25rem;
  border: 4px solid #fff; box-shadow: 0 0 0 3px var(--bg-dark);
  position: relative; z-index: 1;
}
.step-item h3 { font-size: 1.05rem; color: #fff; margin: 0 0 .5rem; border: none; padding: 0; }
.step-item p  { font-size: .9rem; color: rgba(255,255,255,.75); margin: 0; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; fill: #fbbf24; }
.feature-content h4 { font-size: 1rem; color: #fff; margin: 0 0 .35rem; }
.feature-content p  { font-size: .9rem; color: rgba(255,255,255,.75); margin: 0; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-text { font-size: .95rem; color: var(--color-text); font-style: italic; margin-bottom: 1.1rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-dark); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: .9rem; color: #fff; flex-shrink: 0;
}
.testimonial-name     { font-weight: 700; font-size: .9rem; color: var(--bg-dark); }
.testimonial-location { font-size: .78rem; color: var(--color-text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: var(--bg-card); border: none;
  padding: 1.1rem 1.4rem; font-family: var(--font-body); font-size: 1rem;
  font-weight: 600; color: var(--bg-dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-page); }
.faq-question.open  { background: var(--bg-dark); color: #fff; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: var(--bg-page); }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner { padding: 1.1rem 1.4rem; font-size: .95rem; color: var(--color-text-muted); line-height: 1.75; }

/* ── Cities Grid ── */
.cities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; }
.city-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: .75rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.85);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}
.city-card:hover { background: rgba(230,57,70,.15); border-color: var(--color-alert); color: #fff; }
.city-card svg { width: 14px; height: 14px; fill: var(--color-alert); flex-shrink: 0; }

/* ── Callout Boxes ── */
.callout { padding: 1.1rem 1.4rem; border-radius: var(--radius); margin: 1.5rem 0; border-left: 4px solid; }
.callout-info    { background: #EBF8FF; border-color: var(--color-mid); color: #1e3a5f; }
.callout-warning { background: #fffbeb; border-color: #f59e0b; color: #713f12; }
.callout-danger  { background: #FFF5F5; border-color: var(--color-alert); color: #742A2A; }
.callout-success { background: var(--green-light); border-color: var(--green); color: #14532d; }
.callout p:last-child { margin: 0; }

/* Disclosure (legacy) */
.disclosure {
  background: #FFF5F5; border-left: 4px solid var(--color-alert);
  padding: .6rem 1.25rem; font-size: .82rem; color: #742A2A;
  margin-bottom: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-dark);
  color: #7A9BB5;
  font-family: var(--font-body);
  font-size: .85rem;
  padding: 1.75rem 1.5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  max-width: 1140px;
  margin: 0 auto;
}
.footer-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: .9rem;
}
.footer-logo-icon {
  width: 32px; height: 32px; background: var(--color-mid);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 18px; height: 18px; fill: #fff; }
.footer-about { font-size: .85rem; line-height: 1.7; color: #7A9BB5; margin-bottom: 1rem; }
.footer-col h5 {
  font-family: var(--font-heading); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #fff; margin-bottom: .9rem; padding-bottom: .4rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col--split { text-align: center; }
.footer-col--split ul { columns: 2; column-gap: 1.25rem; text-align: left; }
.footer-col--split ul li { break-inside: avoid; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a { font-size: .85rem; color: #7A9BB5; transition: color var(--transition); text-decoration: none; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding: 1rem 0 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
  max-width: 1140px; margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer {
  font-size: .8rem; color: rgba(255,255,255,.35);
  text-align: center;
  padding: .5rem 0 1rem;
  max-width: 1140px; margin: 0 auto;
  display: block;
}

/* ── Related Guides ── */
.related-guides {
  padding: 2.5rem 0;
  background: var(--bg-page);
  border-top: 1px solid var(--color-border);
}
.related-guides-title {
  font-family: var(--font-heading); font-size: 1.25rem; color: var(--bg-dark);
  margin-bottom: 1.25rem; border: none; padding: 0;
}
.related-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.related-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1rem 1.25rem; color: var(--color-text);
  text-decoration: none; transition: box-shadow .2s, transform .2s, border-color .2s;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--color-mid); color: var(--color-text); }
.related-card-title { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--bg-dark); line-height: 1.3; margin-bottom: .4rem; }
.related-card-desc  { font-size: .82rem; color: var(--color-text-muted); line-height: 1.5; }

/* ── Prev / Next ── */
.prevnext-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; margin-top: 1.5rem;
  border-top: 1px solid var(--color-border); gap: 1rem; flex-wrap: wrap;
}
.prevnext-nav a {
  font-family: var(--font-body); font-size: .88rem; font-weight: 600;
  color: var(--color-mid); padding: .5rem .9rem;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  transition: background .18s, color .18s, border-color .18s;
  max-width: 48%; line-height: 1.3; text-decoration: none;
}
.prevnext-nav a:hover { background: var(--bg-page); color: var(--bg-dark); border-color: var(--color-mid); }
.prevnext-prev { margin-right: auto; }
.prevnext-next { margin-left: auto; text-align: right; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-muted  { color: var(--color-text-muted); }
.text-orange { color: var(--color-alert); }
.text-white  { color: #fff; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.fw-bold { font-weight: 700; }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeUp .5s ease forwards; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid     { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar-grid    { grid-template-columns: repeat(2,1fr); }
  .trust-stat:nth-child(2) { border-right: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cities-grid  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .hero         { padding: 3rem 0; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .steps-grid   { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .cta-group    { flex-direction: column; align-items: center; }
  .related-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1, .page-hero h1, .article-content h1 { font-size: 1.7rem; }
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr; }
  .cities-grid  { grid-template-columns: repeat(2,1fr); }
  .top-bar      { text-align: center; }
  .container    { padding: 0 1rem; }
}
