:root {
  --ink: #f8f1df;
  --muted: #c9bfa8;
  --paper: #090806;
  --card: #15120d;
  --card-strong: #1d1810;
  --cream: #fff8e6;
  --gold: #d6a93c;
  --gold-soft: #f5d780;
  --pool: #32a9b5;
  --line: rgba(214, 169, 60, 0.28);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(214, 169, 60, 0.08) 0 1px, transparent 1px 36px),
    linear-gradient(25deg, rgba(255, 248, 230, 0.035) 0 1px, transparent 1px 42px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(9, 8, 6, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand > span:last-child {
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.brand-logo {
  display: grid;
  width: 82px;
  height: 64px;
  place-items: center;
  overflow: visible;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  transition: color 180ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: clamp(24px, 5vw, 64px);
  min-height: calc(100vh - 79px);
  padding: clamp(40px, 7vw, 86px) clamp(18px, 4vw, 56px) 52px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 96px;
  content: "";
  background: linear-gradient(180deg, rgba(9, 8, 6, 0), var(--paper));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--paper);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.95) 0%, rgba(9, 8, 6, 0.86) 38%, rgba(9, 8, 6, 0.5) 70%, rgba(9, 8, 6, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 8, 6, 0.08) 55%, rgba(9, 8, 6, 0.95) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
}

.hero-content {
  align-self: center;
  max-width: 760px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  color: transparent;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-soft) 44%, var(--gold) 100%);
  background-clip: text;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-list {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--cream);
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
}

.hero-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 16px rgba(214, 169, 60, 0.44);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-note {
  margin: 0 0 28px;
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 900;
}

.button,
button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
button {
  color: var(--paper);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 34px rgba(214, 169, 60, 0.26);
}

.button.secondary {
  color: var(--gold-soft);
  background: rgba(255, 248, 230, 0.06);
  border: 1px solid var(--line);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(241, 185, 77, 0.42);
  outline-offset: 3px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 18, 13, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 248, 230, 0.08);
}

.hero-stats dt {
  color: var(--gold-soft);
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-leaders {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-leaders span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(214, 169, 60, 0.38);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(9, 8, 6, 0.56);
  font-size: 0.88rem;
  font-weight: 900;
}

.offer-panel {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(214, 169, 60, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 169, 60, 0.16), transparent 28%),
    rgba(17, 14, 10, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.offer-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.panel-copy,
.section-copy {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 248, 230, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 94px;
  padding-top: 12px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 241, 223, 0.52);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(241, 185, 77, 0.35);
  border-color: var(--gold);
}

.fine-print {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.quick-contact {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quick-contact p {
  margin-bottom: 10px;
  color: var(--cream);
  font-weight: 950;
  text-align: center;
}

.quick-contact .quick-contact-numbers {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.quick-contact div,
.contact-links,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-contact a,
.contact-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(214, 169, 60, 0.34);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 248, 230, 0.045);
  font-size: 0.86rem;
  font-weight: 900;
}

.trust-section,
.right-fit-section,
.faq-section,
.service-section {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(214, 169, 60, 0.12), rgba(214, 169, 60, 0.02)),
    var(--card);
  color: var(--gold-soft);
  font-weight: 900;
  text-align: center;
}

.mini-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin: 0 clamp(18px, 4vw, 56px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 169, 60, 0.18), rgba(214, 169, 60, 0.04)),
    var(--card);
  box-shadow: var(--shadow);
}

.mini-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.mini-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.network-section {
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

.network-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 169, 60, 0.2), rgba(214, 169, 60, 0.04) 38%, transparent),
    var(--card);
  box-shadow: var(--shadow);
}

.network-card p {
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.network-card .understatement {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--gold-soft);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(28px, 6vw, 80px);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article,
.benefit-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(214, 169, 60, 0.12), rgba(214, 169, 60, 0.02) 42%, transparent),
    var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 248, 230, 0.06);
}

.steps span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-weight: 950;
}

.steps p,
.benefit-grid p,
footer p {
  color: var(--muted);
}

