/* ==========================================================================
   CASH NOW FOR HOMES — BASE STYLES
   Shared across all pages (homepage, city landing pages, inner pages)
   ========================================================================== */

:root {
  --navy: #1a2e44;
  --navy-light: #243b55;
  --orange: #d4782f;
  --orange-hover: #bf6a25;
  /* --warm-white: #faf8f5; */
  --warm-white: #faf8f5;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --border: #e2ddd7;
  --card-bg: #ffffff;
  --section-alt: #f0f0f0;
  --black: #0f1b2a ;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }


/* ---------- TOP BAR ---------- */

.top-bar {
  background: var(--navy);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #fff; text-decoration: none; font-weight:700; }
.top-bar a:hover { color: var(--orange); }
.top-bar .local-badge {
  background: rgba(212,120,47,0.15);
  border: 1px solid rgba(212,120,47,0.3);
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 12px;
  color: var(--orange);
  font-weight:700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ---------- NAV ---------- */

.nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 75px;
  width: auto;
  display: block;
}
/* Text fallback when no logo image */
.nav-logo--text {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  color: var(--navy);
  text-decoration: none;
}
.nav-logo--text span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none;font-weight:bold; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
 
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-phone {
  font-weight: 700 !important;
  color: var(--navy) !important;
  font-size: 15px !important;
}


/* ---------- SECTIONS (generic) ---------- */

.section { padding: 64px 0; }
.section-alt { background: var(--section-alt); }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  color: var(--black);
  font-weight:700;
  line-height: 1;
}
.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 12px auto 0;
}


/* ---------- TRUST BAR ---------- */

.trust-bar {
  background: var(--orange) ;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--section-alt);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}


/* ---------- FORM CARD ---------- */

.form-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-card h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 4px;
  font-weight:700;
}
.form-card .form-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight:700;
  color: var(--text);
  margin-bottom: 4px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 18px;
  font-family: inherit;
  background: var(--warm-white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--orange-hover); }
.form-privacy {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}


/* ---------- HERO (shared structure) ---------- */

.hero {
  background: var(--navy);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,68, 0.88) 0%,
    rgba(36,59,85, 0.80) 50%,
    rgba(26,46,68, 0.90) 100%
  );
  z-index: 1;
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.hero-content { color: #fff; }
.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 500px;
}

/* Hero local callout box */
.hero-local {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 24px;
}
.hero-local-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-local-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.hero-local-text strong { color: #fff; }

/* Hero credential badge (SRES, etc) */
.hero-cred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}
.hero-cred strong { color: var(--orange); }

/* Hero badges row (homepage) */
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.hero-badge strong { color: #fff; }
.hero-badge .badge-icon { font-size: 16px; }

/* Hero eyebrow (homepage) */
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Norm intro (homepage) */
.hero-norm {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 18px 20px 18px 120px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: visible;
  position: relative;
}
.hero-norm-cutout {
  position: absolute;
  left: 4px;
  bottom: -50%;
  width: 105px;
  height: calc(120% + 60px);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.hero-norm-cutout img {
  width: 105px;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(2px 0 8px rgba(0,0,0,0.45));
}
.hero-norm-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  padding: 0 16px 0 14px;
}
.hero-norm-text strong { color: #fff; }
.hero-norm-text .cred {
  display: block;
  font-size: 11px;
  color: var(--orange);
  margin-top: 2px;
  font-weight:700;
  letter-spacing: 0.03em;
}


/* ---------- LOCAL CONTENT (2-col prose) ---------- */

.local-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.local-content h2, .local-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  color: var(--black);
  margin-bottom: 16px;
  font-weight:700;
line-height: 1.3;
letter-spacing: -1px;
}
.local-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 18px;
}


/* ---------- DUAL OPTION CARDS ---------- */

.dual-option {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.option-card {
  padding: 32px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-bg);
}
.option-card.featured {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(212,120,47,0.1);
  position: relative;
}
.option-card.alt-highlight,
.option-card.listing-highlight {
  position: relative;
}

