:root {
  --ink: #0c1116;
  --muted: #66717d;
  --line: #dfe5eb;
  --paper: #f7f8f9;
  --white: #ffffff;
  --blue: #0a3458;
  --blue-2: #0d5f91;
  --orange: #f2742f;
  --green: #1b7f64;
  --shadow: 0 24px 70px rgba(12, 17, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

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

input,
select,
textarea,
button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 28px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 55px rgba(12, 17, 22, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

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

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(140deg, var(--blue), var(--orange));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #25313d;
  font-size: 14px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(10, 52, 88, 0.08);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  align-items: end;
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 46px;
  background: #d9e2e8;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-scrim {
  background: linear-gradient(90deg, rgba(247, 248, 249, 0.94) 0%, rgba(247, 248, 249, 0.76) 34%, rgba(247, 248, 249, 0.16) 67%, rgba(247, 248, 249, 0.38) 100%);
}

.hero-content {
  position: relative;
  width: min(670px, 100%);
  padding-bottom: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 590px;
  color: #303a44;
  font-size: 22px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 720;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: #08283f;
}

.button-ghost {
  border-color: rgba(12, 17, 22, 0.24);
  background: rgba(255, 255, 255, 0.58);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 44px;
  display: flex;
  width: min(360px, calc(100% - 48px));
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-panel p {
  margin: 4px 0 0;
  color: var(--muted);
}

.status-dot {
  width: 13px;
  height: 13px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(27, 127, 100, 0.14);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: var(--line);
}

.trust-band div {
  min-height: 160px;
  padding: 36px 28px;
  background: var(--white);
}

.metric {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 42px;
  font-weight: 820;
}

.trust-band p,
.flow-card p,
.strategy-card p,
.product-copy p,
.form-intro p,
.form-aside li {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 92px max(24px, calc((100vw - 1120px) / 2));
}

.section.compact {
  padding-top: 72px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.flow-grid,
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.flow-card,
.strategy-card,
.confirmation-box,
.form-aside,
.request-form,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(12, 17, 22, 0.07);
}

.flow-card,
.strategy-card {
  min-height: 236px;
  padding: 24px;
}

.flow-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 46px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: #11171d;
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
  padding: 86px max(24px, calc((100vw - 1120px) / 2));
  background: var(--white);
}

.payment-copy {
  max-width: 680px;
}

.payment-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.payment-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: 0 14px 45px rgba(12, 17, 22, 0.08);
}

.payment-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.payment-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.payment-logos img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid #e3e9ef;
  border-radius: 8px;
  background: var(--white);
}

.product-copy p {
  color: #b7c1ca;
  font-size: 19px;
}

.market-screen {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: linear-gradient(180deg, #f7f8f9, #d9e2e8);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.35);
}

.screen-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(12, 17, 22, 0.08);
}

.screen-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b8c2cb;
}

.screen-body {
  padding: 26px;
}

.quote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid #d8e0e7;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.quote-row.hot {
  border-color: rgba(242, 116, 47, 0.42);
  box-shadow: 0 14px 40px rgba(242, 116, 47, 0.16);
}

.quote-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.payment-badge {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 800;
}

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

.strategy-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 760;
}

.form-hero,
.confirmation-page,
.dashboard {
  padding: 132px max(24px, calc((100vw - 1120px) / 2)) 64px;
}

.form-intro,
.dashboard-heading {
  max-width: 820px;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2)) 90px;
}

.request-form,
.form-aside {
  padding: 26px;
}

.form-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-section h2,
.form-aside h2 {
  font-size: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #2c3742;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #ccd6df;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfd;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.choice-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.choice-grid li label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.choice-grid input {
  width: 18px;
  min-height: 18px;
}

.full-field {
  margin-top: 16px;
}

.form-errors {
  margin-bottom: 20px;
  color: #a74018;
  font-weight: 760;
}

.form-aside {
  align-self: start;
  position: sticky;
  top: 96px;
}

.form-aside ol {
  padding-left: 20px;
}

