@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #fff;
}

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

.hero {
  min-height: 100svh;
  padding: 22px 0 54px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(113, 0, 29, 0.78) 0%, rgba(121, 22, 48, 0.53) 43%, rgba(241, 211, 220, 0.67) 100%), url("./assets/hero-bg.webp");
  background-position: center;
  background-size: cover;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

.site-header {
  min-height: 75px;
  width: 100%;
  padding: 10px 15px 10px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #800023;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -1.5px;
}
.logo__mark {
  width: 35px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
}

.navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.7vw, 29px);
  font-size: 14px;
}
.navigation a {
  white-space: nowrap;
  transition: color 0.2s ease;
}
.navigation a:hover {
  color: #800023;
}

.mobile-menu-contacts {
  display: none;
}

.header-cta {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 28px;
  background: #800023;
}

.menu-toggle {
  display: none;
}

.hero__content {
  width: min(690px, 50vw);
  margin-top: 38px;
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0;
  font-size: 57px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -2.4px;
}

.hero__description {
  max-width: 610px;
  margin: 20px 0 32px;
  font-size: 16px;
  line-height: 1.55;
}

.main-cta {
  width: 345px;
  height: 56px;
  padding: 3px 3px 3px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #800023;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 999px;
  background: #fff;
}
.main-cta > span:first-child {
  min-width: 0;
  font-size: 18px;
  letter-spacing: -0.55px;
}
.main-cta__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 50%;
  background: #800023;
}
.main-cta__icon svg {
  width: 25px;
  height: 25px;
}

.hero__note {
  margin: 13px 0 31px;
  font-size: 16px;
}

.benefits {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  font-size: 16px;
  list-style: none;
}
.benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.benefits li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  background: #800023;
  clip-path: polygon(50% 0, 63% 12%, 80% 8%, 88% 25%, 100% 37%, 93% 53%, 100% 69%, 84% 79%, 79% 97%, 60% 91%, 45% 100%, 33% 87%, 14% 88%, 9% 70%, 0 57%, 10% 42%, 5% 24%, 23% 17%, 32% 1%);
}

