:root {
  --bg: #fcf7f7;
  --paper: #fffdfd;
  --paper-soft: #f7eded;
  --text: #421c1d;
  --muted: #7d2b2b;
  --line: rgba(125, 43, 43, 0.14);
  --brand: #be1b1e;
  --brand-bright: #fb4245;
  --brand-deep: #7d2b2b;
  --brand-dark: #160305;
  --shadow: 0 24px 60px rgba(66, 28, 29, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: #f7f3f1;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--brand);
  border-bottom: 1px solid rgba(66, 28, 29, 0.2);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.brand-lockup img {
  width: auto;
  height: 72px;
  filter: brightness(0) invert(1);
}

.brand-hs-mark {
  width: auto;
  height: 22px !important;
}

.brand-lockup-invert img {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 0;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a.is-current {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  cursor: pointer;
  transition: 180ms ease;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #be1b1e 0%, #d4484b 100%);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-dark {
  background: #4a3a3b;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(190, 27, 30, 0.2);
}

.hero {
  padding: 0 0 20px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 0;
  padding: 68px 42px 34px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(47, 25, 31, 0.84) 0%, rgba(47, 25, 31, 0.62) 42%, rgba(47, 25, 31, 0.22) 78%, rgba(47, 25, 31, 0.08) 100%),
    linear-gradient(120deg, rgba(190, 27, 30, 0.14), transparent 24%),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  box-shadow: 0 24px 42px rgba(29, 15, 17, 0.14);
}

.hero-shell-full {
  width: 100%;
  max-width: none;
  border-radius: 0;
  min-height: 640px;
  padding-left: max(24px, calc((100vw - var(--container)) / 2 + 16px));
  padding-right: max(24px, calc((100vw - var(--container)) / 2 + 16px));
}

.hero-copy {
  align-self: start;
  max-width: none;
  display: flex;
  align-items: center;
  min-width: 0;
}

.hero-copy-planning {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.hero-copy-inner {
  width: min(100%, 720px);
  min-width: 0;
}

.hero-mini {
  margin: 0 0 14px;
  color: #f0cccc;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.hero h1 {
  margin: 16px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  max-width: 13ch;
  color: #fff;
}

.hero p {
  max-width: 50ch;
  font-size: 1rem;
  line-height: 1.74;
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-trust-panel {
  display: grid;
  gap: 10px;
  max-width: 440px;
  justify-self: end;
}

.hero-hs-mark {
  width: auto;
  height: 42px;
  justify-self: start;
}


.hero-partner-card {
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
  background: rgba(22, 3, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-partner-card span {
  color: #f0cccc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-partner-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.32rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #fff;
}

.hero-partner-card p {
  margin: 0;
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.hero-partner-card img {
  width: auto;
  height: 34px;
  margin-top: 4px;
}

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

.hero-flow-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(22, 3, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-flow-list b {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.hero-flow-list span {
  font-weight: 800;
  line-height: 1.35;
  min-width: 0;
}

.hero-card-soft ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card-soft li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(125, 43, 43, 0.1);
}

.section {
  padding: 26px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.08em;
}

.section-head p {
  margin: 10px 0 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.segment-grid,
.benefit-grid,
.faq-grid,
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(66, 28, 29, 0.08);
}

.card h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.75;
}

.card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.simulator-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.simulator-wrap-secondary {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.simulator-shell {
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(251, 66, 69, 0.12), transparent 30%),
    var(--paper);
  border: 1px solid rgba(125, 43, 43, 0.08);
  box-shadow: var(--shadow);
}

.simulator-shell-hero {
  align-self: stretch;
  background: rgba(255, 252, 252, 0.98);
  border-radius: 0;
  box-shadow: 0 12px 24px rgba(29, 15, 17, 0.16);
  padding: 28px 30px 24px;
}

.simulator-header h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.88rem;
  letter-spacing: -0.06em;
  text-align: center;
}

.simulator-header p {
  margin: 10px auto 20px;
  max-width: 70ch;
  text-align: center;
  color: var(--muted);
}

.pill-row,
.segment-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

#categoryCaption {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.selector-label {
  margin: 18px 0 8px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.plans-grid-hero {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#plansGrid {
  display: none;
}

.lead-form-hero {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.btn-block {
  width: 100%;
}

.cta-inline-shell {
  margin-top: 20px;
}

.hero-contact-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-contact-points span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(125, 43, 43, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-deep);
  font-weight: 800;
  text-align: center;
}

.simulator-meta {
  display: grid;
  gap: 18px;
}

.pill-row,
.segment-row,
.plans-grid,
.result-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simulator-shell-hero .pill-row,
.simulator-shell-hero .segment-row {
  justify-content: center;
}

.pill-btn,
.segment-btn,
.plan-card {
  border: 1px solid rgba(125, 43, 43, 0.12);
  background: rgba(255,255,255,0.9);
  transition: 180ms ease;
}

.pill-btn,
.segment-btn {
  padding: 12px 16px;
  border-radius: 0;
  cursor: pointer;
  color: var(--brand-deep);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.pill-btn.is-active,
.segment-btn.is-active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-bright) 100%);
  color: #fff;
  box-shadow: none;
}

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

.plan-card {
  padding: 18px;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
}

.plan-card:hover,
.plan-card.is-active {
  border-color: rgba(190, 27, 30, 0.28);
  box-shadow: none;
  transform: none;
}

.plan-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  color: var(--brand);
}

.plan-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-card em {
  display: block;
  margin-top: 10px;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.plan-card small {
  display: block;
  margin-top: 16px;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.plan-card .plan-code {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 8px;
  background: rgba(190, 27, 30, 0.08);
  color: var(--brand);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credit-slider-card {
  margin: 18px auto 0;
  padding: 18px;
  max-width: 760px;
  background: #fff;
  border: 1px solid rgba(125, 43, 43, 0.14);
}

.credit-slider-card.is-active {
  border-color: rgba(190, 27, 30, 0.42);
  box-shadow: inset 0 0 0 2px rgba(190, 27, 30, 0.12);
}

.credit-slider-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.credit-slider-card span {
  color: var(--brand-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.credit-slider-card strong {
  color: var(--brand);
  font-family: "Sora", sans-serif;
  font-size: 1.36rem;
}

.credit-slider-card input[type="range"] {
  width: 100%;
  margin: 18px 0 0;
  accent-color: var(--brand);
}

.credit-slider-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.credit-estimate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.credit-estimate span {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(190, 27, 30, 0.07);
  border: 1px solid rgba(190, 27, 30, 0.14);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.credit-estimate strong {
  color: var(--brand);
  font-size: 1rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.lead-form.is-hidden {
  display: none;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
  color: var(--brand-deep);
  font-size: 0.9rem;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid rgba(125, 43, 43, 0.14);
  background: #fff;
  color: var(--text);
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(251, 66, 69, 0.16);
  border-color: rgba(190, 27, 30, 0.34);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.promotion-form-feedback:empty {
  display: none;
}

.promotion-form .btn[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.result-panel {
  margin-top: 20px;
  padding: 22px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(251, 66, 69, 0.08), rgba(255,255,255,0.98));
  border: 1px solid rgba(190, 27, 30, 0.14);
}

.result-panel.is-hidden,
.helper.is-hidden {
  display: none;
}

.result-panel-inline {
  margin-bottom: 18px;
}

.result-panel.is-success {
  border-color: rgba(41, 122, 70, 0.22);
  background: linear-gradient(180deg, rgba(41, 122, 70, 0.08), rgba(255,255,255,0.98));
}

.result-panel.is-error {
  border-color: rgba(190, 27, 30, 0.24);
  background: linear-gradient(180deg, rgba(190, 27, 30, 0.08), rgba(255,255,255,0.98));
}

.result-panel h3 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.result-logo {
  width: auto;
  height: 52px;
  margin: 0 0 16px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.result-box {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.86);
}

.result-box small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.result-box strong {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.result-box.is-secondary strong {
  font-size: 1.1rem;
}

.simulator-side-card {
  padding: 24px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(66, 28, 29, 0.98), rgba(22, 3, 5, 0.98));
  color: #fff8f8;
  box-shadow: var(--shadow);
}

.simulator-side-card h3,
.simulator-side-card strong {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

.simulator-side-card p,
.simulator-side-card li {
  opacity: 0.86;
  line-height: 1.7;
}

.simulator-side-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.outbox {
  padding: 24px;
  border-radius: 30px;
  background: var(--paper);
  border: 1px solid rgba(125, 43, 43, 0.1);
}

.outbox-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.outbox-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.outbox-item {
  padding: 14px 16px;
  border-radius: 0;
  background: rgba(252, 247, 247, 0.96);
  border: 1px solid rgba(125, 43, 43, 0.1);
}

.outbox-item strong {
  display: block;
  color: var(--brand-deep);
}

.outbox-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.promotion-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.highlights-band {
  margin-top: -24px;
  position: relative;
  z-index: 3;
}

.highlights-grid,
.classic-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-box,
.classic-card,
.step-card,
.faq-row {
  background: #fff;
  border: 1px solid rgba(125, 43, 43, 0.12);
  box-shadow: none;
}

.highlight-box {
  padding: 22px 24px;
  border-radius: 0;
  border-top: 4px solid #be1b1e;
}

.highlight-box small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
}

.highlight-box strong,
.classic-card h3,
.consultation-panel h3,
.step-card h3,
.faq-row h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

.highlight-box strong {
  display: block;
  color: var(--brand);
  font-size: 1.05rem;
}

.highlight-box p,
.classic-card p,
.consultation-panel p,
.step-card p,
.faq-row p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.classic-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.classic-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.08em;
  line-height: 1.04;
}

.classic-head p {
  margin: 16px auto 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.78;
}

.icon-services-grid,
.steps-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.segment-showcase {
  padding-top: 34px;
  padding-bottom: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf7f3 100%);
  border-bottom: 1px solid rgba(125, 43, 43, 0.08);
}

.segment-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.segment-showcase-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(125, 43, 43, 0.12);
  box-shadow: 0 12px 24px rgba(66, 28, 29, 0.08);
}

.segment-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.segment-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 3, 5, 0.08) 0%, rgba(22, 3, 5, 0.78) 100%);
}

.segment-showcase-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.segment-showcase-card small {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.segment-showcase-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.32rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.icon-service-card,
.step-card,
.faq-row,
.media-card {
  background: #fff;
  border: 1px solid rgba(125, 43, 43, 0.12);
}

.icon-service-card {
  text-align: center;
  padding: 28px 24px;
  box-shadow: 0 10px 20px rgba(66, 28, 29, 0.04);
}

.icon-service-card:nth-child(2) .icon-service-dot {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 22%, transparent 22%),
    linear-gradient(135deg, rgba(251, 66, 69, 0.14), rgba(251, 66, 69, 0.28));
  border-color: rgba(251, 66, 69, 0.1);
}

.icon-service-card:nth-child(3) .icon-service-dot {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 22%, transparent 22%),
    linear-gradient(135deg, rgba(74, 58, 59, 0.18), rgba(74, 58, 59, 0.34));
  border-color: rgba(74, 58, 59, 0.12);
}

.icon-service-dot {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: block;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0 22%, transparent 22%),
    linear-gradient(135deg, rgba(190, 27, 30, 0.14), rgba(190, 27, 30, 0.28));
  border: 10px solid rgba(190, 27, 30, 0.08);
}

.icon-service-card h3,
.flow-copy h2,
.step-card h3,
.faq-row h3,
.media-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

.icon-service-card h3 {
  font-size: 1.24rem;
}

.icon-service-card p,
.flow-copy p,
.step-card p,
.faq-row p,
.media-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.flow-section {
  padding-top: 56px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 18% 24%, rgba(190, 27, 30, 0.08), transparent 18%),
    linear-gradient(180deg, #fbf7f3 0%, #f4efea 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(125, 43, 43, 0.06);
}

.flow-section-alt {
  background:
    radial-gradient(circle at 82% 24%, rgba(137, 126, 128, 0.16), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8f4ef 100%);
}

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

.flow-grid-reverse {
  grid-template-columns: 320px minmax(0, 1fr);
}

.flow-copy {
  max-width: 560px;
}

.flow-copy .btn {
  margin-top: 22px;
}

.flow-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.flow-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.flow-visual {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.flow-photo {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border: 1px solid rgba(125, 43, 43, 0.12);
  box-shadow: 0 12px 24px rgba(66, 28, 29, 0.08);
}

.flow-badge {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 66, 69, 0.14);
  color: var(--brand);
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.flow-visual-card {
  width: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(125, 43, 43, 0.12);
  text-align: center;
  box-shadow: 0 12px 24px rgba(66, 28, 29, 0.06);
  border-top: 4px solid rgba(190, 27, 30, 0.55);
}

.flow-visual-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.flow-visual-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.flow-visual-dark {
  padding: 26px;
  border-radius: 0;
  box-shadow: 0 18px 36px rgba(29, 15, 17, 0.14);
}

.flow-inline-media {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.flow-inline-media img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  border: 1px solid rgba(125, 43, 43, 0.12);
}

.flow-inline-copy {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(125, 43, 43, 0.12);
}

.flow-inline-copy strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.flow-inline-copy p {
  margin: 10px 0 0;
}

.section-steps {
  padding-top: 56px;
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, #f7f2eb 0%, #ffffff 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.step-card {
  text-align: center;
  padding: 30px 24px;
  box-shadow: 0 10px 20px rgba(66, 28, 29, 0.04);
}

.step-card b {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(190, 27, 30, 0.1);
  color: var(--brand);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.reason-band {
  margin-top: 28px;
  background: #160305;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.reason-band-grid {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-section {
  padding-top: 56px;
  padding-bottom: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f2eb 100%);
  border-top: 1px solid rgba(125, 43, 43, 0.05);
}

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

.faq-row {
  padding: 24px 26px;
  border-radius: 0;
  box-shadow: 0 8px 16px rgba(66, 28, 29, 0.03);
  border-left: 3px solid rgba(190, 27, 30, 0.22);
}

.faq-row h3 {
  font-size: 1.25rem;
}

.media-section {
  padding-top: 56px;
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, #f7f2eb 0%, #ffffff 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.media-card {
  box-shadow: 0 14px 24px rgba(66, 28, 29, 0.06);
  overflow: hidden;
}

.media-card div {
  padding: 18px;
}

.media-card h3 {
  font-size: 1.18rem;
}

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

.process-step {
  padding: 22px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid rgba(125, 43, 43, 0.1);
}

.process-step b {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(190, 27, 30, 0.1);
  color: var(--brand);
  font-family: "Sora", sans-serif;
  margin-bottom: 16px;
}

.cta-band {
  margin: 0 0 50px;
  padding: 30px;
  border-radius: 0;
  background:
    linear-gradient(140deg, #be1b1e 0%, #7d2b2b 55%, #421c1d 100%);
  color: #fff8f8;
  box-shadow: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-copy {
  display: grid;
  gap: 14px;
}

.cta-band h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.07em;
}

.cta-band p {
  margin: 10px 0 0;
  opacity: 0.88;
  line-height: 1.75;
}

.cta-logo-invert {
  width: auto;
  height: 100px;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
}

.footer-avanti-mark {
  width: auto;
  height: 54px;
  margin-bottom: 6px;
}

.footer-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-hs-link {
  display: inline-flex;
  align-items: center;
}

.footer-hs-mark {
  width: auto;
  height: 22px;
  filter: brightness(0) invert(1);
}

.page-hero {
  padding: 42px 0 18px;
}

.page-hero-shell {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(155deg, rgba(251, 66, 69, 0.16), transparent 30%),
    var(--paper);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.08em;
  max-width: 11ch;
}

.page-hero p {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.75;
}

.page-hero-promotion .page-hero-shell {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-promotion .section-kicker {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-promotion h1 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.06em;
}

.page-hero-promotion p {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.04rem;
}

.page-hero-dark .page-hero-shell {
  background:
    linear-gradient(90deg, rgba(47, 25, 31, 0.9) 0%, rgba(47, 25, 31, 0.72) 62%, rgba(47, 25, 31, 0.48) 100%),
    url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero-dark .section-kicker,
.page-hero-dark h1,
.page-hero-dark p {
  color: #fff;
}

.page-hero-dark p {
  color: rgba(255, 255, 255, 0.84);
}

.page-partner-logo {
  width: auto;
  height: 44px;
  margin-top: 22px;
}

.consultants-section {
  background: #fff;
}

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

.consultant-card {
  display: grid;
  background: #fff;
  border: 1px solid rgba(125, 43, 43, 0.12);
  box-shadow: 0 12px 24px rgba(66, 28, 29, 0.08);
}

.consultant-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.consultant-card > div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.consultant-card small {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consultant-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
  color: var(--brand-deep);
}

.consultant-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.consultant-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.consultant-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.consultant-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

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

.consultant-links a:hover {
  background: var(--brand-deep);
}

.site-footer {
  padding: 24px 0 42px;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) minmax(150px, 0.75fr) minmax(220px, 1fr) auto;
  gap: 26px;
  align-items: start;
  border-top: 1px solid rgba(125, 43, 43, 0.08);
  padding-top: 24px;
}

.footer-brand strong,
.footer-contact strong {
  display: block;
  color: var(--brand-deep);
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.footer-brand p,
.footer-contact p {
  margin: 10px 0 0;
  max-width: 42ch;
  line-height: 1.65;
}

.footer-operator {
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-top: 18px;
}

.footer-operator span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-operator a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: var(--brand);
}

.footer-operator img {
  width: auto;
  height: 28px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--brand);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--brand-deep);
}

.footer-contact span,
.footer-credit span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 43, 43, 0.16);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.64);
}

.nav-social .social-icon {
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.nav-social .social-icon.is-disabled {
  opacity: 0.92;
}

.footer-credit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding-top: 8px;
}

.footer-credit span {
  margin: 0;
  color: rgba(125, 43, 43, 0.72);
}

.footer-credit img {
  width: auto;
  height: 20px;
  opacity: 0.72;
}

.footer-credit a:hover img {
  opacity: 1;
}

.helper {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 0;
  background: rgba(22, 3, 5, 0.05);
  color: var(--brand-deep);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .flow-grid,
  .simulator-wrap,
  .segment-grid,
  .benefit-grid,
  .faq-grid,
  .page-grid,
  .process-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .highlights-grid,
  .segment-showcase-grid,
  .icon-services-grid,
  .steps-grid,
  .media-grid,
  .reason-band-grid {
    grid-template-columns: 1fr;
  }

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

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

  .simulator-wrap-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .section-head,
  .classic-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-main {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .hero-shell,
  .flow-grid,
  .flow-grid-reverse,
  .simulator-wrap,
  .highlights-grid,
  .consultants-grid,
  .segment-showcase-grid,
  .icon-services-grid,
  .steps-grid,
  .media-grid,
  .reason-band-grid,
  .segment-grid,
  .benefit-grid,
  .faq-grid,
  .page-grid,
  .process-strip,
  .plans-grid,
  .lead-form,
  .result-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .simulator-shell,
  .card,
  .outbox,
  .simulator-side-card,
  .highlight-box,
  .icon-service-card,
  .flow-visual-card,
  .step-card,
  .faq-row,
  .media-card div,
  .cta-band,
  .page-hero-shell {
    padding: 24px;
    border-radius: 0;
  }

  .hero-copy-planning {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    padding: 18px 20px 22px;
    background: var(--brand);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    box-shadow: 0 18px 36px rgba(22, 3, 5, 0.22);
    z-index: 25;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 0.78rem;
  }

  .nav-social {
    justify-content: center;
    gap: 6px;
    padding-top: 4px;
  }

  .nav-social .social-icon {
    width: 28px;
    height: 28px;
  }

  .nav-social .social-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero h1 {
    font-size: 2.35rem;
    max-width: 8ch;
  }

  .hero p {
    max-width: 300px;
    font-size: 0.94rem;
  }

  .hero-mini {
    max-width: 24ch;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  .hero-shell {
    min-height: auto;
    padding: 42px 20px 20px;
    background-position: center;
    overflow: hidden;
  }

  .plans-grid-hero,
  .lead-form-hero,
  .pill-row,
  .segment-row {
    grid-template-columns: 1fr;
  }

  .credit-slider-card div {
    align-items: flex-start;
    flex-direction: column;
  }

  .credit-estimate {
    grid-template-columns: 1fr;
  }

  .hero-shell-full {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
  }

  .hero-trust-panel,
  .hero-flow-list {
    max-width: none;
    justify-self: stretch;
    width: min(calc(100vw - 56px), 300px);
  }

  .hero-hs-mark {
    height: 38px;
  }

  .hero-copy,
  .hero-copy-inner {
    width: min(calc(100vw - 56px), 300px);
    max-width: min(calc(100vw - 56px), 300px);
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    min-width: 0;
    padding: 13px 10px;
    font-size: 0.86rem;
  }

  .hero-flow-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 13px 12px;
  }

  .hero-flow-list b {
    width: 30px;
    height: 30px;
  }

  .simulator-shell-hero {
    width: 100%;
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-social,
  .footer-credit {
    justify-self: center;
  }

  .footer-brand-stack {
    align-items: center;
  }

  .footer-brand p,
  .footer-contact p {
    max-width: 34ch;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-credit {
    justify-self: center;
    justify-content: center;
  }

  .highlights-band {
    margin-top: 0;
    padding-top: 22px;
  }

  .flow-visual {
    justify-items: stretch;
  }

  .flow-inline-media {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-copy {
    justify-items: center;
    text-align: center;
  }
}
