:root {
  --profile-ink: #080807;
  --profile-paper: #f1eee6;
  --profile-white: #fffdf8;
  --profile-muted: #6f6d66;
  --profile-line: #d0cbc0;
  --profile-orange: #ff4b22;
  --profile-orange-dark: #d93b16;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.profile-page {
  margin: 0;
  background: var(--profile-paper);
  color: var(--profile-ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.profile-page h1,
.profile-page h2,
.profile-page h3,
.profile-page p,
.profile-page li,
.profile-page summary {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.profile-page a {
  color: inherit;
}

.profile-shell {
  width: min(1220px, calc(100% - 72px));
  margin-inline: auto;
}

.profile-skip {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--profile-white);
  color: var(--profile-ink);
  transform: translateY(-150%);
}

.profile-skip:focus {
  transform: translateY(0);
}

.profile-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 16px max(36px, calc((100vw - 1220px) / 2));
  color: var(--profile-white);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: background-color .25s ease, min-height .25s ease, border-color .25s ease;
}

.profile-header.is-scrolled {
  min-height: 72px;
  background: rgba(9, 9, 8, .94);
  border-bottom-color: rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px);
}

.profile-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.profile-brand .brand-mark {
  width: 48px;
  height: 48px;
}

.profile-brand .brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-brand .brand-type {
  color: var(--profile-white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.profile-brand .brand-type span {
  color: var(--profile-orange);
}

.profile-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.profile-nav a {
  text-decoration: none;
}

.profile-nav > a:not(.profile-nav-cta) {
  color: rgba(255, 255, 255, .76);
}

.profile-nav-cta {
  padding: 12px 17px;
  background: var(--profile-orange);
  color: var(--profile-ink);
  font-weight: 800;
}

.profile-hero {
  position: relative;
  min-height: 780px;
  padding: 150px 0 86px;
  overflow: hidden;
  background: var(--profile-ink);
  color: var(--profile-white);
}

.profile-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .17) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.profile-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(430px, .93fr);
  gap: 72px;
  align-items: center;
}

.profile-kicker,
.profile-index {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
}

.profile-kicker {
  color: var(--profile-orange);
}

.profile-index {
  color: var(--profile-muted);
}

.profile-hero h1 {
  max-width: 760px;
  margin: 24px 0 28px;
  font-size: clamp(60px, 6.4vw, 104px);
  font-weight: 730;
  letter-spacing: -.073em;
  line-height: .91;
}

.profile-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
}

.profile-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.profile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.profile-button:hover {
  transform: translateY(-2px);
}

.profile-button:focus-visible,
.profile-page a:focus-visible,
.profile-page summary:focus-visible,
.profile-page input:focus-visible,
.profile-page select:focus-visible,
.profile-page textarea:focus-visible {
  outline: 3px solid var(--profile-orange);
  outline-offset: 3px;
}

.profile-button-primary {
  background: var(--profile-orange);
  color: var(--profile-ink);
}

.profile-button-primary:hover {
  background: #ff6744;
}

.profile-button-dark {
  width: 100%;
  justify-content: space-between;
  background: var(--profile-ink);
  color: var(--profile-white);
}

.profile-button-dark:hover {
  background: #252522;
}

.profile-text-link {
  color: rgba(255, 255, 255, .78);
  text-underline-offset: 5px;
}

.profile-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin: 36px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  list-style: none;
}

.profile-trust li,
.profile-request-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-trust li > span,
.profile-request-facts li > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--profile-orange);
  border-radius: 50%;
}

.profile-map-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #181816;
}

.profile-map-label {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font: 700 10px ui-monospace, SFMono-Regular, monospace;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .56);
}

.profile-map-label span {
  width: 7px;
  height: 7px;
  background: var(--profile-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 75, 34, .14);
}

.profile-map-lines {
  position: absolute;
  inset: -18%;
  transform: rotate(-9deg) scale(1.1);
  background-image:
    linear-gradient(36deg, transparent 47%, rgba(255, 255, 255, .11) 48%, rgba(255, 255, 255, .11) 50%, transparent 51%),
    linear-gradient(-22deg, transparent 47%, rgba(255, 255, 255, .09) 48%, rgba(255, 255, 255, .09) 50%, transparent 51%),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 230px 150px, 260px 210px, 38px 38px, 38px 38px;
}

