:root {
  color-scheme: light;
  --bg: #fffaf8;
  --surface: #ffffff;
  --surface-soft: #fbf6f2;
  --ink: #3a2c48;
  --muted: #6e6377;
  --line: rgba(128, 103, 143, 0.18);
  --purple: #9078b6;
  --purple-strong: #76599f;
  --purple-soft: #eee6f7;
  --sage: #b7d0c7;
  --sage-soft: #eef7f3;
  --peach: #f7c7b8;
  --peach-soft: #fff0ea;
  --blue-soft: #edf1ff;
  --cream: #fff4e9;
  --coral: #ef7f72;
  --shadow: 0 18px 50px rgba(74, 53, 92, 0.1);
  --shadow-soft: 0 10px 30px rgba(74, 53, 92, 0.07);
  --radius: 18px;
  --container: 1440px;
  font-family: "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 248, 0.96)),
    var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

body::before,
body::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

body::before {
  top: 395px;
  left: -210px;
  width: 430px;
  height: 640px;
  border-radius: 0 55% 55% 0;
  background: #efe6f8;
}

body::after {
  right: -150px;
  bottom: 120px;
  width: 340px;
  height: 470px;
  border-radius: 52% 0 0 52%;
  background: rgba(237, 246, 241, 0.85);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(144, 120, 182, 0.45);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
}

p,
li,
dd,
button,
a {
  overflow-wrap: break-word;
}

h1,
.section-title h2,
.about h2,
.contact-cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--purple-strong);
  color: #ffffff;
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px max(34px, calc((100vw - var(--container)) / 2)) 18px;
  background: rgba(255, 250, 248, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(74, 53, 92, 0.08);
  padding-top: 18px;
}

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

.brand__mark {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
}

.brand__mark svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__mark path:first-child {
  stroke: var(--coral);
}

.brand__mark path {
  stroke: var(--sage);
  stroke-width: 2;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--purple-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.brand small {
  color: var(--purple);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--purple-strong);
}

.nav-toggle {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.header-cta,
.button--primary {
  background: var(--purple);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(118, 89, 159, 0.2);
}

.header-cta:hover,
.header-cta:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  background: var(--purple-strong);
  transform: translateY(-1px);
}

.button--secondary {
  border-color: rgba(102, 132, 122, 0.35);
  background: rgba(255, 255, 255, 0.74);
  color: #6d837b;
  box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--sage);
  background: var(--sage-soft);
  color: #526e64;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(500px, 1.12fr);
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 58px 34px 0;
}

.hero__content {
  display: grid;
  gap: 26px;
  padding-bottom: 34px;
}

.hero h1 {
  max-width: 640px;
  color: var(--ink);
  font-size: 4.45rem;
  line-height: 1;
}

.hero h1 span {
  color: var(--purple);
}

