:root {
  --bg: #0b0f14;
  --bg-deep: #0f141c;
  --surface: rgba(15, 19, 27, 0.8);
  --surface-strong: rgba(13, 17, 24, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(216, 177, 91, 0.22);
  --text: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.72);
  --gold: #d8b15b;
  --gold-soft: #f3d89b;
  --gold-deep: #b88932;
  --alert: #ffb870;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: 1280px;
  --transition: 220ms ease;
  --spot-x: 50%;
  --spot-y: 18%;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(216, 177, 91, 0.14), transparent 30%),
    linear-gradient(180deg, #11161f 0%, #0b0f14 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(216, 177, 91, 0.13), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.42;
  z-index: 0;
}

.ambient-left {
  top: 3rem;
  left: -16rem;
  background: rgba(216, 177, 91, 0.16);
}

.ambient-right {
  top: 28rem;
  right: -16rem;
  background: rgba(255, 184, 112, 0.12);
}

.grid-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 92%);
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar .container {
  width: min(calc(100% - 1.4rem), 1440px);
}

.section {
  padding: 5.5rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(10, 12, 17, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(216, 177, 91, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-copy span,
.topbar-note {
  font-size: 0.94rem;
  color: var(--muted);
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.phone-link strong {
  color: var(--gold-soft);
}

.phone-link span {
  color: var(--gold-soft);
  font-weight: 700;
}

.phone-link:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: 1rem 0 2.1rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 18, 0.84) 0%, rgba(9, 12, 18, 0.58) 34%, rgba(9, 12, 18, 0.24) 64%, rgba(9, 12, 18, 0.64) 100%),
    linear-gradient(180deg, rgba(9, 12, 18, 0.24) 0%, rgba(9, 12, 18, 0.06) 30%, rgba(9, 12, 18, 0.78) 100%);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  filter: brightness(0.7) saturate(0.86) contrast(1.03);
}

.hero-layout {
  display: grid;
  align-content: center;
  gap: 1rem;
  width: min(calc(100% - 1.4rem), 1440px);
  min-height: calc(100svh - var(--header-height) - 2rem);
  position: relative;
  z-index: 1;
  padding-top: clamp(1rem, 4vh, 3rem);
  padding-inline: 0;
}

.hero-copy,
.pain-card,
.support-card,
.quote-card,
.final-cta-box,
.geography-shell,
.support-copy,
.timeline-step,
.main-office,
.city-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-copy,
.geography-shell,
.final-cta-box {
  overflow: hidden;
}

.hero-copy {
  width: 100%;
  padding: 1.85rem 2.05rem 1.9rem;
  border-radius: var(--radius-xl);
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at top left, rgba(216, 177, 91, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 20, 27, 0.62), rgba(11, 15, 21, 0.52));
  backdrop-filter: blur(12px);
}

.hero-copy > * {
  width: 100%;
}

.hero-trust-floating {
  width: min(640px, 56vw);
  margin-left: auto;
}

.hero-copy::after,
.response-panel::before,
.geography-shell::before,
.final-cta-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(216, 177, 91, 0.12), transparent 28%, transparent 70%, rgba(216, 177, 91, 0.08));
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.callback-chip,
.office-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 91, 0.22);
  background: rgba(216, 177, 91, 0.08);
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 0.15rem;
}

.eyebrow-pulse {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--alert);
  box-shadow: 0 0 0 0 rgba(255, 184, 112, 0.56);
  animation: pulse 1.8s infinite;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.18rem, 3.45vw, 3.85rem);
  max-width: 19.5ch;
}

h2 {
  font-size: clamp(1.95rem, 3.2vw, 3.3rem);
  max-width: 20ch;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.46rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.hero-heading {
  display: grid;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
}

.hero-heading h1 {
  max-width: 100%;
  font-size: clamp(1.98rem, 3.02vw, 3.42rem);
  line-height: 1.02;
}

.hero-nowrap,
.hero-lead-nowrap {
  white-space: nowrap;
}

.hero-lead {
  max-width: 100%;
  width: 100%;
  font-size: 0.98rem;
  line-height: 1.56;
}

.hero-compact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 100%;
}

