:root {
  --navy: #00415f;
  --navy-deep: #002e44;
  --ink: #0a1c26;
  --burg: #7c2737;
  --burg-lt: #9b3244;
  --gray: #6c6c6c;
  --body: #465862;
  --cream: #f5f2ec;
  --line: #dfd9cf;
  --white: #fff;
  --serif: "Spectral", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1320px;
  --header-max: 1760px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 156px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 3.2vw, 45px);
}

/* ---------- shared ---------- */

.section {
  padding: 96px 0;
}

.section__head {
  max-width: 760px;
}

.section__head--center {
  margin: 0 auto;
  text-align: center;
}

.section__title {
  font-size: 44px;
  margin-top: 18px;
}

.section__title--light {
  color: #fff;
}

.section__lead {
  margin-top: 20px;
  font-size: 18px;
}

.section__lead--light {
  color: rgba(255, 255, 255, 0.7);
}

.section__eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burg);
  display: flex;
  align-items: center;
  gap: 14px;
}

.section__eyebrow::after {
  content: "";
  height: 1px;
  width: 56px;
  background: var(--burg);
  opacity: 0.55;
}

.section__eyebrow--center {
  justify-content: center;
}

.section__eyebrow--center::before {
  content: "";
  height: 1px;
  width: 56px;
  background: var(--burg);
  opacity: 0.55;
}

.section__eyebrow--light {
  color: #c9a7ae;
}

.section__eyebrow--light::after,
.section__eyebrow--light::before {
  background: #c9a7ae;
  opacity: 0.5;
}

.section__rule {
  width: 64px;
  height: 0;
  border-top: 3px solid var(--burg);
  border-bottom: 1px solid var(--navy);
  padding-top: 4px;
  margin: 22px 0 0;
}

.section__rule--center {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  padding: 19px 40px;
  border-radius: 999px;
  background: var(--burg);
  color: #fff;
  border: 1px solid var(--burg);
  transition: 0.25s;
  white-space: nowrap;
  max-width: 100%;
  cursor: pointer;
}

.btn:hover {
  background: var(--burg-lt);
  border-color: var(--burg-lt);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn--small {
  font-size: 15px;
  padding: 14px 28px;
}

/* ---------- topbar ---------- */

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.topbar__inner {
  max-width: var(--header-max);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__group {
  display: flex;
  gap: 26px;
  align-items: center;
}

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

.topbar__item svg {
  width: 14px;
  height: 14px;
  fill: #b9c9d2;
  flex: none;
}

/* ---------- header ---------- */

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}

.header__inner {
  max-width: var(--header-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 30px);
  height: 112px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
  line-height: 0;
}

.header__logo img {
  width: 307px;
  max-width: none;
  height: auto;
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  width: 46px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.header.is-open .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 0 1 auto;
  justify-content: flex-end;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 34px);
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  display: block;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--burg);
  transition: 0.25s;
}

.header__nav-link:hover::after,
.header__nav-link--current::after {
  width: 100%;
}

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  flex-shrink: 0;
}

.header__phone {
  font-family: var(--serif);
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.header__overlay {
  display: none;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 0;
  overflow: hidden;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
  background: var(--ink) url("../assets/images/bg-hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(4, 20, 30, 0.94) 0%,
    rgba(4, 20, 30, 0.86) 38%,
    rgba(4, 20, 30, 0.35) 62%,
    rgba(4, 20, 30, 0.15) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--burg) 0 42%, var(--navy) 42% 100%);
  z-index: 3;
}

.hero__inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  z-index: 2;
}

.hero__content {
  max-width: min(100%, 660px);
  color: #fff;
  padding-block: clamp(12px, 2.4vw, 28px);
  padding-inline: clamp(0px, 1.5vw, 12px);
  position: relative;
  z-index: 2;
}

.hero__title {
  color: #fff;
  font-size: 52px;
  letter-spacing: -0.01em;
  margin-top: 20px;
}

.hero__subtitle {
  color: #e3c9ce;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 18px;
}

.hero__text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  margin-top: 20px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__phone-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__phone-number {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.hero__image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* ---------- accolades ---------- */

.accolades {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.accolades__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.accolades__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  max-width: 130px;
  line-height: 1.5;
  border-left: 3px solid var(--burg);
  padding-left: 16px;
  flex: none;
}

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  flex: 1;
  flex-wrap: wrap;
}

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.accolades__badge {
  display: block;
  width: auto;
}

.accolades__badge--forum {
  height: 88px;
}

.accolades__badge--trial {
  height: 80px;
}

.accolades__badge--super {
  height: 50px;
}

.accolades__badge--aaj {
  height: 60px;
}

/* ---------- about ---------- */

