:root {
  --blue-900: #0f2a66;
  --blue-700: #1a4fce;
  --blue-600: #2b6cf6;
  --blue-500: #4c86ff;
  --blue-100: #eaf1ff;
  --blue-50: #f5f8ff;

  --orange-600: #ff6a1a;
  --orange-500: #ff8a3d;
  --orange-100: #fff1e6;

  --ink: #14213d;
  --ink-dim: #5b6478;
  --white: #ffffff;
  --border: rgba(20, 33, 61, 0.09);

  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1180px;

  --shadow-soft: 0 20px 45px rgba(20, 33, 61, 0.08);
  --shadow-card: 0 24px 60px rgba(20, 33, 61, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 106, 26, 0.32);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 106, 26, 0.4);
}

.btn--primary:active {
  transform: translateY(0) scale(0.97);
}

.btn--ghost {
  background: var(--white);
  color: var(--blue-700);
  border: 2px solid var(--blue-100);
}

.btn--ghost:hover {
  border-color: var(--blue-500);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(20, 33, 61, 0.28);
}

.btn--small {
  padding: 11px 22px;
  font-size: 13px;
}

.btn--big {
  padding: 18px 38px;
  font-size: 16px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(20, 33, 61, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
}

.logo__badge {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 22%;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover .logo__badge {
  transform: rotate(-6deg) scale(1.06);
}

.logo__text {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  color: var(--white);
  transition: color 0.3s ease;
}

.header.is-scrolled .logo__text {
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.header.is-scrolled .nav__link {
  color: var(--ink);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width 0.25s ease;
}

.nav__link:hover {
  color: var(--orange-500);
}

.nav__link:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.header.is-scrolled .burger span {
  background: var(--ink);
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(760px 460px at 85% -10%, rgba(255, 138, 61, 0.25), transparent 60%),
    linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 48%, var(--blue-600) 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at 30% 30%, black 0%, transparent 70%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 24px;
}

.accent-underline {
  position: relative;
  white-space: nowrap;
}

.accent-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 10px;
  background: rgba(255, 138, 61, 0.55);
  border-radius: 6px;
  z-index: -1;
}

.hero__subtitle {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero__actions .btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.hero__note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.hero-card {
  position: relative;
  width: min(300px, 80vw);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.hero-card__photo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-900));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  flex-shrink: 0;
  user-select: none;
  object-fit: cover;
}

.avatar-placeholder--hero {
  width: 148px;
  height: 148px;
  font-size: 42px;
  border: 5px solid var(--blue-50);
}

.hero-card__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-card__role {
  color: var(--ink-dim);
  font-size: 13.5px;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  max-width: 220px;
  z-index: 3;
}

.floating-badge__icon {
  font-size: 18px;
  flex-shrink: 0;
}

.floating-badge--1 {
  top: 6%;
  left: -6%;
}

.floating-badge--2 {
  bottom: 14%;
  right: -10%;
}

.floating-badge--3 {
  bottom: -6%;
  left: 4%;
}

/* ===== Trust strip ===== */
.trust {
  background: var(--blue-50);
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.trust__icon {
  font-size: 30px;
}

.trust__item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  max-width: 200px;
}

/* ===== Section shared ===== */
section {
  padding: 110px 0;
}

.section-label {
  display: inline-block;
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--orange-500);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--ink);
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  color: var(--ink-dim);
  font-size: 16.5px;
  max-width: 620px;
  margin-bottom: 50px;
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.82);
}

/* ===== For whom ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 32px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--white);
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(20, 33, 61, 0.08);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.info-card p {
  color: var(--ink-dim);
  font-size: 14.5px;
}

/* ===== Method ===== */
.method {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  position: relative;
  overflow: hidden;
}

.method::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.28), transparent 70%);
}

.method .container {
  position: relative;
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.method-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.method-card__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  color: var(--orange-500);
  margin-bottom: 18px;
}

.method-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
}

.method-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
}

/* ===== Banner (intensive CTA) ===== */
.banner {
  padding: 0;
}

