/* ============================================================
   page-support.css — Restoration Hub FL
   Loads on: /how-it-works/, /service-areas/, /about/,
             /contact/, /how-we-vet-contractors/,
             /privacy-policy/, /terms-of-service/,
             /our-experts/, /reviews/, /florida-mold-regulations/
   Requires: /css/global.css loaded first
   Last updated: 2025-07-01
   ============================================================ */


/* ============================================================
   CSS VARIABLE FALLBACKS
   Mirrors global.css in case load order fails.
   ============================================================ */
:root {
  --teal:           #0F6E56;
  --teal-mid:       #1D9E75;
  --teal-light:     #E1F5EE;
  --teal-pale:      #F2FBF7;
  --blue-link:      #185FA5;
  --blue-light:     #E6F1FB;
  --amber:          #BA7517;
  --amber-light:    #FAEEDA;
  --text:           #1A1A1A;
  --text-mid:       #4A4A4A;
  --text-muted:     #737373;
  --border:         rgba(0, 0, 0, 0.10);
  --border-mid:     rgba(0, 0, 0, 0.16);
  --bg:             #FFFFFF;
  --bg-surface:     #F7F8F6;
  --bg-dark:        #0D1F1A;
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w:          1100px;
  --nav-h:          64px;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
}


/* ============================================================
   BASE RESET (mirrors page-city.css for standalone safety)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}


/* ============================================================
   NAVIGATION
   Identical to page-city.css nav block.
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-right: auto;
  white-space: nowrap;
}

.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 20px 0 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.14s, background 0.14s;
  white-space: nowrap;
}

.nav-link:hover  { color: var(--teal); background: var(--teal-pale); }
.nav-link.active { color: var(--teal); font-weight: 600; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 18px;
  height: 40px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--teal-mid); color: #fff; }

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
  margin-left: 8px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.is-open  { display: flex; }
  .nav-link           { padding: 10px 12px; font-size: 1rem; }
  .nav-mobile-btn     { display: flex; }
  .nav-cta            { font-size: 0.8125rem; padding: 0 14px; height: 36px; }
}


/* ============================================================
   HERO
   Dark background matching city-hero tone.
   Simpler than city-hero: breadcrumb + H1 + sub only.
   Contact page variant adds the phone block inside.
   ============================================================ */
.support-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}

.support-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 110%, rgba(29, 158, 117, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse 45% 70% at -5% 30%,  rgba(15, 110, 86, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.support-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumb inside dark hero — mirrors city-hero treatment */
.support-hero .breadcrumb {
  margin-bottom: 20px;
  border-bottom-color: rgba(255,255,255,0.10);
}

.support-hero .breadcrumb a,
.support-hero .breadcrumb span {
  color: rgba(255,255,255,0.50);
  font-size: 0.8125rem;
}

.support-hero .breadcrumb a:hover {
  color: var(--teal-mid);
}

.support-hero .breadcrumb .sep {
  margin: 0 6px;
  color: rgba(255,255,255,0.22);
}

.support-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  max-width: 660px;
  margin: 0 0 14px;
}

.support-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0;
  line-height: 1.65;
}

/* Contact page variant — phone CTA appears inside the hero */
.support-hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.support-hero-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .support-hero           { padding: 44px 20px 44px; }
  .support-hero h1        { font-size: 1.6875rem; }
  .support-hero-sub       { font-size: 1rem; }
  .support-hero-cta       { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   PRIMARY CALL BUTTON
   Identical to btn-hero-call in page-city.css.
   Defined here so support pages don't depend on page-city.css.
   ============================================================ */
.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-mid);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0 28px;
  height: 56px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.16s, transform 0.12s;
  white-space: nowrap;
  line-height: 1;
  border: none;
  cursor: pointer;
}

.btn-hero-call:hover {
  background: #19b887;
  transform: translateY(-1px);
  color: #fff;
}

.btn-hero-call svg { flex-shrink: 0; }


/* ============================================================
   PAGE BODY — full-width single column, no sidebar
   ============================================================ */
.support-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px 72px;
}

/* Individual content section — separator rhythm matches city pages */
.support-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.support-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.support-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4375rem, 3vw, 1.875rem);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.25;
}

.support-section h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--text);
  margin: 28px 0 10px;
  line-height: 1.3;
}

.support-section h3:first-child { margin-top: 0; }

.support-section p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-mid);
  margin: 0 0 18px;
  max-width: 72ch;
}

.support-section p:last-child { margin-bottom: 0; }

/* Inline links within support prose */
.support-section a {
  color: var(--blue-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-section a:hover { color: var(--teal); }


/* ============================================================
   NUMBERED STEPS
   Used on /how-it-works/ and /how-we-vet-contractors/.
   Vertical list: circle number + bold label + paragraph.
   ============================================================ */
.support-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  position: relative;
}

/* Vertical connector line running through all steps */
.support-steps::before {
  content: '';
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 16px;
  width: 2px;
  background: var(--teal-light);
  z-index: 0;
}

.support-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 0 0 28px;
  position: relative;
  z-index: 1;
}

.support-step:last-child { padding-bottom: 0; }

.support-step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--teal-light);
  margin-top: 0;
}

.support-step-body {
  padding-top: 4px;
  flex: 1;
}

.support-step-body strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}