@media (max-width: 1100px) {
  .navigation {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 100svh;
    padding: 37px 0 70px;
    background: linear-gradient(180deg, rgba(116, 0, 31, 0.45) 0%, rgba(92, 0, 25, 0.38) 50%, rgba(192, 132, 150, 0.72) 100%), url("./assets/hero-bg.webp");
    background-position: 43% center;
  }
  .site-header {
    min-height: 76px;
    padding: 8px 13px 8px 20px;
    position: relative;
    z-index: 4;
    border-radius: 42px;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .logo {
    position: relative;
    z-index: 4;
    font-size: 25px;
  }
  .logo__mark {
    width: 28px;
    height: 32px;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    width: 50px;
    height: 50px;
    margin-left: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 4;
    border: 0;
    border-radius: 50%;
    background: #800023;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 25px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .navigation {
    margin: 0;
    padding: 145px 28px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(23px, 4vh, 42px);
    position: fixed;
    inset: 0;
    z-index: 3;
    color: #fff;
    font-size: clamp(29px, 8vw, 43px);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    background: #75001f;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .navigation > a {
    white-space: nowrap;
  }
  .mobile-menu-contacts {
    width: min(330px, 100%);
    margin-top: auto;
    padding-top: 45px;
    display: grid;
    gap: 19px;
    align-self: center;
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
  }
  .mobile-menu-contacts a,
  .mobile-menu-contacts span {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    white-space: normal;
  }
  .mobile-menu-contacts svg {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  body.menu-open .site-header {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.menu-open .logo {
    color: #fff;
  }
  body.menu-open .menu-toggle {
    background: transparent;
  }
  .hero__content {
    width: 100%;
    margin-top: 50px;
  }
  h1 {
    font-size: clamp(39px, 7.2vw, 47px);
    line-height: 1.19;
    letter-spacing: -1.8px;
  }
  .hero__description {
    max-width: none;
    margin: 25px 0 35px;
    font-size: 16px;
    line-height: 1.4;
  }
  .main-cta {
    width: 345px;
    max-width: 100%;
    height: 56px;
    padding-left: 24px;
  }
  .main-cta > span:first-child {
    font-size: clamp(15px, 4vw, 18px);
  }
  .main-cta__icon {
    width: 50px;
    height: 50px;
  }
  .hero__note {
    margin: 26px 0 51px;
  }
  .benefits {
    gap: 17px;
  }
  .benefits li {
    align-items: flex-start;
  }
}
@media (max-width: 420px) {
  .site-header {
    min-height: 70px;
    padding-left: 18px;
  }
  .logo {
    font-size: 23px;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
  }
  .hero__content {
    margin-top: 42px;
  }
  h1 {
    font-size: 37px;
  }
}
.partners {
  padding: 78px 0 72px;
  color: #2b2022;
  background: #fbf2f0;
}
.partners__title {
  margin: 0 auto;
  color: #800023;
  font-size: 57px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -2px;
  text-align: center;
}

.methodologies {
  margin-top: 37px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.methodology {
  text-align: center;
}
.methodology__logo {
  height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #800023;
  font-size: 16px;
  font-weight: 700;
}
.methodology__logo::before {
  content: attr(data-placeholder);
}
.methodology__logo:has(img:not(.is-missing))::before {
  display: none;
}
.methodology__logo img {
  width: 100%;
  max-width: 165px;
  max-height: 125px;
  position: absolute;
  object-fit: contain;
}
.methodology__logo img.is-missing {
  display: none;
}
.methodology h3 {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.12;
}

.partners-about {
  margin-top: 174px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 68px;
  align-items: start;
}
.partners-about__visual {
  min-height: 645px;
  overflow: hidden;
  position: relative;
  border-radius: 22px;
  background: #e5d4d1;
}
.partners-about__visual > img {
  width: 100%;
  height: 100%;
  min-height: 645px;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.partners-about__visual > img.is-missing {
  display: none;
}
.partners-about__content {
  padding-top: 4px;
}
.partners-about__content h2 {
  margin: 0;
  color: #800023;
  font-size: 57px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -2px;
}
.partners-about__lead {
  margin: 25px 0 17px;
  font-size: 29px;
  line-height: 1.2;
}
.partners-about__locations {
  margin: 0;
  font-size: 16px;
  line-height: 1.18;
}

.partner-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.partner-stat {
  min-height: 146px;
  padding: 5px 12px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.partner-stat:nth-child(n+3) {
  padding-top: 41px;
  border-top: 1px solid rgba(128, 0, 35, 0.12);
}
.partner-stat strong {
  color: #800023;
  font-size: 57px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
}
.partner-stat span {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.25;
}

@media (max-width: 1000px) {
  .methodologies {
    grid-template-columns: repeat(3, 1fr);
  }
  .partners-about {
    margin-top: 100px;
    grid-template-columns: 1fr;
  }
  .partners-about__visual {
    max-width: 650px;
  }
}
@media (max-width: 700px) {
  .partners {
    padding: 60px 0;
  }
  .partners__title,
  .partners-about__content h2 {
    font-size: 39px;
    letter-spacing: -1.2px;
  }
  .partners__title br {
    display: none;
  }
  .methodologies {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .methodology__logo {
    height: 105px;
  }
  .methodology h3 {
    font-size: 14px;
  }
  .partners-about {
    margin-top: 75px;
    gap: 38px;
  }
  .partners-about__visual,
  .partners-about__visual > img {
    min-height: 440px;
  }
  .partners-about__lead {
    font-size: 23px;
  }
  .partners-about__lead br {
    display: none;
  }
  .partner-stat strong {
    font-size: 45px;
  }
}
.solutions {
  padding: 72px 0 84px;
  position: relative;
  color: #fff;
  background: url("./assets/services-bg.webp") no-repeat center center/cover;
}
.solutions__heading {
  text-align: center;
}
.solutions__heading h2 {
  margin: 0;
  font-size: 57px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -2px;
}
.solutions__heading p {
  margin: 19px auto 0;
  font-size: 14px;
  line-height: 1.25;
}

.solution-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-card {
  min-height: 480px;
  padding: 24px 21px 22px;
  color: #2c2224;
  border-radius: 9px;
  background: #fffaf9;
}
.solution-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.solution-card__icon {
  width: 48px;
  height: 48px;
  color: #800023;
}
.solution-card__icon svg,
.solution-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.solution-card__number {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #800023;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  background: #f8dde1;
}
.solution-card h3 {
  min-height: 49px;
  margin: 28px 0 11px;
  color: #800023;
  font-size: 18px;
  line-height: 1.12;
}
.solution-card p, .solution-card li {
  font-size: 14px;
  line-height: 1.35;
}
.solution-card p {
  margin: 0;
}
.solution-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.solution-card li {
  margin-top: 13px;
}
.solution-card li::before {
  content: "• ";
}

.recovery-process {
  padding: 86px 0 94px;
  color: #2b2022;
  background: #fbf2f0;
}
.recovery-process__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
}
.recovery-process__intro h2 {
  margin: 0;
  color: #800023;
  font-size: 57px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -2px;
}
.recovery-process__intro > p {
  max-width: 530px;
  margin: 22px 0 38px;
  font-size: 14px;
  line-height: 1.3;
}
.recovery-process__photo {
  min-height: 355px;
  overflow: hidden;
  border-radius: 24px;
  background: #ded0cd;
}
.recovery-process__photo img {
  width: 100%;
  height: 355px;
  display: block;
  object-fit: cover;
}
.recovery-process__photo img.is-missing {
  display: none;
}

.process-steps {
  margin: 0;
  padding: 4px 0 0;
  display: grid;
  gap: 32px;
  list-style: none;
  counter-reset: process;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
}
.process-step__number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  border-radius: 13px;
  background: #800023;
}
.process-step h3 {
  margin: 10px 0 17px;
  font-size: 18px;
  line-height: 1.2;
}
.process-step p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.25;
}

@media (max-width: 1000px) {
  .solution-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .recovery-process__layout {
    grid-template-columns: 1fr;
  }
  .recovery-process__intro {
    max-width: 650px;
  }
}
@media (max-width: 700px) {
  .solutions {
    padding: 60px 0;
  }
  .solutions__heading h2,
  .recovery-process__intro h2 {
    font-size: 39px;
    letter-spacing: -1.2px;
  }
  .solutions__heading h2 br {
    display: none;
  }
  .solutions__heading p br {
    display: none;
  }
  .solution-cards {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }
  .solution-card {
    min-height: auto;
  }
  .solution-card h3 {
    min-height: 0;
  }
  .recovery-process {
    padding: 60px 0;
  }
  .recovery-process__layout {
    gap: 48px;
  }
  .recovery-process__photo,
  .recovery-process__photo img {
    min-height: 280px;
    height: 280px;
  }
  .process-step {
    grid-template-columns: 52px 1fr;
    gap: 15px;
  }
  .process-step__number {
    width: 52px;
    height: 52px;
    font-size: 20px;
    border-radius: 10px;
  }
  .process-step h3 {
    margin-top: 7px;
  }
}
.client-stories {
  padding: 88px 0 84px;
  color: #2c2224;
  background: #fbf2f0;
}
.client-stories > .container > h2 {
  margin: 0 0 60px;
  color: #800023;
  font-size: 57px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2px;
  text-align: center;
}

.case-carousel__viewport {
  overflow: hidden;
}
.case-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}

.client-case {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.client-case__image {
  min-height: 575px;
  overflow: hidden;
  border-radius: 25px;
  background: #ded0cd;
}
.client-case__image img {
  width: 100%;
  height: 100%;
  min-height: 575px;
  display: block;
  object-fit: cover;
}
.client-case__image img.is-missing {
  display: none;
}
.client-case__details {
  display: grid;
  grid-template-rows: 1fr 1.08fr;
  gap: 22px;
}
.client-case__story, .client-case__summary > div {
  padding: 30px 28px;
  border: 1px solid rgba(128, 0, 35, 0.32);
  border-radius: 25px;
  background: #f7d9dd;
}
.client-case h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}
.client-case__story {
  display: flex;
  flex-direction: column;
}
.client-case__story blockquote {
  margin: 27px 0 20px;
  font-size: 14px;
  line-height: 1.35;
}
.client-case__story > p {
  margin: auto 0 0;
  font-size: 13px;
}
.client-case__story > p small {
  display: block;
  margin-top: 9px;
}
.client-case__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.client-case__summary p {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.35;
}

.carousel-controls {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 13px;
}
.carousel-controls button {
  width: 54px;
  height: 54px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #800023;
  font: inherit;
  font-size: 29px;
  line-height: 1;
  border: 2px solid #800023;
  border-radius: 17px;
  background: transparent;
  cursor: pointer;
}
.carousel-controls--light {
  margin: 0;
}
.carousel-controls--light button {
  width: 64px;
  height: 64px;
  color: #fff;
  border: 0;
  border-radius: 0;
}
.carousel-controls--light button svg {
  width: 64px;
  height: 64px;
  display: block;
}

.case-carousel > .carousel-controls button {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 0;
}
.case-carousel > .carousel-controls button svg {
  width: 64px;
  height: 64px;
  display: block;
}

.testimonials {
  padding: 70px 0 88px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(111, 0, 30, 0.92), rgba(130, 20, 49, 0.82)), url("./assets/testimonials-bg.webp") center/cover no-repeat, #790020;
}
.testimonials__heading {
  margin-bottom: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials__heading h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.6px;
}
.testimonials__viewport {
  overflow: visible;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
}

.testimonial-card {
  min-width: calc(94% - 12px);
  padding: 10px;
  color: #2c2224;
  border-radius: 25px;
  background: #f4cfd4;
}
.testimonial-card__quote, .testimonial-card__author {
  border-radius: 15px;
  background: #fff;
}
.testimonial-card__quote {
  padding: 16px 20px 23px;
}
.testimonial-card__rating {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.testimonial-card__rating img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
}
.testimonial-card__rating span {
  width: 104px;
  height: 16px;
  display: block;
  color: #ffb300;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 3px;
  white-space: nowrap;
}
.testimonial-card blockquote {
  margin: 11px 0 0;
  font-size: 19px;
  line-height: 1.35;
}
.testimonial-card__author {
  margin-top: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__author img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  background: #ded0cd;
}
.testimonial-card__author img.is-missing {
  visibility: hidden;
}
.testimonial-card__author p {
  margin: 0;
  font-size: 15px;
}
.testimonial-card__author small {
  display: block;
  margin-top: 7px;
}

@media (max-width: 900px) {
  .client-case {
    grid-template-columns: 1fr;
  }
  .client-case__image,
  .client-case__image img {
    min-height: 420px;
    height: 420px;
  }
}
@media (max-width: 700px) {
  .client-stories {
    padding: 60px 0;
  }
  .client-stories > .container > h2 {
    margin-bottom: 40px;
    font-size: 39px;
    letter-spacing: -1.2px;
  }
  .client-case__image,
  .client-case__image img {
    min-height: 300px;
    height: 300px;
  }
  .client-case__details {
    grid-template-rows: auto;
  }
  .client-case__summary {
    grid-template-columns: 1fr;
  }
  .client-case__story,
  .client-case__summary > div {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .client-case h3 {
    font-size: 21px;
  }
  .testimonials {
    padding: 60px 0;
  }
  .testimonials__heading {
    margin-bottom: 40px;
    align-items: flex-end;
    gap: 20px;
  }
  .testimonials__heading h2 {
    font-size: 36px;
  }
  .carousel-controls button {
    width: 45px;
    height: 45px;
    border-radius: 13px;
  }
  .carousel-controls--light button svg {
    width: 45px;
    height: 45px;
  }
  .testimonial-card {
    min-width: 92%;
  }
  .testimonial-card blockquote {
    font-size: 16px;
  }
}
.team-faq {
  padding: 78px 0 94px;
  color: #2c2224;
  background: #fbf2f0;
}

.team__heading {
  text-align: center;
}
.team__heading h2 {
  margin: 0;
  color: #800023;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -1.5px;
}
.team__heading p {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.35;
}
.team__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-member__photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
  background: #ded0cd;
}
.team-member__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.team-member__photo img.is-missing {
  display: none;
}
.team-member h3 {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.team-member p {
  margin: 5px 0 0;
  font-size: 11px;
}

.faq {
  width: min(720px, 100%);
  margin: 132px auto 0;
}
.faq > h2 {
  margin: 0 0 50px;
  color: #800023;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -1.5px;
  text-align: center;
}
.faq__list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  will-change: height;
  border: 1px solid rgba(128, 0, 35, 0.22);
  border-radius: 22px;
  background: #f7d9dd;
}
.faq-item summary {
  min-height: 64px;
  padding: 18px 56px 18px 25px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary b {
  margin-right: 10px;
  color: #800023;
  font-weight: 600;
}
.faq-item summary::before, .faq-item summary::after {
  content: "";
  width: 15px;
  height: 1.5px;
  position: absolute;
  top: 50%;
  right: 25px;
  background: #2c2224;
  transition: transform 0.2s ease;
}
.faq-item summary::after {
  transform: rotate(90deg);
}
.faq-item[open] summary::after {
  transform: rotate(0);
}
.faq-item__answer {
  padding: 0 25px 24px;
  transform-origin: top;
}
.faq-item__answer p, .faq-item__answer li {
  font-size: 13px;
  line-height: 1.38;
}
.faq-item__answer p {
  margin: 0 0 12px;
}
.faq-item__answer ul {
  margin: 0 0 12px;
  padding-left: 17px;
}
.faq-item__answer li {
  margin: 7px 0;
}

@media (max-width: 900px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 22px;
  }
}
@media (max-width: 700px) {
  .team-faq {
    padding: 60px 0;
  }
  .team__heading h2,
  .faq > h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .team__heading h2 br,
  .team__heading p br {
    display: none;
  }
  .team__grid {
    margin-top: 42px;
  }
  .team-member__photo {
    border-radius: 17px;
  }
  .team-member h3 {
    margin-top: 12px;
    font-size: 13px;
  }
  .faq {
    margin-top: 90px;
  }
  .faq > h2 {
    margin-bottom: 35px;
  }
  .faq-item {
    border-radius: 16px;
  }
  .faq-item summary {
    min-height: 60px;
    padding: 16px 47px 16px 17px;
    font-size: 14px;
  }
  .faq-item summary::before,
  .faq-item summary::after {
    right: 18px;
  }
  .faq-item__answer {
    padding: 0 17px 20px;
  }
}
.contact-section {
  padding: 74px 0 90px;
  color: #2c2224;
  background: #fbf2f0;
}
.contact-section__heading {
  text-align: center;
}
.contact-section__heading h2 {
  margin: 0;
  color: #800023;
  font-size: 57px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -2px;
}
.contact-section__heading p {
  margin: 26px 0 0;
  font-size: 16px;
  line-height: 1.4;
}

.contact-form {
  width: min(660px, 100%);
  margin: 60px auto 0;
}
.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
  row-gap: 23px;
}
.contact-form__fields label {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.contact-form__fields label > span {
  padding: 0 10px;
  font-size: 16px;
}
.contact-form__fields input,
.contact-form__fields textarea {
  width: 100%;
  padding: 7px 10px;
  color: #2c2224;
  font: inherit;
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid rgba(128, 0, 35, 0.33);
  border-radius: 0;
  outline: none;
  background: transparent;
}
.contact-form__fields input:focus,
.contact-form__fields textarea:focus {
  border-bottom-color: #800023;
}
.contact-form__fields input {
  height: 31px;
}
.contact-form__fields textarea {
  min-height: 91px;
  resize: vertical;
}
.contact-form__message {
  grid-column: 1/-1;
}
.contact-form__submit {
  width: 100%;
  min-height: 66px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font: inherit;
  font-size: 18px;
  border: 0;
  border-radius: 36px;
  background: #800023;
  cursor: pointer;
}
.contact-form__submit svg {
  width: 24px;
  height: 24px;
}
.contact-form__consent {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 12px;
  line-height: 1.4;
}
.contact-form__consent input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #800023;
}
.contact-form__consent a {
  text-decoration: underline;
}

.site-footer {
  padding: 82px 0 58px;
  color: #fff;
  background: #800023;
}
.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.site-footer__bottom {
  margin-top: 51px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}
.site-footer__bottom p {
  margin: 0;
  text-align: center;
}
.site-footer__bottom a:last-child {
  justify-self: end;
}

.footer-contacts {
  display: grid;
  gap: 16px;
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}
.footer-contacts a, .footer-contacts span {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.footer-contacts svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-navigation {
  padding-top: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 29px;
  font-size: 14px;
}

.footer-logo {
  margin-top: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: clamp(130px, 19vw, 270px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -12px;
}
.footer-logo__mark {
  width: 0.85em;
  height: 1em;
  flex: 0 0 auto;
  color: #fff;
}

@media (max-width: 800px) {
  .site-footer__top {
    flex-direction: column;
  }
  .footer-navigation {
    justify-content: flex-start;
  }
  .footer-logo {
    letter-spacing: -7px;
  }
}
@media (max-width: 700px) {
  .contact-section {
    padding: 60px 0 70px;
  }
  .contact-section__heading h2 {
    font-size: 39px;
    letter-spacing: -1.2px;
  }
  .contact-section__heading h2 br,
  .contact-section__heading p br {
    display: none;
  }
  .contact-form {
    margin-top: 45px;
  }
  .contact-form__fields {
    grid-template-columns: 1fr;
  }
  .contact-form__message {
    grid-column: auto;
  }
  .contact-form__submit {
    min-height: 58px;
    font-size: 16px;
  }
  .site-footer {
    padding: 60px 0 38px;
  }
  .footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo {
    margin-top: 60px;
    gap: 12px;
    font-size: 22vw;
    letter-spacing: -4px;
  }
  .site-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__bottom a:last-child {
    justify-self: center;
  }
}
.policy-page {
  color: #2c2224;
  background: #fbf2f0;
}

.policy-header {
  padding: 18px 0;
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
}
.policy-header__inner {
  min-height: 68px;
  padding: 10px 18px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.policy-header__back {
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  background: rgba(108, 8, 32, 0.88);
}
.policy-header__back span {
  font-size: 20px;
}

.policy-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #800023;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1.3px;
}
.policy-logo img {
  width: 30px;
  height: 35px;
  display: block;
}
.policy-logo--light {
  color: #fff;
}
.policy-logo--light img {
  filter: brightness(0) invert(1);
}

.policy-main {
  padding-bottom: 100px;
  background: linear-gradient(115deg, rgba(108, 8, 32, 0.98), rgba(151, 65, 86, 0.8)) 0 0/100% 440px no-repeat, #fbf2f0;
}

.policy-layout {
  padding-top: 151px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.policy-aside {
  margin-top: 310px;
  padding: 22px;
  position: sticky;
  top: 25px;
  border: 1px solid rgba(108, 8, 32, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}
.policy-aside > p {
  margin: 0 0 18px;
  color: #800023;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.policy-aside nav {
  display: grid;
  gap: 12px;
  font-size: 13px;
}
.policy-aside a {
  transition: color 0.2s ease, transform 0.2s ease;
}
.policy-aside a:hover {
  color: #800023;
  transform: translateX(3px);
}

.policy-content {
  min-width: 0;
}
.policy-content__hero {
  min-height: 289px;
  color: #fff;
}
.policy-content__hero > span {
  display: inline-block;
  margin-bottom: 23px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.policy-content__hero h1 {
  margin: 0;
  font-size: clamp(60px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -4px;
}
.policy-content__hero p {
  max-width: 630px;
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 1.5;
}
.policy-content > section {
  padding: 42px 38px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  scroll-margin-top: 25px;
  border-bottom: 1px solid rgba(108, 8, 32, 0.14);
  background: rgba(255, 255, 255, 0.42);
}
.policy-content > section:first-of-type {
  border-radius: 24px 24px 0 0;
}
.policy-content > section:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 24px 24px;
}
.policy-content > section h2 {
  margin: 0 0 20px;
  color: #800023;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
}
.policy-content > section p, .policy-content > section li {
  font-size: 15px;
  line-height: 1.55;
}
.policy-content > section p {
  margin: 0 0 16px;
}
.policy-content > section p:last-child {
  margin-bottom: 0;
}
.policy-content > section ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.policy-content > section li {
  margin: 7px 0;
}
.policy-content > section a {
  color: #800023;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 15px;
  background: #800023;
}

.policy-table {
  margin: 8px 0 23px;
  border: 1px solid rgba(108, 8, 32, 0.17);
  border-radius: 16px;
  background: rgba(251, 242, 240, 0.72);
}
.policy-table > div {
  padding: 18px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(108, 8, 32, 0.12);
}
.policy-table > div:last-child {
  border-bottom: 0;
}
.policy-table strong {
  color: #800023;
  font-size: 14px;
}
.policy-table span {
  font-size: 14px;
  line-height: 1.45;
}

.policy-status {
  margin: 6px 0 24px;
  padding: 25px;
  border: 1px solid rgba(108, 8, 32, 0.22);
  border-radius: 18px;
  background: #f7d9dd;
}
.policy-status > span {
  display: block;
  margin-bottom: 12px;
  color: #800023;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.policy-status strong {
  display: block;
  margin-bottom: 11px;
  color: #800023;
  font-size: 20px;
  line-height: 1.3;
}
.policy-status p {
  margin: 0;
}

.browser-links {
  margin: 21px 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.browser-links a {
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(108, 8, 32, 0.18);
  border-radius: 13px;
  background: #fbf2f0;
  text-decoration: none !important;
}

.policy-footer {
  padding: 45px 0;
  color: #fff;
  background: #800023;
}
.policy-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
}
.policy-footer__inner > div {
  display: flex;
  gap: 22px;
  font-size: 12px;
}
.policy-footer__inner > p {
  margin: 0;
  justify-self: end;
  font-size: 12px;
}

@media (max-width: 900px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .policy-aside {
    display: none;
  }
  .policy-footer__inner {
    grid-template-columns: 1fr;
  }
  .policy-footer__inner > p {
    justify-self: start;
  }
}
@media (max-width: 700px) {
  .policy-header {
    padding-top: 10px;
  }
  .policy-header__inner {
    min-height: 60px;
    padding: 7px 9px 7px 17px;
  }
  .policy-logo {
    font-size: 23px;
  }
  .policy-logo img {
    width: 25px;
    height: 29px;
  }
  .policy-header__back {
    min-height: 43px;
    padding: 0 14px;
    font-size: 12px;
  }
  .policy-main {
    background-size: 100% 390px;
    padding-bottom: 60px;
  }
  .policy-layout {
    padding-top: 115px;
  }
  .policy-content__hero {
    min-height: 275px;
  }
  .policy-content__hero h1 {
    font-size: 54px;
    letter-spacing: -2.7px;
  }
  .policy-content__hero p {
    margin-top: 23px;
    font-size: 14px;
  }
  .policy-content > section {
    padding: 29px 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .policy-content > section h2 {
    font-size: 26px;
  }
  .policy-content > section p,
  .policy-content > section li {
    font-size: 14px;
  }
  .policy-number {
    width: 45px;
    height: 45px;
    border-radius: 13px;
  }
  .policy-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .browser-links {
    grid-template-columns: 1fr;
  }
  .policy-footer__inner > div {
    flex-direction: column;
    gap: 12px;
  }
}
.contact-form__status {
  min-height: 1.5em;
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
}

.contact-form__status:empty {
  display: none;
}

.contact-form__status.is-success {
  color: #b9f6ca;
}

.contact-form__status.is-error {
  color: #ffcdd2;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}