.hero__lead {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__media {
  position: relative;
  min-width: 0;
  margin: 0;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 1.64 / 1;
  border-radius: 120px 10px 120px 10px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  object-position: center 38%;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 10px auto 0;
  padding: 0 34px;
}

.feature-card {
  display: grid;
  min-height: 292px;
  justify-items: center;
  align-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  padding: 34px 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.feature-card__icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  color: var(--purple-strong);
}

.feature-card__icon .icon {
  width: 46px;
  height: 46px;
  stroke-width: 1.35;
}

.feature-card--purple .feature-card__icon {
  background: linear-gradient(145deg, #b6a4d0, #8f75b5);
  color: #ffffff;
}

.feature-card--sage .feature-card__icon {
  background: var(--sage-soft);
  color: #5a756a;
}

.feature-card--peach .feature-card__icon {
  background: var(--peach-soft);
  color: #de7e67;
}

.feature-card--blue .feature-card__icon {
  background: var(--blue-soft);
  color: #6573aa;
}

.feature-card h2 {
  max-width: 15ch;
  color: var(--purple-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.feature-card p {
  max-width: 230px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 34px 0;
}

.section-title {
  display: grid;
  justify-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.section-title h2 {
  position: relative;
  color: var(--purple-strong);
  font-size: 2.65rem;
}

.section-title h2::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  width: 42px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--purple);
  content: "";
}

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

.help-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 24px 28px;
  box-shadow: 0 10px 26px rgba(74, 53, 92, 0.045);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.help-card:hover,
.help-card:focus-visible {
  border-color: rgba(144, 120, 182, 0.35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.help-card__icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
}

.help-card__icon .icon {
  width: 45px;
  height: 45px;
  stroke-width: 1.25;
}

.help-card__icon--lilac {
  background: var(--purple-soft);
  color: var(--purple-strong);
}

.help-card__icon--sage {
  background: var(--sage-soft);
  color: #536d63;
}

.help-card__icon--coral {
  background: var(--peach-soft);
  color: var(--coral);
}

.help-card__icon--cream {
  background: var(--cream);
  color: #d39b63;
}

.help-card__icon--blue {
  background: var(--blue-soft);
  color: #6675a7;
}

.help-card__body {
  display: grid;
  gap: 7px;
}

.help-card strong {
  color: var(--purple-strong);
  font-size: 1.17rem;
  line-height: 1.14;
}

.help-card__body span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.help-card__arrow {
  color: var(--purple);
  font-size: 1.45rem;
  line-height: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
  max-width: var(--container);
  margin: 34px auto 0;
  padding: 0 34px;
}

.about__image {
  margin: 0;
}

.about__image img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  object-position: center 36%;
}

.about__content {
  display: grid;
  gap: 16px;
  min-height: 100%;
  align-content: center;
  border: 1px solid rgba(128, 103, 143, 0.12);
  border-radius: 38px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 248, 0.75)),
    var(--surface);
  padding: 38px 44px;
}

.about h2 {
  color: var(--purple-strong);
  font-size: 2.65rem;
}

.about p {
  max-width: 780px;
  color: var(--muted);
  font-weight: 600;
}

.about__badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
}

.about__badges li {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.about__badges .icon {
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple-strong);
}

.about__badges li:nth-child(1) .icon {
  background: var(--sage-soft);
  color: #5a756a;
}

.about__badges li:nth-child(2) .icon {
  background: var(--cream);
  color: #cc945c;
}

.about__badges li:nth-child(3) .icon {
  background: var(--peach-soft);
  color: var(--purple-strong);
}

.process {
  padding-top: 30px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 82px;
  right: 12%;
  left: 12%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(144, 120, 182, 0.4) 45%, transparent 0);
  background-size: 12px 2px;
  content: "";
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  min-height: 158px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  padding: 22px 24px;
  box-shadow: 0 10px 26px rgba(74, 53, 92, 0.04);
}