.hero-compact-item {
  min-height: 0;
  padding: 1rem 1.08rem;
  border-radius: var(--radius-sm);
  background: rgba(8, 11, 16, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-compact-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.98rem;
}

.hero-compact-item p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.point-icon,
.timeline-number {
  display: inline-grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #191512;
  font-weight: 700;
  font-size: 0.82rem;
}

.hero-actions,
.response-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-actions {
  max-width: 100%;
  gap: 0.72rem;
}

.hero-actions .button-secondary {
  margin-left: 0;
  background: rgba(8, 11, 16, 0.74);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(246, 241, 232, 0.9);
}

.response-actions .button-secondary {
  margin-left: auto;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.button-primary {
  color: #16130f;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold), #f0cf82, var(--gold));
  background-size: 180% 180%;
  box-shadow: 0 16px 42px rgba(216, 177, 91, 0.22);
  animation: sheen 8s linear infinite;
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.button-block {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-trust div {
  min-height: 100%;
  padding: 0.92rem 1rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 16, 0.44);
  backdrop-filter: blur(8px);
}

.hero-trust strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: var(--gold-soft);
}

.hero-trust span {
  display: block;
  color: var(--muted);
  line-height: 1.38;
  font-size: 0.88rem;
}

.hero-response {
  position: relative;
  z-index: 2;
  padding-top: 0;
  margin-top: -1.1rem;
}

.hero-response-grid {
  display: block;
}

.response-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(216, 177, 91, 0.12), transparent 34%),
    rgba(11, 15, 21, 0.9);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.15rem;
  padding: 1.55rem;
}

.signal-copy {
  display: grid;
  gap: 0.6rem;
  max-width: 30rem;
}

.signal-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 184, 112, 0.13);
  border: 1px solid rgba(255, 184, 112, 0.24);
  color: var(--alert);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.52rem, 1.72vw, 2rem);
  line-height: 1.04;
}

.hero-side-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-side-item {
  padding: 0.95rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 18, 0.54);
  backdrop-filter: blur(10px);
}

.hero-side-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero-side-item span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.38;
}

.callback-card {
  padding: 0.95rem;
  border-radius: 24px;
  background: rgba(9, 12, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.callback-card-large {
  padding: 1.15rem;
}

.popup-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.popup-shell.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.74);
  backdrop-filter: blur(8px);
}

.popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
}