.banner__inner {
  background: linear-gradient(120deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  margin: 0 auto;
  max-width: calc(var(--container) - 0px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: 0 30px 60px rgba(255, 106, 26, 0.28);
}

.banner__eyebrow {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.banner__text h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  margin-bottom: 12px;
}

.banner__text p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  font-size: 15px;
}

.banner .btn--dark {
  flex-shrink: 0;
}

/* ===== About ===== */
.about__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.avatar-placeholder--about {
  width: 260px;
  height: 260px;
  font-size: 72px;
  border: 8px solid var(--blue-50);
  box-shadow: var(--shadow-card);
}

.about__quote {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 19px;
  color: var(--blue-700);
  border-left: 4px solid var(--orange-500);
  padding-left: 18px;
  margin: 18px 0 26px;
}

.about__text p {
  color: var(--ink-dim);
  font-size: 15.5px;
  margin-bottom: 18px;
}

.about__facts {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__facts li {
  font-size: 14.5px;
  color: var(--ink);
  background: var(--blue-50);
  padding: 12px 18px;
  border-radius: 12px;
}

.about__facts strong {
  color: var(--blue-700);
}

/* ===== Reviews ===== */
.reviews {
  background: var(--blue-50);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.review-card__text {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.55;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-placeholder--small {
  width: 44px;
  height: 44px;
  font-size: 16px;
}

.review-card__name {
  font-weight: 700;
  font-size: 14px;
}

.review-card__meta {
  color: var(--ink-dim);
  font-size: 12.5px;
}

.review-card--cta {
  background: linear-gradient(150deg, var(--blue-700), var(--blue-900));
  color: var(--white);
  align-items: flex-start;
}

.review-card--cta .review-card__text {
  color: rgba(255, 255, 255, 0.92);
}

.review-card--cta .btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.review-card--cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
}

/* ===== FAQ ===== */
.faq__inner {
  max-width: 780px;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 24px 4px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}

.accordion__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 4px;
}

.accordion__body p {
  color: var(--ink-dim);
  font-size: 15px;
  padding-bottom: 24px;
  max-width: 620px;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
  background: var(--orange-500);
  color: var(--white);
}

.accordion__item.is-open .accordion__body {
  max-height: 240px;
}

/* ===== Final CTA ===== */
.cta-final {
  background: radial-gradient(1000px 500px at 50% -20%, rgba(255, 138, 61, 0.25), transparent 60%), linear-gradient(160deg, var(--blue-900), var(--blue-700));
  text-align: center;
}

.cta-final__inner h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 40px);
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 18px;
}

.cta-final__inner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 44px 0 26px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.logo--footer .logo__text {
  color: var(--white);
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__vk {
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer__vk:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  max-width: 780px;
  line-height: 1.5;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal a:hover {
  color: var(--white);
}

/* ===== Legal pages ===== */
.page-legal {
  background: var(--blue-50);
}

.page-legal .header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(20, 33, 61, 0.08);
}

.legal {
  padding: 140px 0 80px;
}

.legal__inner {
  max-width: 820px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 48px 56px;
  box-shadow: var(--shadow-soft);
}

.legal__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--ink);
  margin-bottom: 10px;
}

.legal__subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--blue-700);
  margin-bottom: 12px;
}

.legal__meta {
  color: var(--ink-dim);
  font-size: 13.5px;
  margin-bottom: 28px;
}

.legal__note {
  background: var(--orange-100);
  border-left: 4px solid var(--orange-500);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 36px;
}

.legal__note p {
  color: var(--ink);
  font-size: 14px;
  margin: 0;
}

.legal h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin: 32px 0 14px;
}

.legal p {
  color: var(--ink-dim);
  font-size: 15px;
  margin-bottom: 12px;
}

.legal ul {
  margin: 0 0 16px 18px;
  list-style: disc;
}

.legal li {
  color: var(--ink-dim);
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: var(--orange-600);
}

.legal__back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-weight: 600;
}

@media (max-width: 760px) {
  .legal {
    padding: 120px 0 60px;
  }

  .legal__inner {
    padding: 32px 22px 40px;
    border-radius: var(--radius-md);
  }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    min-height: 320px;
    margin-bottom: 20px;
  }

  .floating-badge--1 { left: 2%; top: 2%; }
  .floating-badge--2 { right: 2%; bottom: 8%; }
  .floating-badge--3 { display: none; }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .method__grid {
    grid-template-columns: 1fr;
  }

  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__quote {
    text-align: left;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .banner__inner {
    justify-content: center;
    text-align: center;
    padding: 44px 32px;
  }

  .banner__text p {
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 50px rgba(20, 33, 61, 0.15);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__link,
  .header.is-scrolled .nav__link {
    font-size: 18px;
    color: var(--ink);
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding: 140px 0 70px;
  }
}

@media (max-width: 520px) {
  .trust__grid {
    grid-template-columns: 1fr;
  }

  .banner__inner {
    padding: 36px 24px;
  }

  .avatar-placeholder--about {
    width: 200px;
    height: 200px;
    font-size: 56px;
  }
}