/* Option tag — rendered by block as a div above the card */
.option-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 12px;
  border-radius: 3px;
  margin-top: -4em;
  position: absolute;
  z-index: 1;
}
.option-tag--featured  { background: var(--orange); }
.option-tag--listing   { background: var(--navy); }
.option-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.option-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.option-list {
  list-style: none;
  margin-bottom: 20px;
}
.option-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.option-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}


/* ---------- HOW IT WORKS (steps) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 28px 20px;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 16px;
}
.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
}
.step p {
  font-size: 17px;
  color: var(--text-light);
}


/* ---------- SITUATION CARDS (3-col grid) ---------- */

.situations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.situation-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.situation-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(212,120,47,0.08);
}
.situation-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.situation-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}
.situation-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Situation rows (homepage 2-col compact variant) */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.situation-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.situation-row:hover { border-color: var(--orange); }
.situation-row .sit-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.situation-row .sit-text h4 {
  font-size: 18px;
  color: var(--navy);
  font-weight:700;
  margin-bottom: 2px;
}
.situation-row .sit-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}


/* ---------- HONESTY / CALLOUT BLOCK ---------- */

.honesty-callout {
  background: var(--navy);
  border-radius: 10px;
  padding: 36px 40px;
  color: #fff;
  margin-top: 28px;
}
.honesty-callout h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.honesty-callout p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.honesty-callout .sig, .honesty-callout .callout-attr {
  margin-top: 16px;
  font-size: 14px;
  color: var(--orange);
  font-weight:700;
}


/* ---------- DIFFERENTIATOR SECTION (homepage) ---------- */

.diff-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.diff-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size:36px;
  color: var(--black);
  font-weight:700;
  line-height: 1.25;
  margin-bottom: 16px;
}
.diff-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.diff-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px 32px;
  color: #fff;
}
.diff-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.diff-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.diff-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  padding-bottom: 8px;
}
.diff-col.them h4 {
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.diff-col.us h4 {
  color: var(--orange);
  border-bottom: 1px solid rgba(212,120,47,0.3);
}
.diff-col ul { list-style: none; }
.diff-col ul li {
  font-size: 15px;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}
.diff-col.them ul li { color: rgba(255,255,255,0.45); }
.diff-col.them ul li::before {
  content: '✕';
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  margin-top: 2px;
}
.diff-col.us ul li { color: rgba(255,255,255,0.9); }
.diff-col.us ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  margin-top: 1px;
}


/* ---------- COMPARE TABLE ---------- */

.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
}
.compare-table th:last-child {
  background: rgba(212,120,47,0.06);
  color: var(--orange);
  border-radius: 8px 8px 0 0;
}
.compare-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-table td:last-child {
  background: rgba(212,120,47,0.04);
  font-weight:700;
  color: var(--navy);
}


/* ---------- FAQ ---------- */

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-q {
  font-weight:700;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--orange); font-weight: 400; }
.faq-q.open::after { content: '−'; }
.faq-a {
  font-size: 18px;
  color: var(--text-light);
  margin-top: 12px;
  display: none;
}
.faq-a.show { display: block; }