.profile-map-lines i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.profile-map-lines i:nth-child(1) { top: 18%; left: 25%; }
.profile-map-lines i:nth-child(2) { top: 36%; left: 68%; }
.profile-map-lines i:nth-child(3) { top: 72%; left: 20%; }
.profile-map-lines i:nth-child(4) { top: 79%; left: 76%; }
.profile-map-lines i:nth-child(5) { top: 51%; left: 45%; }
.profile-map-lines i:nth-child(6) { top: 11%; left: 84%; }

.profile-pin {
  position: absolute;
  z-index: 3;
  top: 92px;
  left: 55%;
  width: 70px;
  height: 70px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--profile-orange);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 18px 55px rgba(255, 75, 34, .35);
}

.profile-pin::after {
  content: "";
  position: absolute;
  inset: 19px;
  background: var(--profile-ink);
  border-radius: 50%;
}

.profile-pin span {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(255, 75, 34, .42);
  border-radius: 50%;
  animation: profile-pulse 2.8s ease-out infinite;
}

@keyframes profile-pulse {
  0% { transform: scale(.7); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

.profile-result-card {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 34px;
  left: 30px;
  padding: 28px;
  background: var(--profile-white);
  color: var(--profile-ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
}

.profile-result-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  font: 750 11px ui-monospace, SFMono-Regular, monospace;
  letter-spacing: .11em;
}

.profile-result-top b {
  letter-spacing: 0;
}

.profile-result-top b span {
  color: var(--profile-orange);
  letter-spacing: .04em;
}

.profile-result-card h2 {
  margin-bottom: 13px;
  font-size: clamp(34px, 3.3vw, 52px);
  letter-spacing: -.055em;
  line-height: .96;
}

.profile-result-card > p {
  margin-bottom: 24px;
  color: var(--profile-muted);
}

.profile-result-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--profile-line);
}

.profile-result-actions span {
  padding: 16px 6px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.profile-result-actions span + span {
  border-left: 1px solid var(--profile-line);
}

.profile-map-coordinate {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  text-align: right;
  color: rgba(255, 255, 255, .28);
  font: 10px/1.5 ui-monospace, SFMono-Regular, monospace;
}

.profile-problem,
.profile-service,
.profile-process,
.profile-faq,
.profile-request {
  padding: 120px 0;
}

.profile-problem-layout {
  display: grid;
  grid-template-columns: .38fr 1.62fr;
  gap: 72px;
}

.profile-problem-layout > div {
  max-width: 950px;
}

.profile-section-title {
  margin: 18px 0 26px;
  font-size: clamp(52px, 6.1vw, 92px);
  font-weight: 720;
  letter-spacing: -.068em;
  line-height: .94;
}

.profile-body-large {
  max-width: 750px;
  color: var(--profile-muted);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.55;
}

.profile-service {
  background: var(--profile-white);
}

.profile-section-head {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.profile-section-head .profile-section-title {
  margin: 0;
}

.profile-service-ledger {
  border-top: 1px solid var(--profile-line);
}

.profile-service-row {
  display: grid;
  grid-template-columns: 80px .75fr 1.25fr;
  gap: 30px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--profile-line);
}

.profile-service-row > span {
  color: var(--profile-orange-dark);
  font: 800 12px ui-monospace, SFMono-Regular, monospace;
}

.profile-service-row h3 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 40px);
  letter-spacing: -.045em;
}

.profile-service-row p {
  max-width: 540px;
  margin: 0;
  color: var(--profile-muted);
  font-size: 17px;
  line-height: 1.6;
}

.profile-process {
  background: var(--profile-orange);
}

.profile-process .profile-index {
  color: rgba(8, 8, 7, .54);
}

.profile-process .profile-section-title {
  max-width: 850px;
}

.profile-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid rgba(8, 8, 7, .35);
  list-style: none;
}

.profile-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 28px 30px 16px 0;
}

.profile-steps li + li {
  padding-left: 30px;
  border-left: 1px solid rgba(8, 8, 7, .35);
}

.profile-steps > li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--profile-ink);
  border-radius: 50%;
  font-weight: 800;
}

.profile-steps h3 {
  margin: 4px 0 12px;
  font-size: 27px;
  letter-spacing: -.04em;
}

.profile-steps p {
  margin: 0;
  color: rgba(8, 8, 7, .67);
  line-height: 1.55;
}

.profile-price {
  padding: 110px 0;
  background: var(--profile-ink);
  color: var(--profile-white);
}

