:root {
  --white: #ffffff;
  --accent: #ffc800;
  --ink: #111111;
  --surface: #f4f4f2;
  --line: #d6d6d2;
  --line-soft: #e0e0dc;
  --error: #ff0000;

  --header-h: 75px;
}

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

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: var(--header-h) 0 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

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

  height: auto;
}

a {
  color: var(--ink);
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: 1280px;
  padding-inline: 32px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 200;
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
  padding: 12px 18px;
  transition: top 0.12s ease;
}

.skip-link:focus {
  top: 8px;
}

.eyebrow {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.rule {
  width: 120px;
  height: 8px;
  background: var(--accent);
}

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: var(--ink);
  padding: 22px 30px;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background-color 0.12s ease,
    color 0.12s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--ink);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}

.site-header__bar {
  max-width: 1280px;
  margin-inline: auto;
  padding: 5px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex: none;
}

.logo__stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-weight: 800;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.logo__tagline {
  font-weight: 700;
  font-size: 9.4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
  margin-right: -0.12em;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.nav__link {
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.12s ease;
}

.nav__link:hover,
.nav__link--active {
  border-bottom-color: var(--accent);
}

.nav__link[href^="tel:"] {
  display: none;
}

.nav__cta {
  margin-left: 4px;
  font-size: 14px;
  padding: 14px 20px;
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translate(-2px, -2px);
  background: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-toggle__bar {
  width: 22px;
  height: 3px;
  background: var(--ink);
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 20px 24px 40px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu__name {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.mobile-menu__tagline {
  font-weight: 700;
  font-size: 8.4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
  margin-right: -0.12em;
  color: var(--white);
}

.mobile-menu__close {
  width: 54px;
  height: 54px;
  background: var(--accent);
  border: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 40px 0;
}

.mobile-menu__link {
  font-weight: 700;
  font-size: clamp(1.75rem, 5.5vh, 2rem);
  line-height: 2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  transition:
    color 0.12s ease,
    transform 0.12s ease;
}

.mobile-menu__link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.mobile-menu__cta {
  margin-top: auto;
  flex: none;
  padding: 22px 18px;
}

.mobile-menu__cta:hover {
  transform: none;
  background: var(--accent);
}

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

.site-footer .footer-bottom a,
.site-footer .footer__list a {
  color: var(--white);
}

.footer-cta {
  padding: clamp(56px, 7vw, 88px) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-cta__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 24ch;
}

.footer-cta__text {
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.footer-cta__btn {
  flex: none;
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.footer-cols {
  margin-top: clamp(56px, 7vw, 88px);
}

.footer-cols > .row {
  --grid-gutter-y: 44px;
}

.footer__name {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__tagline {
  font-weight: 700;
  font-size: 10.4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
  margin-right: -0.12em;
  color: var(--white);
}

.footer__about {
  margin: 22px 0 0;
  max-width: 38ch;
  font-size: 17px;
  line-height: 1.6;
}

.footer__heading {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list--contact {
  gap: 14px;
}

.footer__link {
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  transition:
    border-color 0.12s ease,
    transform 0.12s ease;
  display: inline-block;
}

.footer__link:hover {
  border-bottom-color: var(--accent);
  transform: translateX(2px);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__contact-item .footer__link:hover {
  transform: none;
}

.footer__icon {
  display: block;
  flex: none;
}

.accreditations {
  margin-top: clamp(32px, 4vw, 48px);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}
.accreditations_logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.accreditations__logo {
  padding: 8px;
  display: flex;
  align-items: center;
  flex: none;
}

.accreditations__logo img {
  height: 44px;
  width: auto;
}

.accreditations__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 62ch;
}

.footer-legal-nav {
  padding: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.footer-legal-nav__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid transparent;
  transition: border-color 0.12s ease;
}

.site-footer .footer-legal-nav__link {
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal-nav__link:hover {
  border-bottom-color: var(--accent);
}

.footer-legal-nav__sep {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-legal-nav__button {
  font-size: 13px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.footer-bottom {
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.12s ease;
}

.footer-bottom a:hover {
  border-bottom-color: var(--accent);
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: var(--ink);
  color: var(--white);
}

.cookie-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  background: var(--ink);
  color: var(--white);
  max-height: 88vh;
  overflow: auto;
}

.cookie-bar[hidden],
.cookie-panel[hidden] {
  display: none;
}

.cookie-bar__inner {
  padding: 20px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}

.cookie-bar__text {
  margin: 0;
  flex: 1 1 420px;
  min-width: 280px;
  font-size: 15px;
  line-height: 1.55;
}

.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cookie-btn {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--accent);
  padding: 14px 22px;
  cursor: pointer;
  transition: transform 0.12s ease;
}

.cookie-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-btn--link {
  background: none;
  border: none;
  padding: 14px 4px;
  color: var(--white);
  text-transform: none;
  letter-spacing: normal;
  border-bottom: 2px solid transparent;
  transition: border-color 0.12s ease;
}

.cookie-btn--link:hover {
  transform: none;
  border-bottom-color: var(--accent);
}

.cookie-panel__inner {
  padding: 32px;
}

.cookie-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cookie-panel__lead {
  margin: 12px 0 0;
  max-width: 70ch;
  font-size: 15px;
  line-height: 1.55;
}

.cookie-panel__close {
  flex: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--white);
  transition: color 0.12s ease;
}

.cookie-panel__close:hover {
  color: var(--accent);
}

.cookie-panel__close svg {
  display: block;
}

.cookie-groups {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
}

.cookie-group {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
}

.cookie-group--first {
  padding-top: 0;
}

.cookie-group__title {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.cookie-group__text {
  margin: 8px 0 0;
  max-width: 66ch;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-group__side {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-group__always {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.switch {
  flex: none;
  width: 52px;
  height: 30px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.25);
  transition: background-color 0.16s ease;
}

.switch[aria-checked="true"] {
  background: var(--accent);
  justify-content: flex-end;
}

.switch--locked {
  background: rgba(255, 200, 0, 0.45);
  justify-content: flex-end;
}

.switch__knob {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  display: block;
}

.switch--locked .switch__knob {
  background: var(--accent);
}

.cookie-panel__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section--surface {
  background: var(--surface);
}

.section--white {
  background: var(--white);
}

.section__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 20ch;
}

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

.section__intro .section__title {
  max-width: 22ch;
  margin: 18px auto 0;
}

.section__intro .eyebrow {
  color: var(--ink);
}

.section__lead {
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}

.section__body {
  margin-top: clamp(48px, 6vw, 80px);
}

.page-header {
  position: relative;
  background: var(--ink);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: clamp(52px, 6vw, 80px) 0;
  overflow: hidden;
}

.page-header__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.72);
}

.page-header__inner {
  position: relative;
  width: 100%;
}

.page-header__title {
  margin: 20px 0 0;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 20ch;
}

.page-header__lead {
  margin: 24px 0 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 10vw, 132px) 0;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
}

.hero__inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__title {
  margin: 24px 0 0;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 16ch;
}

.hero__rule {
  margin-top: 34px;
}

.hero__text {
  margin: 34px 0 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
}

.hero__btn {
  margin-top: 44px;
}

.split > .row {
  --grid-gutter-x: clamp(48px, 6vw, 96px);
  --grid-gutter-y: clamp(48px, 6vw, 96px);
  align-items: center;
}

.about__text {
  margin: 26px 0 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
}

.about__title {
  margin: 18px 0 0;
}

.checklist {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  flex-wrap: wrap;
  gap: 18px 44px;
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.checklist__icon {
  display: block;
  flex: none;
}

.about__image {
  width: 100%;
  height: clamp(360px, 44vw, 540px);
  object-fit: cover;
}

.beliefs > .row {
  --grid-gutter-x: clamp(32px, 4vw, 56px);
  --grid-gutter-y: clamp(32px, 4vw, 56px);
}

.belief__number {
  margin: 0;
  font-weight: 800;
  font-size: clamp(2.75rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.belief__title {
  margin: 20px 0 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.belief__text {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.6;
  max-width: 42ch;
}

.rating {
  margin: 28px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rating__stars {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.rating__text {
  font-weight: 600;
  font-size: 15px;
}

.audience-cards > .row {
  --grid-gutter-x: clamp(32px, 4vw, 48px);
  --grid-gutter-y: clamp(32px, 4vw, 48px);
}

.audience-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.12s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-card--dark {
  background: var(--ink);
  color: var(--white);
}

.audience-card__image {
  width: 100%;
  height: clamp(220px, 24vw, 300px);
  object-fit: cover;
}

.audience-card__body {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.audience-card__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.audience-card--dark .audience-card__title,
.audience-card--dark .audience-card__text {
  color: var(--white);
}

.audience-card__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.audience-card__btn {
  margin-top: auto;
  font-size: 15px;
  padding: 18px 26px;
}

.audience-card__btn:hover {
  background: var(--ink);
  color: var(--accent);
}

.audience-card--dark .audience-card__btn:hover {
  background: var(--white);
  color: var(--ink);
}

.testimonials {
  text-align: center;
}

.testimonials .section__title {
  max-width: 20ch;
  margin-inline: auto;
}

.carousel {
  margin-top: clamp(36px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  outline-offset: 6px;
}

.carousel__arrow {
  flex: none;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    transform 0.12s ease,
    background-color 0.12s ease,
    color 0.12s ease;
}

.carousel__arrow:hover {
  color: var(--accent);
  background: var(--ink);
}

.carousel__arrow--prev:hover {
  transform: translateX(-2px);
}

.carousel__arrow--next:hover {
  transform: translateX(2px);
}

.carousel__viewport {
  flex: 1;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  align-items: stretch;
}

.testimonial {
  flex: none;
  width: 100%;
  margin: 0;
  padding: 0 clamp(4px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial__quote {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.45;
  max-width: 34ch;
}

.testimonial__source {
  margin-top: 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel__dots {
  margin-top: clamp(32px, 4vw, 44px);
  display: flex;
  justify-content: center;
  gap: 12px;
}

.carousel__dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  background: var(--accent);
  cursor: pointer;
}

.carousel__dot[aria-current="true"] {
  background: var(--ink);
}

.form-split > .row {
  --grid-gutter-x: clamp(40px, 5vw, 80px);
  --grid-gutter-y: clamp(40px, 5vw, 80px);
  align-items: flex-start;
}

.valuation-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font-weight: 600;
  font-size: 14px;
}

.field__input {
  width: 100%;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

textarea.field__input {
  line-height: 1.6;
  resize: vertical;
}

.field__input:focus {
  outline: none;
  padding: 13px 15px;
  border: 2px solid var(--accent);
}

.field__error {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--error);
}

.field__error[hidden] {
  display: none;
}

.valuation-sent {
  max-width: 560px;
  margin: 0;
  padding: clamp(32px, 3vw, 44px);
  background: var(--white);
}

.valuation-sent[hidden] {
  display: none;
}

.valuation-sent__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
}

.valuation-sent__text {
  margin: 24px 0 0;
  max-width: 40ch;
  font-size: 20px;
  line-height: 1.5;
}

.valuation-sent__aside {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
}

.valuation-sent__phone {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.valuation-sent__btn {
  margin-top: 28px;
}

.contact-card {
  background: var(--white);
  padding: clamp(32px, 3vw, 40px);
}

.contact-card__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card .eyebrow,
.next-steps .eyebrow {
  color: var(--ink);
}
.contact-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon svg {
  display: block;
}

.contact-card__link {
  font-weight: 600;
  font-size: 17px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.12s ease;
  word-break: break-word;
}

.contact-card__link:hover {
  border-bottom-color: var(--accent);
}

.next-steps {
  margin-top: clamp(36px, 4vw, 48px);
}

.next-steps__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.next-steps__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.next-steps__number {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

.next-steps__text {
  font-size: 17px;
  line-height: 1.6;
}

.faq {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line-soft);
}

.faq__group-label {
  margin: 0 0 8px;
  color: var(--ink);
}

.faq__group-label--second {
  margin-top: clamp(44px, 5vw, 64px);
}

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

.faq-item__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  transition: color 0.12s ease;
}

.faq-item__trigger:hover {
  color: var(--accent);
}

.faq-item__question {
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--ink);
}

.faq-item__icon {
  display: block;
  flex: none;
  overflow: visible;
}

.faq-item__icon-bar {
  transform-origin: 10px 10px;
  transition: transform 0.2s ease;
}

.faq-item--open .faq-item__icon-bar {
  transform: rotate(90deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.24s ease;
}

.faq-item--open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  min-height: 0;
}

.faq-item__answer {
  margin: 0;
  padding: 0 0 20px;
  max-width: 68ch;
  font-size: 17px;
  line-height: 1.6;
}

.page-header__image--focus-35 {
  object-position: center 35%;
}

.page-header__image--focus-40 {
  object-position: center 40%;
}

.section__title--center {
  margin-inline: auto;
  text-align: center;
  max-width: 22ch;
}

.section__title--center-narrow {
  margin: 16px auto 0;
  text-align: center;
  max-width: 26ch;
}

.eyebrow--center {
  text-align: center;
  color: var(--ink);
}

.profile-cards {
  margin-top: clamp(44px, 5vw, 72px);
}

.profile-cards > .row {
  --grid-gutter-x: clamp(24px, 3vw, 36px);
  --grid-gutter-y: clamp(24px, 3vw, 36px);
}

.profile-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.profile-card__text {
  margin: 22px 0 0;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.45;
}

.benefits-list {
  margin-top: clamp(52px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 104px);
}

.benefit-row > .row {
  --grid-gutter-x: clamp(40px, 5vw, 80px);
  --grid-gutter-y: 30px;
  align-items: center;
}

.benefit-row__image {
  width: 100%;
  height: clamp(300px, 34vw, 440px);
  object-fit: cover;
  border-radius: 4px;
}

.benefit-row__mark {
  width: 56px;
  height: 4px;
  background: var(--accent);
}

.benefit-row__title {
  margin: 0 0 22px 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.benefit-row__text {
  margin: 18px 0 0;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.6;
}

.section--promises {
  padding: 160px 0;
}

.promises {
  margin-top: clamp(44px, 5vw, 64px);
}

.promises > .row {
  --grid-gutter-x: clamp(32px, 4vw, 56px);
  --grid-gutter-y: clamp(32px, 4vw, 56px);
}

.promise__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.promise__mark {
  width: 100%;
  height: 6px;
  background: var(--accent);
  margin: 18px 0 0;
}
.promise__text {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.section__title--wide {
  max-width: 24ch;
}

.section__lead--left {
  margin: 24px 0 0;
  max-width: 720px;
}

.page-header__overlay--light {
  background: rgba(17, 17, 17, 0.65);
}

.page-header__title--wide {
  max-width: 22ch;
}

.page-header__lead--narrow {
  margin-top: 26px;
  max-width: 58ch;
}

.intro-row > .row {
  --grid-gutter-x: clamp(40px, 5vw, 80px);
  --grid-gutter-y: 30px;
  align-items: center;
}

.intro-row__title {
  margin: 18px 0 0;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 16ch;
}

.intro-row__text {
  margin: 28px 0 0;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.6;
}

.intro-row__text + .intro-row__text {
  margin-top: 18px;
}

.intro-row__btn {
  margin-top: 36px;
}

.intro-row__image {
  width: 100%;
  height: clamp(320px, 38vw, 520px);
  object-fit: cover;
  border-radius: 4px;
}

.step-card__title {
  margin: 22px 0 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.step-card__text {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.reasons {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 900px;
  display: flex;
  flex-direction: column;
}

.reason {
  padding: 28px 0;
}

.reason--first {
  padding-top: 0;
}

.reason__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reason__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason__icon svg {
  display: block;
}

.reason__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.reason__text {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.reason__divider {
  height: 1px;
  background: var(--line-soft);
}

.eyebrow--ink {
  color: var(--ink);
}

.section__title--30ch {
  max-width: 30ch;
}

.legal-header {
  background: var(--ink);
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.legal-header__title {
  margin: 16px 0 0;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.legal-header__meta {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
}

.legal-section {
  background: var(--white);
  padding: 64px 0 96px;
}

.legal {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.legal__toc {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  flex: 0 0 240px;
}

.legal__content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 760px;
}

.legal-toc__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-toc__link {
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 2px solid transparent;
  transition: border-color 0.12s ease;
}

.legal-toc__link:hover {
  border-bottom-color: var(--accent);
}

.legal__title {
  margin: 48px 0 16px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.legal__title:first-child {
  margin-top: 0;
}

.legal__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.legal__text--gap-16 {
  margin-bottom: 16px;
}

.legal__text--gap-24 {
  margin-bottom: 24px;
}

.legal__label {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal__link {
  border-bottom: 2px solid var(--accent);
}

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

.legal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.legal-table th {
  padding: 0 16px 12px 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-table td {
  padding: 14px 16px 14px 0;
  font-size: 17px;
  line-height: 1.6;
  border-top: 1px solid var(--line-soft);
}

.legal-table th:last-child,
.legal-table td:last-child {
  padding-right: 0;
}

.legal-table tbody tr:last-child td {
  border-bottom: 1px solid var(--line-soft);
}

.btn--compact {
  font-size: 15px;
  padding: 18px 26px;
}

.btn--compact:hover {
  background: var(--accent);
}

.legal__list {
  margin: 0;
  padding: 0 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal__list li {
  font-size: 17px;
  line-height: 1.7;
}

.form-notice {
  margin: 0 0 24px;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.5;
  border-left: 6px solid var(--accent);
  background: var(--white);
}

.form-notice--error {
  border-left-color: #c0392b;
}

.logo__image {
  display: block;
  height: 70px;
  width: auto;
}

.logo__image--footer {
  height: 100px;
}

.logo__image--menu {
  height: 51px;
}

.reveal {
  --reveal-shift: 24px;
  --reveal-slide: 28px;
  --reveal-time: 760ms;

  --reveal-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-step: 100ms;
}

.js-reveal
  .reveal
  :where(
    .hero__inner > *:not(.btn),
    .split .row > div > *:not(.btn):not(.checklist),
    .checklist__item,
    .beliefs .row > div,
    .section__intro > *,
    .audience-cards .row > div,
    .carousel,
    .page-header__inner > *,
    .container > .eyebrow,
    .container > .section__title,
    .container > .section__lead,
    .profile-cards .row > div,
    .benefit-row .row > div,
    .promises .row > div,
    .intro-row .row > div > *:not(.btn),
    .reasons .reason
  ) {
  --reveal-delay: calc(var(--reveal-i, 0) * var(--reveal-step));
  opacity: 0;
  transform: translateY(var(--reveal-shift));
  transition:
    opacity var(--reveal-time) var(--reveal-ease) var(--reveal-delay),
    transform var(--reveal-time) var(--reveal-ease) var(--reveal-delay);
}

.js-reveal .reveal :where(.hero__inner > .btn, .intro-row .row > div > .btn) {
  --reveal-delay: calc(var(--reveal-i, 0) * var(--reveal-step) + 180ms);
  opacity: 0;
  transition: opacity var(--reveal-time) var(--reveal-ease) var(--reveal-delay);
}

.js-reveal .reveal :where(.carousel) {
  transform: none;
}

.js-reveal
  .reveal
  :where(
    .about__image,
    .audience-card__image,
    .profile-card__image,
    .benefit-row__image,
    .intro-row__image
  ) {
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition:
    opacity var(--reveal-time) var(--reveal-ease) var(--reveal-delay, 0ms),
    clip-path 950ms var(--reveal-ease) calc(var(--reveal-delay, 0ms) + 60ms);
}

.js-reveal .reveal :where(.belief__number) {
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 620ms var(--reveal-ease) calc(var(--reveal-delay, 0ms) + 140ms),
    transform 620ms var(--reveal-ease) calc(var(--reveal-delay, 0ms) + 140ms);
}

.js-reveal .reveal :where(.reason__icon) {
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 560ms var(--reveal-ease) calc(var(--reveal-delay, 0ms) + 120ms),
    transform 560ms var(--reveal-ease) calc(var(--reveal-delay, 0ms) + 120ms);
}

.js-reveal .reveal :where(.audience-card__btn) {
  opacity: 0;
  transition: opacity var(--reveal-time) var(--reveal-ease)
    calc(var(--reveal-delay, 0ms) + 220ms);
}

.js-reveal .reveal :where(.benefit-row .row > div:nth-child(2)) {
  transform: translateY(var(--reveal-shift)) translateX(var(--reveal-slide));
}

.js-reveal .reveal :where(.benefit-row--reverse .row > div:nth-child(2)) {
  transform: translateY(var(--reveal-shift))
    translateX(calc(var(--reveal-slide) * -1));
}

.js-reveal .reveal .is-in {
  opacity: 1;
}

.js-reveal .reveal .is-in:not(.btn) {
  transform: none;
}

.js-reveal .reveal .is-in :where(.belief__number, .reason__icon) {
  opacity: 1;
  transform: none;
}

.js-reveal .reveal .is-in :where(.audience-card__btn) {
  opacity: 1;
}

.js-reveal .reveal img.is-shown {
  clip-path: inset(0 0 0 0);
}

@media (max-width: 1024px) {
  .legal__toc {
    display: none;
  }
  .promise__title {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .benefit-row--reverse > .row {
    flex-direction: row-reverse;
  }
}

@media (max-width: 991px) {

  .form-split__aside {
    order: -1;
  }
  .logo__image:not(.logo__image--footer) {
    height: 46px;
  }

  .form-split--sent .form-split__aside {
    order: 0;
  }

  .contact-card {
    margin-top: 20px;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
  .row-reverse {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .promise__mark {
    width: 56px;
  }
  .promise__title {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .accreditations {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 24px 0;
  }

  .js-reveal .reveal :where(.benefit-row .row > div:nth-child(2)),
  .js-reveal .reveal :where(.benefit-row--reverse .row > div:nth-child(2)) {
    transform: translateY(var(--reveal-shift));
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }
  .site-header__bar {
    padding: 14px 32px;
    padding-inline: 20px;
  }
  .cookie-bar__inner,
  .cookie-panel__inner {
    padding-inline: 20px;
  }

  .cookie-group {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .testimonial__quote {
    font-size: 20px;
  }

  .carousel__arrow {
    display: none;
  }
  .section--promises {
    padding: 80px 0;
  }
  .footer-cta .btn {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel,
  .faq-item__icon-bar {
    transition: none;
  }
}