.popup-form {
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(7, 9, 14, 0.78);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.popup-close span {
  display: inline-block;
  font-size: 1.65rem;
  line-height: 1;
}

body.modal-open {
  overflow: hidden;
}

.callback-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.callback-head strong {
  font-size: 1.04rem;
  line-height: 1.18;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-message {
  margin-top: 0.75rem;
}

.field span,
.consent span,
.callback-note,
.form-status {
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.82rem 0.95rem;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(216, 177, 91, 0.5);
  box-shadow: 0 0 0 4px rgba(216, 177, 91, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.8rem 0 0.9rem;
}

.consent input {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 0.12rem;
  border: 1px solid rgba(216, 177, 91, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.consent input:checked {
  border-color: rgba(216, 177, 91, 0.82);
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23191512' d='M6.4 11.2 3.1 8l-1 1 4.3 4.2L14 5.8l-1.1-1.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}

.consent input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(216, 177, 91, 0.15);
}

.callback-note {
  margin-top: 0.85rem;
}

.form-status {
  min-height: 1.45rem;
  margin-top: 0.75rem;
  color: var(--gold-soft);
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
  margin-bottom: 1.8rem;
  max-width: 100%;
  width: 100%;
}

.section-heading h2 {
  max-width: 100%;
  width: 100%;
}

.section-title-wide {
  max-width: 100%;
  width: 100%;
  font-size: clamp(1.82rem, 2.18vw, 2.75rem);
  line-height: 1.1;
}

.section-heading p {
  max-width: 72ch;
}

.section-urgent {
  padding-top: 1.6rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-rows: 1fr;
}

.pain-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
  min-height: 184px;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.pain-card strong {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.35;
}

.support-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.2rem;
  align-items: stretch;
}

.support-copy {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.support-copy-head {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.support-copy h2,
.response-panel .signal-copy h2 {
  max-width: 100%;
  width: 100%;
}

.support-copy p,
.response-panel .signal-copy {
  max-width: 100%;
}

.support-title {
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  line-height: 1.02;
  max-width: 100%;
}

.support-copy p {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  font-size: 1rem;
}

.support-copy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.support-copy-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 91, 0.18);
  background: rgba(216, 177, 91, 0.08);
  color: var(--gold-soft);
  font-size: 0.84rem;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-rows: 1fr;
}

.support-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  height: 100%;
  min-height: 220px;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.support-card h3,
.support-card p {
  max-width: 100%;
}

.support-card p {
  margin-top: 0;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  height: 100%;
  min-height: 150px;
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.timeline-step p {
  margin-top: 0.55rem;
}

.testimonials {
  position: relative;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-rows: 1fr;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  height: 100%;
  min-height: 236px;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.quote-card::before {
  content: "“";
  display: block;
  margin-bottom: -0.3rem;
  color: rgba(216, 177, 91, 0.45);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 4rem;
  line-height: 0.7;
}

.quote-card span {
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.geography {
  position: relative;
}

.geography-shell {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(216, 177, 91, 0.14), transparent 28%),
    var(--surface-strong);
}

.geography-heading {
  margin-bottom: 1.4rem;
}

.main-office {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.main-office strong {
  display: block;
  margin: 0.8rem 0 0.35rem;
  color: var(--text);
  font-size: 1.32rem;
  line-height: 1.2;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.city-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.city-card p {
  margin-top: 0.7rem;
}

.city-card span {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(216, 177, 91, 0.08);
  color: var(--gold-soft);
  font-size: 0.82rem;
}

.final-cta {
  padding-top: 2.2rem;
  padding-bottom: 8rem;
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1.16fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.9rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(216, 177, 91, 0.14), transparent 32%),
    var(--surface-strong);
}

.final-cta-copy p {
  margin-top: 1rem;
  max-width: 60ch;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 14, 0.78);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 6rem;
}

.footer-copy strong {
  font-size: 1.05rem;
}

.footer-copy p {
  margin-top: 0.4rem;
}

.footer-address {
  max-width: 58ch;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 6rem;
  z-index: 23;
  width: min(420px, calc(100% - 2rem));
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(216, 177, 91, 0.22);
  background:
    radial-gradient(circle at top left, rgba(216, 177, 91, 0.14), transparent 36%),
    rgba(10, 13, 19, 0.92);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-copy {
  display: grid;
  gap: 0.6rem;
}

.cookie-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.38rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 177, 91, 0.22);
  background: rgba(216, 177, 91, 0.08);
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.cookie-banner-copy p {
  font-size: 0.93rem;
  line-height: 1.55;
}

.cookie-banner-button {
  min-height: 50px;
  padding-inline: 1.15rem;
  justify-self: start;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 184, 112, 0.56);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 184, 112, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 184, 112, 0);
  }
}

@keyframes sheen {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(calc(-50% - 10px)) translateX(-8px);
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-response {
    margin-top: 0;
    padding-top: 1rem;
  }

  .support-layout,
  .main-office,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    width: min(calc(100% - 1.2rem), 1440px);
    padding-top: 0.85rem;
  }

  .topbar .container {
    width: min(calc(100% - 1.2rem), 1440px);
  }

  .pain-grid,
  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .support-copy {
    position: static;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 3.55rem 0;
  }

  .topbar-inner,
  .topbar-meta,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    backdrop-filter: blur(14px);
  }

  .topbar-inner {
    gap: 0.8rem;
    padding: 0.78rem 0;
  }

  .brand {
    width: 100%;
    gap: 0.75rem;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy span,
  .topbar-note {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .topbar-meta {
    width: 100%;
    gap: 0.7rem;
  }

  .phone-link {
    min-height: 52px;
    justify-content: center;
  }

  .hero {
    padding: 1.1rem 0 1.5rem;
    min-height: auto;
  }

  .hero-response {
    margin-top: -0.2rem;
  }

  .hero-layout {
    width: min(calc(100% - 1rem), 1440px);
    gap: 0.75rem;
    padding-top: 0.2rem;
  }

  .hero-copy,
  .response-panel,
  .support-copy,
  .geography-shell,
  .final-cta-box {
    padding: 1.18rem;
    border-radius: 26px;
  }

  .hero-nowrap,
  .hero-lead-nowrap {
    white-space: normal;
  }

  .hero-trust-floating {
    width: 100%;
    margin-left: 0;
  }

  .hero-trust {
    gap: 0.55rem;
  }

  .hero-trust div {
    padding: 0.82rem 0.9rem 0.86rem;
    border-radius: 16px;
  }

  .hero-heading {
    gap: 0.72rem;
  }

  .hero-heading h1 {
    font-size: clamp(1.9rem, 7.6vw, 2.65rem);
    line-height: 1.04;
    text-wrap: pretty;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.54;
  }

  .hero-compact-list,
  .hero-trust,
  .support-list,
  .hero-side-list {
    grid-template-columns: 1fr;
  }

  .hero-compact-list {
    gap: 0.6rem;
  }

  .hero-compact-item,
  .hero-side-item {
    padding: 0.92rem 0.96rem;
    border-radius: 16px;
  }

  .hero-compact-item strong,
  .hero-side-item strong {
    font-size: 0.98rem;
  }

  .hero-compact-item p,
  .hero-side-item span {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .section-heading {
    gap: 0.72rem;
    margin-bottom: 1.35rem;
  }

  .section-kicker,
  .eyebrow,
  .callback-chip,
  .office-label {
    max-width: 100%;
    font-size: 0.78rem;
    line-height: 1.35;
    padding: 0.42rem 0.72rem;
    white-space: normal;
  }

  .signal-copy {
    gap: 0.55rem;
    max-width: 100%;
  }

  .support-copy-head {
    gap: 0.75rem;
  }

  .signal-copy h2 {
    max-width: 100%;
    font-size: clamp(1.44rem, 6.8vw, 1.95rem);
    text-wrap: balance;
  }

  .section-heading p,
  .support-copy p,
  .final-cta-copy p,
  .main-office p {
    max-width: 100%;
    font-size: 0.93rem;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .support-title {
    font-size: clamp(1.76rem, 6.6vw, 2.34rem);
    line-height: 1.05;
    text-wrap: balance;
  }

  .support-copy-points {
    gap: 0.48rem;
    margin-top: 1rem;
  }

  .support-copy-points span {
    padding: 0.42rem 0.72rem;
    font-size: 0.78rem;
  }

  .hero-actions .button-secondary {
    margin-left: 0;
  }

  .response-actions .button-secondary {
    margin-left: 0;
  }

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

  .button,
  .phone-link {
    width: 100%;
  }

  .cookie-banner {
    width: min(calc(100% - 1.5rem), 520px);
    right: 0.75rem;
  }

  .hero-actions,
  .response-actions,
  .final-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions,
  .response-actions,
  .final-cta-actions,
  .footer-actions {
    gap: 0.62rem;
  }

  .pain-card,
  .support-card,
  .quote-card,
  .timeline-step,
  .city-card {
    min-height: 0;
  }

  .support-card,
  .quote-card,
  .city-card {
    justify-content: flex-start;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    padding: 1.08rem;
  }

  .timeline-step p {
    margin-top: 0.45rem;
  }

  .main-office {
    padding: 1rem;
  }

  .main-office strong {
    margin: 0.65rem 0 0.3rem;
    font-size: 1.16rem;
    text-wrap: balance;
  }

  .popup-shell {
    padding: 0.75rem;
  }

  .popup-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 40px;
    height: 40px;
  }

  .callback-card-large {
    padding: 1rem;
  }

  .popup-dialog {
    width: 100%;
    max-width: 100%;
    max-height: calc(100svh - 1.5rem);
  }

  .popup-form {
    max-height: calc(100svh - 1.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .callback-head {
    gap: 0.45rem;
    margin-bottom: 0.7rem;
  }

  .callback-head strong {
    font-size: 1rem;
    line-height: 1.24;
  }

  .consent {
    gap: 0.62rem;
    margin: 0.75rem 0 0.8rem;
  }

  .consent span {
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .final-cta {
    padding-bottom: 3.2rem;
  }

  .footer-inner {
    gap: 0.8rem;
    padding: 1.35rem 0 1.55rem;
  }
}

@media (max-width: 820px) {
  .cookie-banner {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .cookie-banner-button {
    width: 100%;
    justify-self: stretch;
  }

  .hero-backdrop img {
    object-position: 58% center;
    transform: scale(1.03);
  }

  .response-panel,
  .geography-shell,
  .final-cta-box,
  .support-copy {
    padding: 1rem;
  }

  .section-heading {
    margin-bottom: 1.2rem;
  }

  .pain-grid,
  .support-list,
  .city-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .topbar .container,
  .hero-layout {
    width: min(calc(100% - 0.8rem), 1440px);
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .topbar-note {
    max-width: 100%;
  }

  .phone-link {
    min-height: 50px;
    padding-inline: 0.95rem;
    border-radius: 16px;
  }

  h1 {
    font-size: clamp(1.82rem, 8.9vw, 2.45rem);
  }

  h2 {
    font-size: clamp(1.58rem, 7.8vw, 2.2rem);
  }

  .section-title-wide {
    max-width: 100%;
    font-size: clamp(1.56rem, 7.4vw, 2.15rem);
  }

  .hero-copy {
    padding: 1rem 0.95rem 1.05rem;
    gap: 0.85rem;
  }

  .hero-heading h1 {
    font-size: clamp(1.72rem, 8vw, 2.22rem);
    line-height: 1.06;
  }

  .hero-lead {
    font-size: 0.91rem;
    line-height: 1.52;
  }

  .hero-trust {
    gap: 0.5rem;
  }

  .hero-trust strong {
    font-size: 0.94rem;
  }

  .hero-trust span {
    font-size: 0.84rem;
  }

  .hero-trust div,
  .hero-compact-item,
  .hero-side-item {
    padding: 0.88rem 0.9rem;
  }

  .button {
    min-height: 50px;
    padding: 0.84rem 1rem;
    border-radius: 16px;
  }

  .pain-card,
  .support-card,
  .quote-card,
  .timeline-step,
  .city-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .response-panel,
  .geography-shell,
  .final-cta-box,
  .support-copy {
    padding: 1rem;
  }

  .support-copy-points span {
    padding: 0.4rem 0.66rem;
    font-size: 0.76rem;
  }

  .quote-card::before {
    font-size: 3.25rem;
  }

  .main-office {
    padding: 0.95rem;
    border-radius: 20px;
  }

  .main-office strong {
    font-size: 1.08rem;
  }

  .footer-copy strong {
    font-size: 0.98rem;
  }

  .footer-copy p,
  .footer-address {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .cookie-banner {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .popup-dialog {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .topbar .container,
  .hero-layout {
    width: min(calc(100% - 0.7rem), 1440px);
  }

  .topbar-inner {
    gap: 0.62rem;
  }

  .brand {
    gap: 0.62rem;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span,
  .topbar-note {
    font-size: 0.82rem;
  }

  .hero {
    padding: 0.8rem 0 1.15rem;
  }

  .hero-copy,
  .response-panel,
  .support-copy,
  .geography-shell,
  .final-cta-box {
    padding: 0.92rem;
    border-radius: 22px;
  }

  .hero-trust div,
  .hero-compact-item,
  .hero-side-item,
  .pain-card,
  .support-card,
  .quote-card,
  .timeline-step,
  .city-card,
  .callback-card-large {
    padding: 0.92rem;
    border-radius: 18px;
  }

  .hero-heading h1 {
    font-size: clamp(1.54rem, 8.4vw, 2rem);
  }

  h2,
  .section-title-wide,
  .signal-copy h2,
  .support-title {
    font-size: clamp(1.38rem, 7vw, 1.86rem);
    line-height: 1.08;
  }

  .hero-lead,
  .section-heading p,
  .support-copy p,
  .main-office p,
  .final-cta-copy p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .hero-compact-item strong,
  .hero-side-item strong,
  .support-card h3,
  .city-card h3 {
    font-size: 0.95rem;
  }

  .hero-compact-item p,
  .hero-side-item span,
  .pain-card p,
  .support-card p,
  .quote-card p,
  .city-card p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .button {
    min-height: 48px;
    font-size: 0.93rem;
  }

  .callback-head strong {
    font-size: 0.98rem;
  }

  .field span,
  .consent span,
  .callback-note,
  .form-status {
    font-size: 0.86rem;
  }

  .field input,
  .field textarea {
    padding: 0.86rem 0.9rem;
    font-size: 16px;
  }

  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.82rem;
  }

  .popup-shell {
    padding: 0.45rem;
  }

  .popup-dialog,
  .popup-form {
    max-height: calc(100svh - 0.9rem);
  }
}

@media (max-width: 380px) {
  .topbar-inner {
    gap: 0.58rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero-trust {
    gap: 0.42rem;
  }

  .hero-trust div,
  .hero-compact-item,
  .hero-side-item,
  .pain-card,
  .support-card,
  .quote-card,
  .timeline-step,
  .city-card {
    padding: 0.84rem;
  }

  .hero-heading h1 {
    font-size: clamp(1.46rem, 8.8vw, 1.84rem);
  }

  .button {
    min-height: 46px;
    padding: 0.8rem 0.9rem;
  }

  .section-kicker,
  .eyebrow,
  .callback-chip,
  .office-label {
    font-size: 0.72rem;
    padding: 0.38rem 0.62rem;
  }

  .support-copy-points span {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner-copy {
    gap: 0.5rem;
  }

  .cookie-banner-button {
    min-height: 46px;
  }
}

@media (min-width: 821px) and (max-height: 860px) {
  .hero {
    padding: 0.85rem 0 1rem;
  }

  .hero-copy,
  .response-panel {
    padding: 1.15rem;
  }

  h1 {
    font-size: clamp(2rem, 3vw, 3.25rem);
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .hero-compact-list {
    gap: 0.55rem;
  }

  .hero-compact-item {
    padding: 0.8rem 0.88rem;
  }

  .hero-side-list {
    gap: 0.55rem;
  }

  .callback-card {
    padding: 0.82rem;
  }

  .button {
    min-height: 52px;
    padding: 0.82rem 1.15rem;
  }
}
