:root {
  --black: #111111;
  --black-soft: #1c1c1c;
  --white: #ffffff;
  --bg: #fafafa;
  --bg-warm: #f3f0eb;
  --border: #e8e8e8;
  --gold: #c9a227;
  --gold-hover: #b8921f;
  --gold-soft: #f5eed8;
  --text: #171717;
  --muted: #6b7280;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.accent {
  color: var(--gold);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Top bar ── */
.top-bar {
  background: var(--black);
  padding: 0.5rem 0;
  font-size: 0.84rem;
  font-weight: 600;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-select-wrap {
  display: inline-flex;
  align-items: center;
}

.lang-select {
  appearance: none;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a227' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    right 0.55rem center / 10px no-repeat;
  color: var(--gold);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.28rem 1.6rem 0.28rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  max-width: 9.5rem;
}

.lang-select:hover,
.lang-select:focus {
  background-color: rgba(201, 162, 39, 0.15);
  outline: none;
}

.lang-select option {
  color: #111;
  background: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-toggle {
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-toggle:hover {
  background: rgba(201, 162, 39, 0.15);
  color: #fff;
}

.top-bar a {
  color: var(--gold);
}

.top-bar a:hover {
  color: #fff;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--black);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.logo-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.nav-desktop a:hover {
  color: var(--gold);
}

.header-cta {
  display: none;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  cursor: pointer;
}

.nav-panel {
  padding: 0.75rem 0 1rem;
  border-top: 1px solid var(--border);
}

.nav-panel a {
  display: block;
  padding: 0.45rem 0;
  font-weight: 600;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.15s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--gold-soft);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black-soft);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  min-height: clamp(480px, 65vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1a1a;
  overflow: hidden;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.82) 0%,
    rgba(8, 8, 8, 0.55) 40%,
    rgba(8, 8, 8, 0.22) 65%,
    rgba(8, 8, 8, 0.12) 100%
  );
  pointer-events: none;
}

.hero::before {
  content: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  color: #fff;
}

.hero-tag {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-tag-rotate {
  color: #fff;
  border-bottom: 1px solid rgba(201, 162, 39, 0.55);
  min-width: 10ch;
  display: inline-block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  margin: 0 0 0.75rem;
  color: #fff;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 28rem;
  margin: 0 0 1.25rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.45rem;
}

.hero-bullets li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-bullets li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}

.hero-trust {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.hero-google {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-google:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(201, 162, 39, 0.55);
}

.hero-google-stars {
  color: #fbbc04;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  line-height: 1;
}

.hero-google-text strong {
  color: var(--gold);
  font-weight: 800;
}

.hero-trust-line {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
}

/* ── Form ── */
.offer-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.28);
}

.offer-card h2 {
  margin: 0 0 0.2rem;
  font-size: 1.25rem;
}

.offer-card > p,
.offer-card [data-form-fields] > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-step-address {
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
  background: var(--bg, #f6f5f2);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.form-step-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
}

.form-step-actions .btn-gold {
  width: 100%;
}

.form-grid {
  display: grid;
  gap: 0.65rem;
}

label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.78rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 162, 39, 0.35);
  border-color: var(--gold);
}

.form-row-2 {
  display: grid;
  gap: 0.65rem;
}

.form-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.form-success,
.form-error {
  text-align: center;
  padding: 1.25rem;
}

.hidden {
  display: none !important;
}

/* ── Featured On + Call CTA ── */
.featured-on {
  padding: 2.25rem 0 2.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.featured-on-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.call-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: min(100%, 520px);
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d4ad5a 0%, #b8921f 55%, #9a7a18 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(154, 122, 24, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.call-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(154, 122, 24, 0.4);
  color: var(--white);
}

.call-cta-btn strong {
  font-weight: 800;
}

.call-cta-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.call-cta-text-link {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.call-cta-text-link:hover {
  color: var(--gold-dark);
}

.featured-on-label {
  margin: 1.75rem 0 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
  color: var(--text);
}

.media-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.25rem;
}

.media-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.media-logo-img--abc {
  height: 52px;
  width: 52px;
}

/* ── Dark feature band (the boxes they loved) ── */
.feature-band {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0;
}