.profile-price-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 86px;
  align-items: center;
}

.profile-price-figure {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: var(--profile-orange);
  color: var(--profile-ink);
}

.profile-price-figure .profile-index {
  margin-bottom: auto;
  color: rgba(8, 8, 7, .55);
}

.profile-price-figure > span {
  font-size: 22px;
}

.profile-price-figure strong {
  display: block;
  margin-left: -5px;
  font-size: clamp(78px, 9.4vw, 142px);
  font-weight: 760;
  letter-spacing: -.075em;
  line-height: .86;
  white-space: nowrap;
}

.profile-price-figure > p:last-child {
  margin: 24px 0 0;
  color: rgba(8, 8, 7, .63);
  font-weight: 700;
}

.profile-price-copy .profile-section-title {
  max-width: 720px;
  font-size: clamp(46px, 5vw, 76px);
}

.profile-checklist {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}

.profile-checklist li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .72);
}

.profile-checklist li > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--profile-orange);
  border-radius: 50%;
}

.profile-price-note {
  margin-top: 28px;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
  line-height: 1.6;
}

.profile-faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.profile-faq-layout .profile-section-title {
  font-size: clamp(48px, 5vw, 76px);
}

.profile-faq-list {
  border-top: 1px solid var(--profile-line);
}

.profile-faq-list details {
  border-bottom: 1px solid var(--profile-line);
}

.profile-faq-list summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -.025em;
  list-style: none;
}

.profile-faq-list summary::-webkit-details-marker {
  display: none;
}

.profile-faq-list summary span {
  text-align: right;
  color: var(--profile-orange-dark);
  font-size: 25px;
  transition: transform .2s ease;
}

.profile-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.profile-faq-list details p {
  max-width: 700px;
  margin: -5px 42px 24px 0;
  color: var(--profile-muted);
  line-height: 1.65;
}

.profile-request {
  background: var(--profile-white);
}

.profile-request-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.profile-request-copy {
  position: sticky;
  top: 112px;
}

.profile-request-copy .profile-section-title {
  font-size: clamp(48px, 5.4vw, 80px);
}

.profile-request-facts {
  display: grid;
  gap: 13px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--profile-muted);
  list-style: none;
}

.profile-form {
  display: grid;
  gap: 20px;
  padding: 38px;
  background: var(--profile-paper);
  border: 1px solid var(--profile-line);
}

.profile-form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.profile-form label:not(.profile-form-consent) {
  display: grid;
  gap: 9px;
  color: var(--profile-ink);
  font-size: 13px;
  font-weight: 750;
}

.profile-form label span small {
  color: var(--profile-muted);
  font-weight: 400;
}

.profile-form input,
.profile-form select,
.profile-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid var(--profile-line);
  border-radius: 0;
  background: var(--profile-white);
  color: var(--profile-ink);
  font: inherit;
}

.profile-form textarea {
  min-height: 122px;
  resize: vertical;
}

.profile-form input:user-invalid,
.profile-form select:user-invalid,
.profile-form textarea:user-invalid {
  border-color: #b52612;
}

.profile-form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--profile-muted);
  font-size: 12px;
  line-height: 1.55;
}

.profile-form-consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: var(--profile-orange);
}

.profile-form-consent a {
  text-underline-offset: 3px;
}

.profile-form-status {
  display: none;
  padding: 13px 15px;
  border-left: 3px solid var(--profile-orange);
  background: rgba(255, 75, 34, .08);
  font-size: 13px;
  line-height: 1.5;
}

.profile-form-status:not(:empty) {
  display: block;
}

.profile-form-status[data-state="error"] {
  border-color: #b52612;
  background: rgba(181, 38, 18, .08);
}

.profile-form-note {
  margin: -5px 0 0;
  text-align: center;
  color: var(--profile-muted);
  font-size: 12px;
}

.profile-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.profile-footer {
  padding: 58px 0;
  background: var(--profile-ink);
  color: var(--profile-white);
}

.profile-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr auto;
  gap: 36px;
  align-items: center;
}

.profile-footer-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
}

.profile-footer nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  font-size: 13px;
}

.profile-reveal {
  opacity: 1;
  transform: none;
}

.js .profile-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.2, .7, .2, 1), transform .65s cubic-bezier(.2, .7, .2, 1);
}