.about {
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.about__media {
  position: relative;
  padding: 0 0 24px 24px;
}

.about__media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 78%;
  border: 1px solid var(--burg);
  opacity: 0.55;
}

.about__media img {
  position: relative;
  width: 100%;
  height: auto;
  box-shadow: 0 26px 60px rgba(10, 28, 38, 0.22);
}

.about__stamp {
  position: absolute;
  right: -14px;
  top: -14px;
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(10, 28, 38, 0.28);
}

.about__stamp b {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.about__stamp span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 7px;
  color: #bfd2db;
}

.about__title {
  font-size: 44px;
  margin-top: 18px;
}

.about__body {
  margin-top: 24px;
}

.about__body p {
  margin-bottom: 16px;
}

.about__towns {
  font-size: 16px;
  color: #5c6e78;
}

.about__callout {
  margin-top: 28px;
  background: #fff;
  border-left: 4px solid var(--burg);
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.5;
}

.about__callout a {
  color: var(--burg);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- practice ---------- */

.practice {
  background: #fff;
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.card {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: 0.28s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(10, 28, 38, 0.16);
  border-color: #cfc7ba;
}

.card__figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.card:hover .card__figure img {
  transform: scale(1.06);
}

.card__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
}

.card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-size: 23px;
}

.card__text {
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 12px;
  flex: 1;
}

.card__link {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burg);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.card__link-line {
  width: 20px;
  height: 1px;
  background: var(--burg);
  transition: 0.25s;
}

.card:hover .card__link-line {
  width: 34px;
}

/* ---------- results ---------- */

.results {
  background: var(--ink) url("../assets/images/bg-results.jpg") center / cover no-repeat;
  position: relative;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 18, 27, 0.92), rgba(3, 18, 27, 0.86));
}

.results__inner {
  position: relative;
  z-index: 2;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.result {
  padding: 38px 30px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

.result:last-child {
  border-right: 0;
}

.result::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--burg);
}

.result__amount {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.result__type {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fbecb;
  margin-top: 14px;
}

.result__desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 12px;
  line-height: 1.65;
}

.results__note {
  margin-top: 34px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 820px;
}

/* ---------- values ---------- */

.values {
  background: var(--cream);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 52px;
}

.value {
  background: #fff;
  padding: 36px 30px 34px;
  border-top: 3px solid var(--navy);
  transition: 0.28s;
}

.value:hover {
  border-top-color: var(--burg);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(10, 28, 38, 0.13);
}

.value__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value__icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--burg);
  fill: none;
  stroke-width: 1.35;
}

.value__title {
  font-size: 21px;
  line-height: 1.3;
}

.value__text {
  font-size: 15.5px;
  margin-top: 12px;
  line-height: 1.7;
}

/* ---------- testimonial ---------- */

.testimonial {
  background: var(--burg);
  color: #fff;
  padding: 88px 0;
}

.testimonial__inner {
  text-align: center;
  position: relative;
}

.testimonial__mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.6;
  color: rgba(255, 255, 255, 0.18);
  display: block;
  height: 56px;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.55;
  max-width: 960px;
  margin: 0 auto;
  font-weight: 400;
}

.testimonial__who {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}

.testimonial__stars svg {
  width: 17px;
  height: 17px;
  fill: #ebc9a0;
}

/* ---------- contact ---------- */

.contact {
  background: #fff;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
}

.contact__title {
  font-size: 42px;
  margin-top: 18px;
}

.contact__list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: var(--cream);
}

.contact__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--burg);
  fill: none;
  stroke-width: 1.5;
}

.contact__meta {
  display: flex;
  flex-direction: column;
}