.support-step-body p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.support-step-body a {
  color: var(--blue-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================================
   INFO CARDS
   3-column grid on desktop. Icon + heading + prose.
   Used on /how-it-works/ and /about/.
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.info-card h3 {
  font-family: var(--font-body) !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.info-card p {
  font-size: 0.875rem !important;
  line-height: 1.65 !important;
  color: var(--text-mid) !important;
  margin: 0 !important;
  max-width: none !important;
}

@media (max-width: 760px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .info-cards { grid-template-columns: 1fr; }
}


/* ============================================================
   SERVICE AREA GRID
   Used on /service-areas/.
   Grouped by service type. Each group has a heading + card grid.
   ============================================================ */
.service-area-group {
  margin-bottom: 40px;
}

.service-area-group:last-child { margin-bottom: 0; }

.service-area-group-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--teal);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Short teal rule beside group heading */
.service-area-group-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--teal-light);
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.service-area-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: border-color 0.14s, background 0.14s, color 0.14s;
  line-height: 1.3;
}

.service-area-card:hover {
  border-color: var(--teal-mid);
  background: var(--teal-pale);
  color: var(--teal);
}

.service-area-card svg {
  flex-shrink: 0;
  color: var(--teal-mid);
  opacity: 0.55;
  transition: opacity 0.14s;
}

.service-area-card:hover svg { opacity: 1; }

/* Coverage note that appears below the grid */
.service-area-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-width: none;
}

.service-area-note strong { color: var(--text-mid); }

@media (max-width: 560px) {
  .service-area-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
  .service-area-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   CONTACT PHONE BLOCK
   Large centered treatment on /contact/.
   Primary action on the page — phone number prominent.
   ============================================================ */
.contact-phone-block {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-phone-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(29, 158, 117, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.contact-phone-block-inner {
  position: relative;
  z-index: 1;
}

.contact-phone-block .contact-avail {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--teal-mid);
  margin-bottom: 12px;
  display: block;
}

.contact-phone-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.contact-phone-block p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 24px;
  line-height: 1.55;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-phone-block .btn-hero-call {
  font-size: 1.125rem;
  height: 60px;
  padding: 0 40px;
}

.contact-phone-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  line-height: 1.45;
}

/* Email contact — secondary, appears below phone block */
.contact-email-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 16px;
}

.contact-email-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.contact-email-body {
  flex: 1;
}

.contact-email-body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.contact-email-body a {
  font-size: 0.9375rem;
  color: var(--blue-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.contact-email-body a:hover { color: var(--teal); }

.contact-email-body span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 560px) {
  .contact-phone-block        { padding: 28px 20px; }
  .contact-phone-block .btn-hero-call {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   DISCLOSURE BOX
   Prominent affiliate disclosure. Amber-tinted to signal
   "important notice" without alarming. Used on pages where
   the disclosure needs more visual weight than disclosure-block
   in global.css.
   ============================================================ */
.disclosure-box {
  background: var(--amber-light);
  border: 1px solid rgba(186, 117, 23, 0.22);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.disclosure-box strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.disclosure-box a {
  color: var(--blue-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disclosure-box a:hover { color: var(--teal); }


/* ============================================================
   FAQ
   Identical to page-city.css. Defined here so support pages
   don't depend on page-city.css.
   ============================================================ */
.faq-section { margin-top: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.13s;
}

.faq-question:hover { background: var(--bg-surface); }

.faq-question[aria-expanded="true"] {
  background: var(--teal-pale);
  color: var(--teal);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-answer.is-open { display: block; }

.faq-answer p          { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer a {
  color: var(--blue-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================================
   PAGE META
   Published / reviewed dates. Identical to page-city.css.
   ============================================================ */
.page-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: 32px;
  margin-top: 0;
  border-top: 1px solid var(--border);
}

.page-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-meta-item strong {
  color: var(--text-mid);
  font-weight: 600;
}

.page-meta a {
  color: var(--blue-link);
  text-decoration: none;
}

.page-meta a:hover { text-decoration: underline; }


/* ============================================================
   BOTTOM CTA BAND
   Same visual language as city-bottom-cta.
   Used at the bottom of every support page.
   ============================================================ */
.support-bottom-cta {
  background: var(--teal-pale);
  border-top: 1px solid var(--teal-light);
  padding: 56px 24px;
  text-align: center;
}

.support-bottom-cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.support-bottom-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 10px;
}

.support-bottom-cta p {
  font-size: 1rem;
  color: var(--text-mid);
  margin: 0 0 24px;
  line-height: 1.65;
  max-width: none;
}

.support-bottom-cta .btn-hero-call {
  font-size: 1.0625rem;
  height: 58px;
  padding: 0 36px;
}

.support-bottom-cta-disclosure {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

.support-bottom-cta-disclosure a {
  color: var(--text-muted);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .support-bottom-cta { padding: 44px 20px; }
  .support-bottom-cta .btn-hero-call {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   FOOTER
   Identical to page-city.css footer block.
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.70);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
  display: block;
  text-decoration: none;
}

.footer-logo span { color: var(--teal-mid); }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.50);
  margin: 0 0 16px;
}

.footer-phone {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-mid);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.footer-phone:hover { color: #19b887; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.40);
  margin: 0 0 14px;
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 0.14s;
  line-height: 1.4;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  line-height: 1.55;
}

.footer-copy a {
  color: rgba(255,255,255,0.40);
  text-decoration: underline;
}

.footer-copy a:hover { color: rgba(255,255,255,0.70); }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.14s;
  white-space: nowrap;
}

.footer-legal a:hover { color: rgba(255,255,255,0.70); }

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 20px 40px;
  }
  .footer-inner > .footer-col:first-child {
    grid-column: 1 / -1;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal  { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}


/* ============================================================
   SUPPORT-BODY RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .support-body { padding: 40px 20px 56px; }

  .support-section          { margin-bottom: 36px; padding-bottom: 36px; }
  .support-section h2       { font-size: 1.375rem; }
  .support-section h3       { font-size: 1.0625rem; }

  .support-steps::before    { left: 15px; }
  .support-step-num         { width: 32px; height: 32px; font-size: 0.8125rem; }

  .contact-email-block      { flex-direction: column; align-items: flex-start; }
}