.benefits {
  background:
    linear-gradient(180deg, rgba(214, 169, 60, 0.09), rgba(214, 169, 60, 0.03)),
    var(--card-strong);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.benefit-grid,
.situation-grid,
.compare-grid,
.faq-grid,
.placeholder-grid {
  display: grid;
  gap: 16px;
}

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

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.situations {
  background: var(--paper);
}

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

.situation-grid span {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  background:
    linear-gradient(160deg, rgba(214, 169, 60, 0.12), rgba(214, 169, 60, 0.02)),
    var(--card);
  font-weight: 900;
  text-align: center;
}

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

.placeholder-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(214, 169, 60, 0.12), rgba(214, 169, 60, 0.02) 42%, transparent),
    var(--card);
}

.placeholder-grid h3 {
  color: var(--cream);
  font-size: 1.25rem;
}

.placeholder-grid p {
  color: var(--muted);
}

.comparison {
  background:
    linear-gradient(180deg, rgba(214, 169, 60, 0.08), rgba(214, 169, 60, 0.02)),
    var(--card-strong);
}

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

.compare-grid article,
.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(214, 169, 60, 0.12), rgba(214, 169, 60, 0.02) 42%, transparent),
    var(--card);
}

.compare-grid h3 {
  color: var(--cream);
  font-size: 1.4rem;
}

.compare-grid ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.compare-grid li {
  position: relative;
  padding-left: 22px;
}

.compare-grid li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
}

.faq-section {
  background: var(--paper);
}

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

.faq-grid h3 {
  margin: 0;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 950;
}

.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  border-top: 1px solid rgba(214, 169, 60, 0.2);
}

blockquote {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 4.7rem);
  font-weight: 950;
  line-height: 1;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--gold-soft);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
}

.closing-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(214, 169, 60, 0.2), rgba(214, 169, 60, 0.04)),
    var(--card);
  box-shadow: var(--shadow);
}

.closing-card .eyebrow {
  color: var(--gold);
}

.closing-card .button.primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: none;
}

.thank-you-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 36px);
  text-align: center;
}

.thank-you-heading h1 {
  margin: 0;
  padding-bottom: 0.08em;
  line-height: 1.08;
}

.thank-you-heading img {
  width: clamp(116px, 16vw, 176px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.closing-actions {
  margin-top: 22px;
}

.section-button {
  margin-top: 18px;
}

.contact-section {
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

.contact-section .closing-card {
  max-width: 920px;
  margin: 0 auto;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #050504;
}

footer p {
  margin: 0;
}

footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

.footer-cta {
  min-width: fit-content;
}

.footer-rights {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.thank-you-footer {
  justify-content: center;
  text-align: center;
}

.thank-you-footer p {
  width: 100%;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 4, 0.74);
  backdrop-filter: blur(10px);
}

.contact-modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 169, 60, 0.2), rgba(214, 169, 60, 0.04)),
    var(--card);
  box-shadow: var(--shadow);
}

.contact-modal-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.contact-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  min-height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 248, 230, 0.06);
  box-shadow: none;
}

.contact-modal-actions {
  display: grid;
  gap: 10px;
}

.contact-modal-actions a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 1px solid rgba(214, 169, 60, 0.34);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 248, 230, 0.045);
  font-weight: 900;
}

.contact-modal-actions span {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .quote-section,
  .mini-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .offer-panel {
    align-self: start;
  }

  .benefit-grid,
  .situation-grid,
  .compare-grid,
  .faq-grid,
  .trust-grid,
  .placeholder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 76px;
    height: 59px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.5rem);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .button,
  .closing-actions {
    width: 100%;
  }

  .hero-stats,
  .benefit-grid,
  .situation-grid,
  .compare-grid,
  .faq-grid,
  .trust-grid,
  .placeholder-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-panel,
  .steps article,
  .benefit-grid article,
  .compare-grid article,
  .faq-grid article,
  .placeholder-grid article,
  .closing-card {
    padding: 20px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-rights {
    text-align: left;
  }

  .thank-you-footer {
    align-items: center;
  }

  .thank-you-footer .footer-rights {
    text-align: center;
  }

  .contact-modal-actions a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .thank-you-heading {
    gap: 14px;
  }

  .thank-you-heading img {
    width: clamp(82px, 28vw, 128px);
  }
}