/* ---------- TESTIMONIALS ---------- */

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}
.testimonial-stars { color: var(--orange); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p {
  font-size: 18px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.testimonial cite {
  font-style: normal;
  font-size: 13px;
  color: var(--text-light);
  font-weight:700;
}


/* ---------- AREAS GRID ---------- */

/* City landing page variant (simple links) */
.areas-grid--links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.area-link {
  display: block;
  padding: 14px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--navy);
  font-weight:700;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.area-link:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(212,120,47,0.1);
}
.area-link.current {
  border-color: var(--orange);
  background: rgba(212,120,47,0.04);
}
.area-link .arrow { color: var(--orange); float: right; }

/* Homepage variant (richer cards) */
.areas-grid--cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.area-card {
  display: block;
  padding: 20px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.area-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(212,120,47,0.1);
  transform: translateY(-2px);
}
.area-card .city-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.area-card .city-sub {
  font-size: 11px;
  color: var(--text-light);
  display: block;
}
.area-card .city-arrow {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight:700;
}


/* ---------- BOTTOM CTA ---------- */

.bottom-cta {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.bottom-cta h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 34px;
  margin-bottom: 8px;
  font-weight:700;
}
.bottom-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.bottom-cta .form-card {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
}


/* ---------- FOOTER ---------- */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer a:hover { color: var(--orange); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}



/* ==========================================================================
   HERO DECORATIVE ACCENTS (vary per page type)
   ========================================================================== */

/* City landing pages: diagonal gradient accent */
body.page-city .hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, rgba(212,120,47,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

/* Grand Blanc: softer radial accent */
body.page-grand-blanc .hero::after {
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 80%, rgba(212,120,47,0.06) 0%, transparent 60%);
}

/* Homepage: dual radial accents */
body.page-home .hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,120,47,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
body.page-home .hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
body.page-home .hero-bg { opacity: 0.1; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .areas-grid--cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 32px; }
  body.page-home .hero h1 { font-size: 34px; }
  body.page-grand-blanc .hero h1 { font-size:36px; }
  .local-content { grid-template-columns: 1fr; }
  .dual-option { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  body.page-home .steps { grid-template-columns: 1fr 1fr; }
  .situations { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .areas-grid--links { grid-template-columns: 1fr 1fr; }
  .areas-grid--cards { grid-template-columns: 1fr 1fr; }
  .diff-section { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 20px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; }
  .honesty-callout { padding: 28px 24px; }
  .compare-table { font-size: 13px; }
  .compare-table td, .compare-table th { padding: 10px 12px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-img { animation: none; }
  .hero-bg-img:first-child { opacity: 1; }
}


/* ==========================================================================
   CONTACT FORM 7 — restyled to match cashnow form design
   ========================================================================== */

/* Remove CF7 default spacing/borders */
.wpcf7 { margin: 0; }
.wpcf7-form { margin: 0; }
.wpcf7 p { margin: 0; }

/* Map CF7 field wrapper to our form-group */
.cashnow-cf7-wrap .wpcf7-form p,
.cashnow-cf7-wrap .wpcf7-form .form-group {
    margin-bottom: 14px;
}

/* Labels */
.cashnow-cf7-wrap label {
    display: block;
    font-size: 13px;
    font-weight:700;
    color: var(--text);
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

/* All text/email/tel/select inputs */
.cashnow-cf7-wrap .wpcf7-form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.cashnow-cf7-wrap .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--orange);
}

/* Select */
.cashnow-cf7-wrap .wpcf7-select {
    appearance: auto;
}

/* Submit button */
.cashnow-cf7-wrap .wpcf7-submit {
    width: 100%;
    padding: 14px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s;
}
.cashnow-cf7-wrap .wpcf7-submit:hover {
    background: var(--orange-hover);
}

/* Spinner — hide CF7's default ajax spinner */
.cashnow-cf7-wrap .wpcf7-spinner {
    display: none;
}

/* Validation errors */
.cashnow-cf7-wrap .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
    display: block;
}
.cashnow-cf7-wrap .wpcf7-form-control.wpcf7-not-valid {
    border-color: #c0392b;
}

/* Success / error response messages */
.cashnow-cf7-wrap .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    border: none;
}
.cashnow-cf7-wrap .wpcf7-mail-sent-ok {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}
.cashnow-cf7-wrap .wpcf7-mail-sent-ng,
.cashnow-cf7-wrap .wpcf7-spam-blocked {
    background: rgba(192, 57, 43, 0.1);
    color: #c0392b;
}

/* Privacy note — add via CF7 acceptance field or free text */
.cashnow-cf7-wrap .form-privacy,
.cashnow-cf7-wrap .wpcf7-acceptance label {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    display: block;
    margin-top: 10px;
}


/* ---------- FLOATING CTA BUTTON ---------- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight:700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 120, 47, 0.35);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background-color 0.2s;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: #c06a25;
}
.floating-cta-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s;
}
.floating-cta.is-pointing-down .floating-cta-arrow {
  transform: rotate(0deg);
}

@media (max-width: 600px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
}


/* ==========================================================================
   CONTACT PAGE — extends base.css
   Enqueue on the contact page only, or include in base.css under a
   body.page-contact scope if you prefer.
   ========================================================================== */


/* ---------- HERO (contact variant) ---------- */