.confirmation-page {
  min-height: 82vh;
  display: grid;
  place-items: center;
}

.confirmation-box {
  width: min(720px, 100%);
  padding: 36px;
}

.confirmation-box dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.confirmation-box dl div {
  padding: 16px;
  border-radius: 8px;
  background: var(--paper);
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

dd {
  margin: 6px 0 0;
  font-weight: 760;
}

.dashboard-heading {
  display: flex;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.dashboard-heading h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 7vw, 74px);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #6d391c;
  background: #fff0df;
  font-weight: 760;
  white-space: nowrap;
}

.empty-state {
  color: var(--muted);
  text-align: center;
}

.internal-login {
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 72px;
  background:
    linear-gradient(120deg, rgba(10, 52, 88, 0.08), rgba(242, 116, 47, 0.10)),
    #f3f6f8;
}

.login-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: center;
}

.login-panel h1 {
  max-width: 660px;
}

.login-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.login-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(12, 17, 22, 0.12);
  backdrop-filter: blur(18px);
}

.login-form p {
  margin: 0;
  font-size: 14px;
}

.internal-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  min-height: 92vh;
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 82px;
  background: #eef2f5;
}

.internal-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 45px rgba(12, 17, 22, 0.08);
  backdrop-filter: blur(16px);
}

.internal-sidebar h1 {
  margin-bottom: 0;
  font-size: 38px;
}

.internal-nav {
  display: grid;
  gap: 8px;
}

.internal-nav a {
  padding: 12px 13px;
  border-radius: 8px;
  color: #26313c;
  font-weight: 740;
}

.internal-nav a:hover,
.internal-nav a.active {
  color: var(--white);
  background: var(--blue);
}

.internal-main {
  display: grid;
  gap: 22px;
}

.internal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.internal-topline h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
}

.internal-metrics,
.internal-grid,
.pricing-logic {
  display: grid;
  gap: 16px;
}

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

.internal-metrics div,
.internal-card,
.pricing-logic article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(12, 17, 22, 0.06);
}

.internal-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 42px;
  font-weight: 840;
}

.internal-metrics p,
.internal-card p,
.pricing-logic p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

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

.pricing-logic span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 820;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px max(24px, calc((100vw - 1120px) / 2));
  color: #dce4eb;
  background: var(--ink);
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer a {
  color: #ffffff;
  font-weight: 760;
}

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

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

.buy-hero {
  padding: 138px max(24px, calc((100vw - 1120px) / 2)) 46px;
  background:
    radial-gradient(circle at 85% 20%, rgba(242, 116, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff, #eef2f5);
}

.buy-hero-copy {
  max-width: 880px;
}

.buy-hero-copy p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.buy-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2)) 92px;
  background: #eef2f5;
}

.buy-progress {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 45px rgba(12, 17, 22, 0.08);
  backdrop-filter: blur(16px);
}

.progress-step {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.progress-step span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: #eef2f5;
  font-weight: 800;
}

.progress-step.active {
  color: var(--ink);
}

.progress-step.active span {
  color: var(--white);
  background: var(--blue);
}

.progress-step p {
  margin: 0;
  font-weight: 760;
}

.buy-main {
  display: grid;
  gap: 22px;
}

.purchase-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.path-card,
.buy-form,
.results-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(12, 17, 22, 0.07);
}