.contact__key {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.contact__value {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.45;
  margin-top: 3px;
}

.form {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 42px 44px 46px;
}

.form__title {
  font-size: 26px;
}

.form__note {
  font-size: 15px;
  margin-top: 10px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

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

.form__field--full {
  grid-column: 1 / -1;
}

.form__field label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

.form__field input,
.form__field select {
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  appearance: none;
  width: 100%;
}

.form__field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237C2737' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

.form__field textarea {
  height: 120px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  resize: vertical;
  width: 100%;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: 2px solid var(--burg);
  outline-offset: 1px;
  border-color: var(--burg);
}

.form__submit {
  margin-top: 26px;
  width: 100%;
}

.form__disclaimer {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--gray);
  margin-top: 16px;
}

/* ---------- footer ---------- */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__brand img {
  width: 360px;
  max-width: none;
  height: auto;
  margin-bottom: 24px;
}

.footer p {
  font-size: 15.5px;
  line-height: 1.8;
}

.footer__heading {
  color: #fff;
  font-size: 19px;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  font-size: 15.5px;
  transition: 0.2s;
}

.footer__links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer__phone {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}

/* ---------- header scaling (desktop, above hamburger) ---------- */

@media (max-width: 1600px) {
  .header__nav-link {
    letter-spacing: 0.04em;
  }

  .btn--small {
    font-size: 14px;
    padding: 13px 22px;
  }
}

@media (max-width: 1400px) {
  .header__nav-link {
    letter-spacing: 0.03em;
  }

  .btn--small {
    font-size: 13.5px;
    padding: 12px 18px;
  }
}

@media (max-width: 1280px) {
  .header__inner {
    gap: 12px;
  }

  .header__nav-list {
    gap: 12px;
  }

  .header__nav-link {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .header__cta {
    gap: 10px;
  }

  .btn--small {
    font-size: 13px;
    padding: 11px 16px;
  }
}

@media (max-width: 1500px) {
  .hero__content {
    max-width: min(100%, 600px);
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__text {
    max-width: 520px;
  }

  .section__title,
  .about__title {
    font-size: 40px;
  }
}

/* ---------- hamburger / tablet ---------- */

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 28, 38, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header.is-open .header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__inner {
    height: 96px;
    z-index: 2;
  }

  .header__logo img {
    width: min(307px, calc(100vw - 108px));
    max-width: none;
  }

  .header__toggle {
    display: flex;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    padding: 84px 28px 40px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 2;
    overflow-y: auto;
    transform: translateX(110%);
    visibility: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  .header.is-open .header__nav {
    transform: translateX(0);
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-link {
    font-size: 17px;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.05em;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
  }

  .header__nav-extras .header__phone {
    font-size: 22px;
  }

  .header__cta {
    display: none;
  }

  .hero__content {
    max-width: min(100%, 52%);
  }

  .hero__title {
    font-size: 38px;
  }

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

  .result {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .result:nth-child(2) {
    border-right: 0;
  }

  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    line-height: 1.35;
    max-width: 100%;
    font-size: 17px;
    padding: 16px 28px;
  }

  .btn--small {
    font-size: 14px;
    padding: 13px 22px;
  }
}

@media (max-width: 900px) {
  .topbar__item--hide-sm {
    display: none;
  }

  .header__inner {
    height: 82px;
  }

  .section {
    padding: 66px 0;
  }

  .section__title,
  .about__title,
  .contact__title {
    font-size: 31px;
  }

  .testimonial__quote {
    font-size: 22px;
  }

  .form {
    padding: 30px 26px 34px;
  }

  .accolades__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .accolades__label {
    max-width: none;
  }

  .accolades__row {
    width: 100%;
    justify-content: space-between;
    gap: 22px;
  }

  .accolades__badge--forum {
    height: 76px;
  }

  .accolades__badge--trial {
    height: 68px;
  }

  .accolades__badge--super {
    height: 43px;
  }

  .accolades__badge--aaj {
    height: 52px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: clamp(28px, 6vw, 56px) clamp(20px, 4vw, 32px) 0;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(4, 20, 30, 0.95) 0%,
      rgba(4, 20, 30, 0.9) 55%,
      rgba(4, 20, 30, 0.82) 100%
    );
  }

  .hero__inner {
    height: auto;
    display: block;
  }

  .hero__content {
    max-width: 100%;
    padding: clamp(8px, 3vw, 16px) 0 0;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 8px;
  }

  .hero__image {
    height: auto;
    width: min(430px, 88%);
    margin: 18px auto 0;
    object-position: bottom center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .topbar {
    font-size: 12.5px;
  }

  .topbar__item--hide-xs {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
    gap: 6px 18px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .topbar__group {
    gap: 16px;
  }

  .practice__grid,
  .results__grid,
  .values__grid,
  .form__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .result {
    border-right: 0;
  }

  .hero__title {
    font-size: 29px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .about__media {
    padding: 0;
  }

  .about__media::before {
    display: none;
  }

  .about__stamp {
    right: 10px;
    top: 10px;
    padding: 14px 16px;
  }

  .about__stamp b {
    font-size: 26px;
  }

  .about__callout {
    font-size: 17px;
    padding: 18px 20px;
  }

  .accolades__row {
    justify-content: center;
    gap: 26px 30px;
  }

  .accolades__badge--forum {
    height: 64px;
  }

  .accolades__badge--trial {
    height: 58px;
  }

  .accolades__badge--super {
    height: 36px;
  }

  .accolades__badge--aaj {
    height: 44px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
  }

  .section__eyebrow {
    flex-wrap: wrap;
    gap: 8px;
  }

  .section__eyebrow::after,
  .section__eyebrow--center::before {
    display: none;
  }

  .footer__brand img {
    width: 230px;
  }
}