.hero--contact {
  text-align: center;
  padding: 48px 0 56px;
}
.hero--contact .container {
  display: block;            /* override the 2-col grid from base hero */
}
.hero-content--center {
  max-width: 680px;
  margin: 0 auto;
}
.hero--contact .hero-sub {
  margin: 0 auto;
  max-width: 560px;
}


/* ---------- CONTACT GRID (form + sidebar) ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}


/* ---------- CONTACT SIDEBAR CARDS ---------- */

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.contact-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-card__icon {
  width: 40px;
  height: 40px;
  background: var(--section-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card__header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.contact-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}
.contact-card a:hover { text-decoration: underline; }

.contact-card__value {
  display: block;
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
  text-decoration: none;
}
.contact-card__value:hover { color: var(--orange); }
.contact-card__value--sm { font-size: 15px; }

.contact-card__address {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

/* Norm card — navy highlight */
.contact-card--norm {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.contact-card--norm .contact-card__icon {
  background: rgba(255,255,255,0.08);
}
.contact-card--norm .contact-card__header h3 {
  color: #fff;
}
.contact-card--norm p {
  color: rgba(255,255,255,0.7);
}
.contact-card__cred {
  display: inline-block;
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 8px;
}


/* ---------- HOURS LIST ---------- */

.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child {
  font-weight: 700;
  color: var(--navy);
}


/* ---------- BOTTOM CTA PHONE BUTTON ---------- */

.cta-phone {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s;
}
.cta-phone:hover { background: var(--orange-hover); }


/* ---------- CF7 CONTACT FORM OVERRIDES ---------- */

/* Two-column row for name / phone+email fields */
body.page-contact .cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
body.page-contact .cf7-row > p { margin-bottom: 14px; }

/* Textarea */
body.page-contact .cashnow-cf7-wrap .wpcf7-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  transition: border-color 0.2s;
  box-sizing: border-box;
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
body.page-contact .cashnow-cf7-wrap .wpcf7-textarea:focus {
  outline: none;
  border-color: var(--orange);
}

/* Label hint (lighter weight) */
body.page-contact .label-hint {
  font-weight: 400;
  color: var(--text-light);
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .hero--contact h1 { font-size: 32px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cf7-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   WHY US PAGE — extends base.css
   ========================================================================== */


/* ---------- HERO (why-us centered variant) ---------- */

.hero--whyus {
  text-align: center;
  padding: 48px 0 56px;
}
.hero--whyus .container {
  display: block;
}
.hero-content--center {
  max-width: 680px;
  margin: 0 auto;
}
.hero--whyus .hero-sub {
  margin: 0 auto;
  max-width: 560px;
}
.hero--whyus .hero-eyebrow {
  margin-bottom: 14px;
}


/* ---------- ABOUT NORM — text + tall photo ---------- */

.whyus-about {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 56px;
  align-items: start;
}

.whyus-about__text .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}
.whyus-about__text h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  color: var(--black);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.whyus-about__lead {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}
.whyus-about__text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.7;
}
.whyus-about__text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.whyus-about__text a:hover {
  color: var(--orange-hover);
}

.whyus-sig {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.whyus-sig strong {
  color: var(--navy);
  font-size: 16px;
}

/* Photo column — designed for the tall/narrow image */
.whyus-about__photo {
  position: sticky;
  top: 100px;                /* clears sticky nav */
}
.whyus-about__photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}


/* ---------- VALUE PROPS (2 cards side-by-side) ---------- */

.whyus-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.whyus-value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
}
.whyus-value-card .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}
.whyus-value-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  color: var(--black);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.whyus-value-card__lead {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.6;
}
.whyus-value-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}
.whyus-value-card p + p {
  margin-top: 12px;
}


/* ---------- STEPS — 3-column override ---------- */

.steps--3col {
  grid-template-columns: repeat(3, 1fr);
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .whyus-about {
    grid-template-columns: 1fr 280px;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero--whyus h1 { font-size: 32px; }

  .whyus-about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .whyus-about__photo {
    position: static;
    max-width: 340px;
    margin: 0 auto;
    order: -1;               /* photo on top on mobile */
  }

  .whyus-values {
    grid-template-columns: 1fr;
  }

  .steps--3col {
    grid-template-columns: 1fr;
  }
}