.path-card {
  min-height: 230px;
  padding: 24px;
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.path-card.selected {
  position: relative;
  border-color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #f0f6fb);
  box-shadow: 0 24px 70px rgba(10, 52, 88, 0.18);
  transform: translateY(-4px);
}

.path-card.selected::after {
  content: "Seleccionado";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.path-card.is-muted {
  opacity: 0.46;
  filter: grayscale(0.25);
  box-shadow: none;
}

.path-card.is-muted:hover {
  opacity: 0.82;
  filter: none;
}

.path-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.path-card h2 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.08;
}

.path-card p,
.buy-form-section p,
.results-heading p,
.offer-card p {
  color: var(--muted);
  line-height: 1.52;
}

.buy-form,
.results-section {
  padding: 28px;
}

.advisor-flow {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(12, 17, 22, 0.07);
}

.advisor-header {
  max-width: 780px;
}

.advisor-header h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.advisor-header p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.chat-stack {
  display: grid;
  gap: 12px;
}

.answer-chip {
  justify-self: start;
  max-width: min(560px, 100%);
  padding: 12px 15px;
  border-radius: 8px;
  color: #163453;
  background: #eaf3fb;
  font-weight: 760;
}

.conversation-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #d8e0e7;
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: 0 16px 45px rgba(12, 17, 22, 0.07);
}

.conversation-card h3 {
  margin-bottom: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
}

.conversation-card p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.52;
}

.conversation-card .button {
  justify-self: start;
}

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

.choice-card {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid #d8e0e7;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  min-height: 18px;
}

.choice-card span {
  padding-right: 24px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.45;
}

.choice-card:has(input:checked) {
  border-color: var(--blue);
  background: #f0f6fb;
}

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

.compact-field {
  max-width: 280px;
}

.buy-form-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.buy-form-section h2,
.results-heading h2 {
  font-size: clamp(28px, 4vw, 46px);
}

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

.project-option,
.catalog-option {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 148px;
  padding: 18px;
  border: 1px solid #d8e0e7;
  border-radius: 8px;
  background: #fbfcfd;
  cursor: pointer;
}

.project-option input,
.catalog-option input {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  min-height: 18px;
}

.project-option:has(input:checked),
.catalog-option:has(input:checked) {
  border-color: var(--blue);
  background: #f0f6fb;
}

.project-option span,
.catalog-option small {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.45;
}

.catalog-option > span {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.results-heading {
  margin-bottom: 22px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid #d8e0e7;
  border-radius: 8px;
  background: #fbfcfd;
}

.offer-card:has(.offer-badge) {
  border-color: rgba(242, 116, 47, 0.46);
  box-shadow: 0 18px 50px rgba(242, 116, 47, 0.16);
}

.offer-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.offer-top span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.offer-top small,
.offer-meta small,
.price-range small {
  color: var(--muted);
}

.offer-card h3 {
  margin-bottom: 0;
}

.offer-badge {
  width: max-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: #7a3414;
  background: #fff0df;
  font-size: 13px;
  font-weight: 820;
}

.offer-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.offer-meta div,
.price-range {
  display: grid;
  gap: 5px;
  padding: 13px;
  border-radius: 8px;
  background: var(--white);
}

.offer-note {
  color: var(--green);
  font-weight: 780;
}

.price-range {
  border: 1px solid rgba(242, 116, 47, 0.28);
}

.price-range strong {
  color: var(--blue);
  font-size: 22px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding-top: 118px;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(247, 248, 249, 0.96), rgba(247, 248, 249, 0.70), rgba(247, 248, 249, 0.28));
  }

  .hero-content {
    align-self: start;
    padding-bottom: 0;
  }

  .hero-panel {
    right: 24px;
    bottom: 28px;
  }

  .trust-band,
  .flow-grid,
  .strategy-grid,
  .product-section,
  .payment-section,
  .form-shell,
  .login-panel,
  .internal-shell,
  .internal-metrics,
  .internal-grid,
  .pricing-logic,
  .buy-shell,
  .purchase-paths,
  .buy-form-section,
  .project-grid,
  .catalog-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    padding: 28px 24px;
  }

  .product-section {
    padding-top: 76px;
  }

  .field-grid,
  .choice-grid,
  .choice-card-grid,
  .confirmation-box dl {
    grid-template-columns: 1fr;
  }

  .form-aside {
    position: static;
  }

  .internal-sidebar {
    position: static;
  }

  .buy-progress {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .progress-step {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-heading,
  .internal-topline,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span:last-child {
    display: none;
  }

  .button {
    width: 100%;
  }
}