.process-card__number {
  position: absolute;
  top: 14px;
  left: 34px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.process-card:nth-child(2) .process-card__number {
  background: var(--sage);
  color: #3f5a51;
}

.process-card:nth-child(3) .process-card__number {
  background: var(--peach-soft);
  color: #d57862;
}

.process-card:nth-child(4) .process-card__number {
  background: var(--blue-soft);
  color: #6270a7;
}

.process-card__icon {
  width: 56px;
  height: 56px;
  margin-top: 38px;
  color: var(--purple-strong);
  stroke-width: 1.3;
}

.process-card h3 {
  margin-bottom: 7px;
  color: var(--purple-strong);
  font-size: 1.02rem;
}

.process-card p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.values {
  padding-top: 28px;
}

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

.value-card {
  min-height: 182px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  padding: 30px 32px;
  box-shadow: 0 10px 26px rgba(74, 53, 92, 0.04);
}

.value-card span {
  display: block;
  height: 28px;
  color: var(--purple);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.7;
}

.value-card h3 {
  margin-bottom: 8px;
  color: var(--purple-strong);
  font-size: 1.1rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-section {
  padding-top: 24px;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 70px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.faq__question {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px 18px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq__question::after {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple-strong);
  content: "+";
  font-weight: 800;
  line-height: 1;
}

.faq__question[aria-expanded="true"]::after {
  background: var(--purple);
  color: #ffffff;
  content: "-";
}

.faq__answer {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

[hidden] {
  display: none !important;
}

.contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(310px, 1fr) minmax(260px, 0.86fr);
  gap: 34px;
  align-items: center;
  max-width: calc(var(--container) - 68px);
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(144, 120, 182, 0.16);
  border-radius: 42px;
  background:
    linear-gradient(100deg, rgba(241, 229, 248, 0.96), rgba(255, 240, 234, 0.92) 52%, rgba(235, 245, 240, 0.92)),
    #f6edf8;
  padding: 32px 76px;
}

.contact-cta::after {
  position: absolute;
  right: 16px;
  bottom: -26px;
  width: 120px;
  height: 170px;
  border: solid rgba(104, 151, 136, 0.35);
  border-width: 0 0 0 2px;
  border-radius: 50% 0 0 0;
  content: "";
  transform: rotate(-12deg);
}

.contact-cta__message h2 {
  max-width: 360px;
  color: var(--purple-strong);
  font-size: 2rem;
  line-height: 1.05;
}

.contact-cta__message p {
  max-width: 370px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 34px;
  border-right: 1px solid rgba(144, 120, 182, 0.28);
  border-left: 1px solid rgba(144, 120, 182, 0.28);
  font-style: normal;
}

.contact-list a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-list span {
  overflow-wrap: anywhere;
}

.contact-list .icon {
  color: var(--purple-strong);
}

.contact-list a:hover span,
.contact-list a:focus-visible span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-cta__social {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.contact-cta__social .button {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 0.95rem;
}

.contact-cta__social p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a,
.social-links span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--purple-strong);
}

.social-links span {
  cursor: default;
  opacity: 0.68;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 34px 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.site-footer nav {
  display: flex;
  gap: 34px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--purple-strong);
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 86px 24px;
}

.legal-page h1 {
  margin-bottom: 18px;
  color: var(--purple-strong);
  font-size: 3.4rem;
}

.legal-page h2 {
  margin: 34px 0 10px;
  color: var(--purple-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-weight: 600;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  margin: 12px 0 0;
}

.legal-back {
  display: inline-flex;
  margin-top: 36px;
  color: var(--purple-strong);
  font-weight: 800;
  text-underline-offset: 5px;
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--purple-strong);
    cursor: pointer;
  }

  .nav-toggle__line,
  .nav-toggle__line::before,
  .nav-toggle__line::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-toggle__line {
    position: relative;
  }

  .nav-toggle__line::before,
  .nav-toggle__line::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .nav-toggle__line::before {
    top: -6px;
  }

  .nav-toggle__line::after {
    top: 6px;
  }

  .nav {
    position: fixed;
    top: 92px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    border-radius: 12px;
    padding: 13px 14px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--purple-soft);
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 4rem;
  }

  .hero__media {
    max-width: 980px;
  }

  .feature-band,
  .help-grid,
  .about__badges,
  .process-list,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-cta {
    grid-template-columns: 1fr;
    max-width: calc(100% - 48px);
  }

  .contact-list {
    border-right: 0;
    border-left: 0;
    padding: 0;
  }

  .process-list::before {
    display: none;
  }

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

@media (max-width: 760px) {
  body::before,
  body::after {
    display: none;
  }

  .site-header {
    padding: 14px 16px;
  }

  .site-header.is-scrolled {
    padding-top: 12px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__mark svg {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .brand small {
    font-size: 0.95rem;
  }

  .nav {
    top: 76px;
    right: 16px;
    left: 16px;
  }

  .hero,
  .feature-band,
  .section,
  .about {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    gap: 24px;
    padding-top: 32px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 3.1rem;
    line-height: 1;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

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

  .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
  }

  .hero__media img {
    border-radius: 58px 8px 58px 8px;
  }

  .feature-band,
  .help-grid,
  .about__badges,
  .process-list,
  .values-grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .section-title h2,
  .about h2 {
    font-size: 2.15rem;
  }

  .help-card {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .help-card__icon {
    width: 66px;
    height: 66px;
  }

  .help-card__icon .icon {
    width: 34px;
    height: 34px;
  }

  .about__content {
    padding: 28px 22px;
  }

  .process-card {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 20px;
  }

  .process-card__number {
    left: 24px;
  }

  .contact-cta {
    max-width: calc(100% - 32px);
    border-radius: 28px;
    padding: 26px 22px;
  }

  .contact-cta__message h2 {
    font-size: 1.85rem;
  }

  .contact-cta__social {
    justify-items: stretch;
  }

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

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 8px;
  }

  .legal-page {
    padding: 52px 16px;
  }

  .legal-page h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand small {
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .help-card {
    grid-template-columns: 1fr auto;
  }

  .help-card__icon {
    grid-column: 1 / -1;
  }
}