.js .profile-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.profile-success-page {
  min-height: 100vh;
  background: var(--profile-ink);
  color: var(--profile-white);
}

.profile-success-back {
  color: rgba(255, 255, 255, .7);
  text-underline-offset: 5px;
}

.profile-success {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 0 70px;
}

.profile-success-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.profile-success-pin {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto 34px;
  background: var(--profile-orange);
  color: var(--profile-ink);
  border-radius: 50% 50% 50% 10px;
  transform: rotate(45deg);
  font-size: 30px;
  font-weight: 900;
}

.profile-success-pin span {
  transform: rotate(-45deg);
}

.profile-success h1 {
  margin: 22px 0 28px;
  font-size: clamp(58px, 8vw, 108px);
  line-height: .92;
  letter-spacing: -.07em;
}

.profile-success-inner > p:not(.profile-kicker) {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, .65);
  font-size: 20px;
  line-height: 1.55;
}

.profile-success .profile-hero-actions {
  justify-content: center;
}

.profile-text-link-light {
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 1060px) {
  .profile-hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .profile-map-stage {
    min-height: 510px;
  }

  .profile-problem-layout,
  .profile-section-head,
  .profile-price-layout,
  .profile-faq-layout,
  .profile-request-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .profile-request-copy {
    position: static;
  }

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

@media (max-height: 800px) and (min-width: 1061px) {
  .profile-hero {
    min-height: 720px;
    padding-top: 120px;
    padding-bottom: 46px;
  }

  .profile-hero h1 {
    margin: 18px 0 22px;
    font-size: clamp(56px, 5.9vw, 88px);
  }

  .profile-intro {
    margin-bottom: 24px;
  }

  .profile-trust {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .profile-shell {
    width: min(100% - 32px, 1220px);
  }

  .profile-header {
    min-height: 72px;
    padding: 12px 16px;
    background: rgba(9, 9, 8, .92);
  }

  .profile-brand {
    gap: 10px;
  }

  .profile-brand .brand-mark {
    width: 42px;
    height: 42px;
  }

  .profile-brand .brand-type {
    font-size: 16px;
  }

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

  .profile-nav-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .profile-hero {
    min-height: auto;
    padding: 116px 0 62px;
  }

  .profile-hero-layout {
    gap: 40px;
  }

  .profile-hero h1 {
    margin-top: 18px;
    font-size: clamp(52px, 15vw, 72px);
    line-height: .93;
  }

  .profile-intro {
    font-size: 18px;
  }

  .profile-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .profile-button {
    width: 100%;
  }

  .profile-text-link {
    text-align: center;
  }

  .profile-trust {
    display: grid;
    gap: 12px;
  }

  .profile-map-stage {
    min-height: 480px;
  }

  .profile-pin {
    top: 74px;
    width: 60px;
    height: 60px;
  }

  .profile-pin::after {
    inset: 17px;
  }

  .profile-result-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 22px;
  }

  .profile-result-card h2 {
    font-size: 38px;
  }

  .profile-problem,
  .profile-service,
  .profile-process,
  .profile-faq,
  .profile-request {
    padding: 82px 0;
  }

  .profile-section-title {
    font-size: clamp(48px, 13vw, 68px);
  }

  .profile-service-row {
    grid-template-columns: 42px 1fr;
    gap: 12px 14px;
  }

  .profile-service-row p {
    grid-column: 2;
  }

  .profile-steps {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .profile-steps li,
  .profile-steps li + li {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(8, 8, 7, .35);
  }

  .profile-price {
    padding: 82px 0;
  }

  .profile-price-figure {
    min-height: 360px;
    padding: 25px;
  }

  .profile-price-figure strong {
    font-size: clamp(82px, 28vw, 120px);
  }

  .profile-price-copy .profile-section-title,
  .profile-request-copy .profile-section-title,
  .profile-faq-layout .profile-section-title {
    font-size: clamp(46px, 12vw, 64px);
  }

  .profile-form {
    padding: 23px 18px;
  }

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

  .profile-footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .profile-footer nav {
    justify-content: flex-start;
  }

  .profile-success-back {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .profile-header .profile-brand .brand-type {
    display: none;
  }

  .profile-hero h1 {
    font-size: 49px;
  }

  .profile-result-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .profile-result-actions span {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .profile-page *,
  .profile-page *::before,
  .profile-page *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js .profile-reveal {
    opacity: 1;
    transform: none;
  }
}