.feature-band .section-head h2 {
  color: var(--white);
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.feature-band .section-head p {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 2.5rem;
  font-size: 0.95rem;
}

.feature-boxes {
  display: grid;
  gap: 1rem;
}

.feature-box {
  background: var(--bg-warm);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.feature-box-icon {
  margin: 0 auto 1rem;
  background: none;
  display: block;
  font-size: 2.25rem;
  line-height: 1;
}

.feature-box h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.feature-box p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Sections ── */
.section {
  padding: 3.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

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

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.bg-light {
  background: var(--bg);
}

/* ── Situation pills ── */
.situation-row {
  display: grid;
  gap: 0.75rem;
}

.situation-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.situation-pill h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.situation-pill p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Service image cards ── */
.services-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.service-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.service-body p {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.service-body .btn {
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
}

/* ── Steps ── */
.steps-wrap {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
}

.steps-grid {
  display: grid;
  gap: 1rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
}

.step-top {
  padding: 1.35rem 1rem 0.85rem;
}

.step-icon {
  margin: 0 auto 0.75rem;
  background: none;
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step-top p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.step-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.steps-cta {
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* ── Reviews (cashhomebuyersca match) ── */
.reviews-section {
  background: #f2f0eb;
  padding: 3rem 0 3.5rem;
}

.reviews-container {
  max-width: 980px;
}

.rating-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.25rem;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rating-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.rating-badge-stars {
  color: #a38339;
  font-size: 1.05rem;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-badge-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.reviews-head {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-head h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #333;
}

.reviews-head h2 .accent {
  color: #a38339;
}

.reviews-head p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 1.5rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.review-stars {
  color: #a38339;
  letter-spacing: 3px;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1rem;
}

.review-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #444;
  font-style: italic;
  line-height: 1.65;
  text-align: center;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  text-align: left;
}

.review-platform-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #222;
  line-height: 1.3;
}

.review-loc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.3;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-review {
  background: #a38339;
  color: var(--white);
  border: none;
  padding: 0.75rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
}

.btn-review:hover {
  background: #8f7030;
  color: var(--white);
}

/* ── Compare ── */
.compare-grid {
  display: grid;
  gap: 1rem;
}

.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.compare-card.win {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.compare-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.compare-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.compare-card li {
  margin-bottom: 0.3rem;
}

/* ── Areas ── */
.areas-counties {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.areas-county-name {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Agents CTA ── */
.agents-cta {
  background: var(--black);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.agents-cta h2 {
  color: white;
  margin-top: 0;
}

.agents-cta p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  margin: 0 auto 1.1rem;
}

/* ── FAQ ── */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-proof {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.es-hint {
  margin: 0.75rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.guarantee-section {
  background: linear-gradient(180deg, #fff 0%, #f7f5f0 100%);
}

.guarantee-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.guarantee-card {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.guarantee-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.guarantee-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.guarantee-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.local-buyer {
  background: #121212;
  color: #fff;
  padding: 3.5rem 0;
}

.local-buyer .section-label {
  color: var(--gold);
}

.local-buyer h2 {
  color: #fff;
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.local-buyer p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
  line-height: 1.55;
}

.local-buyer-points {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.45rem;
}

.local-buyer-points li {
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.local-buyer-points li::before {
  content: "✓";
  color: var(--gold);
}

.fee-calc {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow, 0 8px 24px rgba(0, 0, 0, 0.06));
}

.fee-calc-inputs {
  display: grid;
  gap: 0.75rem;
}

.fee-calc-results {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.fee-calc-card {
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg, #f6f5f2);
}

.fee-calc-card--win {
  border-color: rgba(201, 162, 39, 0.55);
  background: rgba(201, 162, 39, 0.1);
}

.fee-calc-card-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.fee-calc-card strong {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.fee-calc-span {
  grid-column: 1 / -1;
}

.fee-calc-breakdown {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg, #f6f5f2);
  display: grid;
  gap: 0.55rem;
}

.fee-calc-breakdown li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  font-size: 0.86rem;
  color: var(--text);
}

.fee-calc-breakdown li strong {
  font-weight: 700;
  text-align: right;
}

.fee-calc-breakdown-total {
  margin-top: 0.2rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
  font-weight: 600;
}

.fee-calc-zero {
  margin-top: 1.15rem;
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: var(--radius-lg, 12px);
  border: 2px solid var(--gold);
  background:
    linear-gradient(165deg, rgba(201, 162, 39, 0.18) 0%, rgba(201, 162, 39, 0.06) 45%, #fff 100%);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.18);
  text-align: center;
}

.fee-calc-zero-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b5e20;
}

.fee-calc-zero-amount {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #111;
}

.fee-calc-zero-sub {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b5e20;
}

.fee-calc-zero-body {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
}

.fee-calc-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.dre-badge {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fee-calc-inputs {
    grid-template-columns: repeat(2, 1fr);
  }

  .fee-calc-results {
    grid-template-columns: 1fr 1fr;
  }
}

details p {
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0 1.25rem;
  font-size: 0.86rem;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.footer-grid h4 {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.35rem;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .nav-toggle,
  .nav-panel {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .situation-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .situation-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
