:root {
  --font-family: "Plus Jakarta Sans", sans-serif;
  --color3: #1a2744;
}

/* ── Skip-link (accessibility + Google PageSpeed) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 8px 16px;
  background: #1a2744;
  color: #fff;
  font-size: 14px;
  z-index: 99999;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  top: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  padding: 32px 32px 80px;
  background: #fff;
  overflow: visible;
}

.hero__inner {
  position: relative;
  max-width: 1856px;
  margin: 0 auto;
  background-image: url("img/hero/hero-back.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 24px;
  aspect-ratio: 1856 / 770;
  padding: 56px 40px 200px;
  overflow: visible;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hero__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: #1a2744;
  margin-bottom: 6px;
}

.hero__tags {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7a99;
  line-height: 1.4;
}

.hero__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #5778cb;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 32px 10px 10px;
  border-radius: 50px;
  margin-top: 16px;
  transition: background 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.hero__btn:hover {
  background: #4566b8;
}

.hero__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__btn-icon::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg) translateX(-2px);
}

.hero__note {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  color: #9aa3b8;
  margin-top: 4px;
}

.hero__vehicles {
  position: absolute;
  bottom: -120px;
  left: 52%;
  transform: translateX(-50%);
  width: 1394px;
  max-width: 80%;
  z-index: 5;
  pointer-events: none;
}

.hero__cards {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 120px;
  z-index: 6;
}

.hero__card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px;
  width: 256px;
  height: 288px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero__card-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: right;
  color: var(--color3);
}

.hero__card-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__card-list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: right;
  color: var(--color3);
}

.hero__card-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: right;
  color: var(--color3);
}

@media (max-width: 768px) {
  .hero {
    padding: 12px 12px 80px;
  }

  .hero__inner {
    aspect-ratio: unset;
    padding: 28px 16px 220px;
  }

  .hero__content {
    align-items: flex-start;
    text-align: left;
  }

  .hero__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: var(--color3);
  }

  .hero__tags {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--color3);
    text-align: left;
  }

  .hero__title-br {
    display: none;
  }

  .hero__btn {
    font-size: 14px;
    padding: 8px 24px 8px 8px;
    width: 100%;
    justify-content: center;
  }

  .hero__btn-icon {
    width: 32px;
    height: 32px;
  }

  .hero__note {
    text-align: center;
    width: 100%;
  }

  .hero__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0;
    margin-top: 20px;
    z-index: 4;
  }

  .hero__card {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 16px;
  }

  .hero__card-title,
  .hero__card-list li,
  .hero__card-text {
    font-size: 13px;
    text-align: left;
  }

  .hero__card-icon {
    width: 24px;
    height: 24px;
  }

  .hero__vehicles {
    width: 100%;
    max-width: 100%;
    bottom: 60px;
  }
}

/* ── HOW ── */
.how {
  padding: 80px 40px;
  background: #fff;
}

.how__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.how__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--color3);
  text-align: center;
}

.how__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: var(--color3);
  margin-bottom: 24px;
}

.how__items {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.how__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.how__icon-wrap {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.how__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how__connector {
  flex: 0 0 160px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.how__connector svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.how__connector--flip svg {
  transform: scaleY(-1);
}

.how__item-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: var(--color3);
}

.how__item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color3);
  opacity: 0.6;
}

.how__item-note {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color3);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .how {
    padding: 48px 16px;
  }

  .how__title {
    font-size: 24px;
  }

  .how__subtitle {
    font-size: 16px;
  }

  .how__items {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .how__connector {
    display: none;
  }

  .how__item-title {
    font-size: 22px;
  }

  .how__item-desc,
  .how__item-note {
    font-size: 15px;
  }
}

/* ── WHY ── */
.why {
  background: #e8ecf7;
  padding: 0 40px;
}

.why__container {
  max-width: 1856px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 860px;
  gap: 60px;
}

.why__left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.why__car {
  width: 100%;
  max-width: 820px;
  object-fit: contain;
  margin-bottom: -40px;
}

.why__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--color3);
  margin-top: 111px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.why__item-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--color3);
  margin-bottom: 4px;
}

.why__item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--color3);
  opacity: 0.6;
}

.why__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.why__btn-primary {
  height: 56px;
  padding: 0 32px;
  background: var(--color3);
  color: #ffffff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.why__btn-primary:hover {
  opacity: 0.85;
}

.why__btn-secondary {
  height: 56px;
  padding: 0 24px;
  border: 1px solid var(--color3);
  color: var(--color3);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  line-height: 1.3;
  transition:
    background 0.2s,
    color 0.2s;
}

.why__btn-secondary:hover {
  background: var(--color3);
  color: #ffffff;
}

.why__note {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  color: var(--color3);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .why {
    padding: 40px 16px;
  }

  .why__container {
    flex-direction: column;
    min-height: unset;
    gap: 24px;
  }

  .why__left {
    flex: 0 0 auto;
    width: 100%;
    align-self: auto;
  }

  .why__title {
    font-size: 24px;
    text-align: center;
    margin-top: 0;
  }

  .why__car {
    max-width: 100%;
    margin-bottom: 0;
  }

  .why__right {
    gap: 24px;
  }

  .why__list {
    gap: 28px;
  }

  .why__item-title {
    font-size: 16px;
  }

  .why__item-desc {
    font-size: 14px;
  }

  .why__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .why__btn-primary,
  .why__btn-secondary {
    width: 100%;
    font-size: 14px;
    height: 52px;
  }

  .why__note {
    text-align: center;
  }
}

/* ── CATALOG ── */
.catalog {
  padding: 80px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.catalog__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--color3);
}

.catalog__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color3);
  opacity: 0.6;
}

.catalog__disclaimer {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color3);
  opacity: 0.45;
  text-align: center;
}

/* category */
.cat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #e4e8f4;
  border-radius: 16px;
  padding: 24px 28px;
  flex-wrap: wrap;
}

.cat__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--color3);
  line-height: 1.2;
}

.cat__desc {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--color3);
  opacity: 0.5;
  margin-top: 3px;
}

.cat__header-right {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.cat__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.cat__meta-label {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 400;
  color: var(--color3);
  opacity: 0.45;
}

.cat__meta-value {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 600;
  color: #5778cb;
  line-height: 1.2;
}

/* slider */
.cat__slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat__slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  flex: 1;
  scroll-behavior: smooth;
}

.cat__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d0d8f0;
  font-size: 24px;
  color: var(--color3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}

.cat__arrow:hover {
  background: var(--color3);
  color: #fff;
}

/* card */
.card {
  flex: 0 0 calc(33.333% - 14px);
  border: 1.5px solid #d0d8f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  transition: border-color 0.2s;
}

.card--active {
  border-color: #5778cb;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card__tag {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 500;
  color: var(--color3);
  background: #eef1fb;
  border-radius: 20px;
  padding: 3px 10px;
}

.card__img-wrap {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: #5778cb;
  line-height: 1.3;
}

.card__subdesc {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--color3);
  opacity: 0.6;
  line-height: 1.4;
}

.card__min,
.card__month {
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--color3);
  opacity: 0.5;
  line-height: 1.4;
}

.card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 4px;
}

.card__price-label {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--color3);
  opacity: 0.5;
}

.card__price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: var(--color3);
}

.card__price span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
}

.card__btn {
  width: 100%;
  height: 44px;
  background: var(--color3);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  margin-top: auto;
  transition: opacity 0.2s;
}

.card__btn:hover {
  opacity: 0.85;
}

.card__btn--active {
  background: #7bdd2a;
  color: var(--color3);
}

@media (max-width: 768px) {
  .catalog {
    padding: 48px 16px;
    gap: 40px;
  }

  .catalog__title {
    font-size: 24px;
  }

  .catalog__subtitle {
    font-size: 14px;
  }

  .cat__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .card {
    flex: 0 0 80vw;
  }

  .cat__arrow {
    display: none;
  }

  .cat__slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .card {
    scroll-snap-align: start;
  }
}

/* ── CTA ── */
.cta {
  background: #5778cb;
  padding: 0 40px;
  overflow: hidden;
  position: relative;
}

.cta__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.cta__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "image header"
    "image actions";
  min-height: 560px;
  gap: 24px 146px;
}

.cta__image {
  grid-area: image;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__header {
  grid-area: header;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
}

.cta__actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
}

.cta__circles {
  position: relative;
  width: 320px;
  height: 320px;
}

.cta__circles::before,
.cta__circles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
}

.cta__circles::before {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta__circles::after {
  width: 560px;
  height: 560px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta__keys {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.cta__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.cta__desc {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
}

.cta__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color3);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 28px 10px 10px;
  border-radius: 50px;
  width: fit-content;
  transition: opacity 0.2s;
}

.cta__btn:hover {
  opacity: 0.85;
}

.cta__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.cta__btn-icon::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg) translateX(-2px);
}

.cta__note {
  font-family: var(--font-family);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── EXTRAS ── */
.extras {
  background: #f5f7fc;
  padding: 80px 40px;
}

.extras__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-template-areas:
    "left  right"
    "note  right";
  gap: 20px 60px;
}

.extras__left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.extras__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #5778cb;
}

.extras__desc {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--color3);
}

.extras__note {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
  color: var(--color3);
  opacity: 0.45;
  grid-area: note;
}

.extras__right {
  grid-area: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.extras__img {
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .cta {
    padding: 40px 16px;
  }

  .cta__container {
    flex-direction: column;
    min-height: unset;
    gap: 24px;
  }

  .cta__bg {
    display: none;
  }

  .cta__container {
    display: flex;
    flex-direction: column;
    min-height: unset;
    gap: 24px;
    align-items: center;
  }

  .cta__header {
    order: 1;
    text-align: center;
  }

  .cta__image {
    order: 2;
  }

  .cta__actions {
    order: 3;
    width: 100%;
    align-items: center;
  }

  .cta__circles {
    width: 240px;
    height: 240px;
  }

  .cta__title {
    font-size: 24px;
  }

  .cta__desc {
    font-size: 15px;
  }

  .cta__btn {
    width: 100%;
    justify-content: center;
  }

  .cta__note {
    text-align: center;
  }

  .extras {
    padding: 40px 16px;
  }

  .extras__container {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .extras__left {
    flex: 0 0 auto;
    align-items: center;
  }

  .extras__title {
    font-size: 28px;
    text-align: center;
  }

  .extras__desc {
    text-align: center;
  }

  .extras__note {
    text-align: center;
  }

  .extras__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .extras__left {
    order: 1;
  }
  .extras__right {
    order: 2;
    width: 100%;
    justify-content: center;
  }
  .extras__note {
    order: 3;
  }

  .extras__img {
    width: 100%;
    max-width: 380px;
  }
}

/* ── TOPBAR ── */
.topbar {
  display: flex;
  align-items: center;
  background-color: #213754;
  width: 100%;
  max-width: 1920px;
  height: 60px;
  padding: 0 40px;
  gap: 16px;
}

@media (max-width: 768px) {
  .topbar {
    height: 44px;
    padding: 0 16px;
  }

  .topbar__hint {
    display: none;
  }

  .topbar__right {
    gap: 0;
  }
}

.topbar__left {
  flex: 1;
}

.topbar__center {
  flex: 0 0 auto;
}

.topbar__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.topbar__hint {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0%;
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
}

.topbar__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0%;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.topbar__btn:hover {
  opacity: 1;
}

.topbar__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.topbar__arrow {
  width: 10px;
  height: 10px;
  object-fit: contain;
  transform: rotate(90deg);
}

/* ── NAVBAR ── */
.navbar {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 50;
}

.navbar__top {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__bottom {
  border-top: 1px solid #f0f0f0;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

.navbar__logo img {
  height: 35px;
  width: auto;
}

.navbar__logo-img {
  height: 48px;
  width: auto;
}

@media (max-width: 768px) {
  .navbar__logo-img {
    height: 36px;
  }
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-item__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 14px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s;
}

.nav-item--has-dropdown:hover .nav-item__btn {
  color: #5778cb;
}

.nav-item__arrow {
  width: 10px;
  height: 10px;
  object-fit: contain;
  transform: rotate(90deg);
  opacity: 0.5;
}

.nav-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
}

.nav-dropdown--open {
  display: flex;
}

.nav-dropdown__link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  padding: 10px 20px;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}

.nav-dropdown__link:hover {
  background: #f4f6fb;
  color: #5778cb;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar__social img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: opacity 0.15s;
}

.navbar__social:hover img {
  opacity: 0.8;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #5778cb;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5778cb;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-call:hover {
  background: #5778cb;
  color: #ffffff;
}

/* burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .navbar__bottom {
    display: none;
  }

  .navbar__top {
    padding: 0 16px;
  }

  .navbar__burger {
    display: flex;
  }

  .btn-call {
    width: auto;
    height: 32px;
    padding: 0 16px;
    font-size: 12px;
    border-radius: 8px;
  }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu--open {
  right: 0;
}

.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.mobile-menu__overlay--open {
  display: block;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu__close {
  font-size: 28px;
  color: #1a1a1a;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.mobile-menu__close:hover {
  opacity: 1;
}

.mobile-menu__nav {
  flex: 1;
  padding: 8px 0;
}

.mobile-nav-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px dashed #e8e8e8;
  transition: color 0.15s;
}

.mobile-nav-item--open .mobile-nav-item__btn {
  color: #5778cb;
}

.mobile-nav-item__arrow {
  width: 10px;
  height: 10px;
  object-fit: contain;
  transform: rotate(90deg);
  opacity: 0.4;
  transition: transform 0.2s;
}

.mobile-nav-item--open .mobile-nav-item__arrow {
  transform: rotate(-90deg);
  opacity: 0.8;
}

.mobile-nav-item__sub {
  display: none;
  flex-direction: column;
  background: #f9faff;
}

.mobile-nav-item--open .mobile-nav-item__sub {
  display: flex;
}

.mobile-nav-item__link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  padding: 12px 20px 12px 32px;
  border-bottom: 1px dashed #e8e8e8;
  transition: color 0.15s;
}

.mobile-nav-item__link:hover {
  color: #5778cb;
}

.mobile-menu__footer {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__currency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.mobile-menu__hint {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #999;
  line-height: 1.5;
}

.mobile-menu__socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mobile-menu__socials a img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* ── DROPDOWN ── */
.topbar__dropdown-wrap {
  position: relative;
}

.dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  padding: 8px 0;
  z-index: 100;
}

.dropdown--open {
  display: flex;
}

.dropdown__item {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #1a1a1a;
  text-align: left;
  padding: 10px 20px;
  transition: background 0.15s;
}

.dropdown__item:hover {
  background: #f5f5f5;
}

.dropdown__item--active {
  font-weight: 600;
}

/* ── GUARANTEE ── */
.guarantee {
  background: #fff;
  padding: 80px 0 0;
}

.guarantee__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.guarantee__top .guarantee__container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.guarantee__image-wrap {
  flex-shrink: 0;
}

.guarantee__photo {
  width: 380px;
  height: auto;
  display: block;
}

.guarantee__content {
  flex: 1;
}

.guarantee__title {
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 700;
  color: var(--color3);
  line-height: 1.2;
  margin-bottom: 40px;
}

.guarantee__desc {
  display: none;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 39, 68, 0.6);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}

.guarantee__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: var(--color3);
  line-height: 1.4;
}

.guarantee__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef1fb;
  color: #5778cb;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee__link {
  color: #5778cb;
  text-decoration: none;
}

.guarantee__link:hover {
  text-decoration: underline;
}

.guarantee__bottom {
  padding: 80px 0 80px;
  text-align: center;
}

.guarantee__container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee__quote {
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 700;
  color: #5778cb;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 20px;
}

.guarantee__subquote {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: rgba(26, 39, 68, 0.6);
  text-align: center;
  margin-bottom: 40px;
}

.guarantee__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--color3);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.guarantee__btn:hover {
  background: #7bdd2a;
}

.guarantee__btn-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.guarantee__note {
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(26, 39, 68, 0.45);
}

@media (max-width: 768px) {
  .guarantee {
    padding: 48px 0 0;
  }

  .guarantee__container {
    padding: 0 16px;
  }

  .guarantee__top .guarantee__container {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .guarantee__content {
    display: contents;
  }

  .guarantee__title {
    order: 1;
    font-size: 26px;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
  }

  .guarantee__desc {
    display: block;
    order: 2;
    width: 100%;
    margin-bottom: 24px;
  }

  .guarantee__image-wrap {
    order: 3;
    margin-bottom: 32px;
  }

  .guarantee__photo {
    width: 280px;
  }

  .guarantee__list {
    order: 4;
    width: 100%;
  }

  .guarantee__quote {
    font-size: 24px;
  }

  .guarantee__bottom {
    padding: 48px 0;
  }

  .guarantee__btn {
    font-size: 14px;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }
}

/* ── MISSION ── */
.mission {
  background: #213754;
  padding: 80px 0 0;
}

.mission__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
}

.mission__left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
}

.mission__title {
  font-family: var(--font-family);
  font-size: 48px;
  font-weight: 700;
  color: #5778cb;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.mission__lead {
  font-family: var(--font-family);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 32px;
}

.mission__sub {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.mission__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.mission__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #5778cb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mission__check::after {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

.mission__phone-wrap {
  position: absolute;
  bottom: 0;
  left: 40px;
  display: flex;
  align-items: flex-end;
}

.mission__phone {
  width: 323px;
  height: 314px;
  display: block;
  object-fit: contain;
}

.mission__right {
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.mission__connector {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 48.5px;
  height: 675px;
  display: block;
}

.mission__values {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding-left: 80px;
  padding-top: 0;
  height: 693px;
  justify-content: flex-start;
}

.mission__value {
  height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission__value-title {
  display: block;
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 600;
  color: #5778cb;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.5;
}

.mission__value-desc {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .mission {
    padding: 48px 0 0;
  }

  .mission__container {
    flex-direction: column;
    padding: 0 16px;
    gap: 32px;
  }

  .mission__left {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .mission__title {
    font-size: 32px;
  }

  .mission__phone-wrap {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
  }

  .mission__phone {
    width: 100%;
    max-width: 323px;
    height: auto;
  }

  .mission__right {
    position: static;
    width: 100%;
  }

  .mission__connector {
    position: static;
    width: 24px;
    height: auto;
    object-fit: fill;
    flex-shrink: 0;
    align-self: stretch;
  }

  .mission__values {
    height: auto;
    gap: 32px;
    padding-top: 0;
    padding-left: 16px;
  }

  .mission__value {
    height: auto;
  }

  .mission__value-title {
    font-size: 16px;
  }

  .mission__value-desc {
    font-size: 14px;
  }
}

/* ── ABOUT ── */
.about {
  background: url("img/about/background (2).png") center / cover no-repeat;
  min-height: 760px;
  display: flex;
  align-items: stretch;
}

.about__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about__logo-row {
  padding: 40px 80px 0 197px;
}

.about__logo {
  height: 48px;
  width: auto;
  display: block;
}

.about__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 60px 197px;
  max-width: 700px;
}

.about__pin {
  width: 13px;
  height: 13px;
  border: 2px solid #5778cb;
  border-radius: 50%;
  margin-bottom: 16px;
  position: relative;
}

.about__pin::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #5778cb;
  border-radius: 50%;
}

.about__title {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.about__title-brand {
  color: #5778cb;
}

.about__lead {
  font-family: var(--font-family);
  font-size: 15px;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 24px;
}

.about__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.about__text {
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 12px;
}

.about__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about {
    background: url("img/about/Frame 1321317558 (1).png") center / cover
      no-repeat;
    min-height: unset;
  }

  .about__logo-row {
    display: none;
  }

  .about__body {
    padding: 28px 24px 48px;
    max-width: 100%;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }

  .about__pin {
    margin-bottom: 16px;
  }

  .about__title {
    font-size: 28px;
    white-space: normal;
  }

  .about__title-brand {
    display: block;
  }

  .about__divider {
    margin-top: 260px;
  }
}

/* ── SERVICES ── */
.services {
  background: #0d1b2e;
  padding: 0 0 80px;
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.services__tabs {
  border-radius: 0;
  padding: 8px 40px;
}

.services__tabs {
  display: flex;
  align-items: stretch;
  background: #1e3a5f;
  border-radius: 14px;
  padding: 6px;
  gap: 4px;
  margin-bottom: 48px;
}

.services__tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  transition:
    background 0.2s,
    color 0.2s;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.services__tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.services__tab--active {
  background: #0d1b2e;
  color: #fff;
}

.services__tab--active:hover {
  background: #0d1b2e;
}

.services__tab-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.services__mob-tab {
  display: none;
}

.services__panel-body {
  display: block;
}

.services__panel {
  display: none;
  padding: 48px 0;
}

.services__panel--active {
  display: block;
}

.services__title {
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.25;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 60px;
}

.services__col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.services__item-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.services__item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services__item-title {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.services__item-desc {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.services__item-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services__item-sub li {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.services__item-sub li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}

.services__date {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .services {
    padding: 0 0 40px;
  }

  .services__tabs {
    display: none;
  }

  .services__panels {
    padding: 0;
  }

  .services__panel {
    display: block;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .services__panel-body {
    display: none;
    padding: 24px 16px 28px;
    background: #fff;
  }

  .services__panel--active .services__panel-body {
    display: block;
  }

  .services__panel-body .services__title {
    color: var(--color3);
  }

  .services__panel-body .services__item-title {
    color: var(--color3);
  }

  .services__panel-body .services__item-desc,
  .services__panel-body .services__item-sub li {
    color: rgba(26, 39, 68, 0.65);
  }

  .services__panel-body .services__item-sub li::before {
    color: rgba(26, 39, 68, 0.4);
  }

  .services__panel-body .services__date {
    color: rgba(26, 39, 68, 0.4);
  }

  .services__mob-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
  }

  .services__panel--active .services__mob-tab {
    color: #fff;
  }

  .services__mob-tab .services__tab-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .services__mob-tab span:nth-child(2) {
    flex: 1;
  }

  .services__mob-arrow {
    display: none;
  }

  .services__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services__tab-icon {
    width: 28px;
    height: 28px;
  }

  .services__title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services__item-title {
    font-size: 15px;
  }
}

/* ── TRUST ── */
.trust {
  padding: 80px 32px;
  background: #fff;
}

.trust__container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.trust__logo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
}

.trust__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.25;
  margin-bottom: 16px;
}

.trust__subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  border-radius: 16px;
  background: #f5f7f9;
}

.trust__item:nth-child(4n + 1),
.trust__item:nth-child(4n) {
  background: #5778cb26;
}

.trust__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust__item-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 10px;
  line-height: 1.3;
}

.trust__item-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 8px;
}

.trust__item-note {
  font-size: 13px;
  font-style: italic;
  color: #6b7280;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trust {
    padding: 48px 16px;
  }

  .trust__title {
    font-size: 24px;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .trust__item:nth-child(4n + 1),
  .trust__item:nth-child(4n) {
    background: #f5f7f9;
  }

  .trust__item:nth-child(odd) {
    background: #5778cb26;
  }
}

/* ── PARTNER ── */
.partner {
  padding: 80px 32px;
  background: #fff;
}

.partner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.partner__left {
  flex: 1;
}

.partner__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.25;
  margin-bottom: 36px;
}

.partner__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.partner__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #1a2744;
  font-weight: 500;
}

.partner__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: #5778cb1a;
  color: #5778cb;
  font-size: 14px;
  font-weight: 700;
}

.partner__note {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
}

.partner__right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.partner__img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .partner__container {
    flex-direction: column;
    gap: 40px;
  }

  .partner__title {
    font-size: 26px;
  }
}

/* ── CTA QUESTIONS ── */
.cta-questions {
  padding: 80px 32px;
  padding-top: 0;
  background: #fff;
}

.cta-questions__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-questions__label {
  font-size: 28px;
  font-weight: 600;
  color: #5778cb;
  margin-bottom: 10px;
}

.cta-questions__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 20px;
}

.cta-questions__subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-questions__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5778cb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  margin-bottom: 16px;
}

.cta-questions__btn:hover {
  background: #4466b8;
}

.cta-questions__btn:active {
  transform: scale(0.98);
}

.cta-questions__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.cta-questions__note {
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .cta-questions__container {
    padding: 0 24px;
  }

  .cta-questions__label {
    font-size: 22px;
  }

  .cta-questions__title {
    font-size: 26px;
  }

  .cta-questions__btn {
    font-size: 14px;
    padding: 16px 24px;
  }
}

/* ── DOCS ── */
.docs__top {
  background: #213754;
  padding: 72px 32px 0;
}

.docs__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 56px;
}

.docs__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.docs__title {
  font-size: 48px;
  font-weight: 700;
  color: #5778cb;
  line-height: 1.2;
}

.docs__subtitle {
  font-size: 18px;
  color: #c8d2e8;
  line-height: 1.5;
  max-width: 480px;
}

.docs__text {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.docs__text.active {
  display: flex;
}

.docs__text-accent {
  font-size: 15px;
  color: #5778cb;
  font-weight: 500;
}

.docs__text-light {
  font-size: 14px;
  color: #7a8fba;
}

.docs__text-body {
  font-size: 14px;
  color: #c8d2e8;
  line-height: 1.6;
}

.docs__text-note {
  font-size: 13px;
  color: #7a8fba;
  font-style: italic;
}

.docs__right {
  flex: 0 0 420px;
  position: relative;
}

.docs__photo {
  display: block;
  width: 100%;
  object-fit: contain;
}

.docs__tabbar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 4px;
}

.docs__tabbar::-webkit-scrollbar {
  display: none;
}

.docs__tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #7a8fba;
  background: transparent;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.docs__tab:hover {
  color: #fff;
}

.docs__tab.active {
  background: #fff;
  color: #1a2744;
  font-weight: 700;
}

.docs__tab-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.docs__bottom {
  background: #fff;
  padding: 48px 32px 64px;
}

.docs__pane {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
}

.docs__pane.active {
  display: block;
}

.docs__pane-title {
  font-size: 24px;
  font-weight: 700;
  color: #5778cb;
  margin-bottom: 32px;
}

.docs__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.docs__col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 16px;
}

.docs__col-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.docs__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.docs__list li {
  font-size: 15px;
  color: #374151;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.docs__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5778cb;
  font-size: 16px;
}

.docs__date {
  margin-top: 40px;
  font-size: 12px;
  color: #9ca3af;
  text-align: right;
}

/* ACCORDION (mobile only, hidden on desktop) */
.docs__accordion {
  display: none;
}

.docs__accordion {
  background: #213754;
}

.docs__acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.docs__acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: transparent;
  color: #7a8fba;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.docs__acc-btn-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs__acc-item.active .docs__acc-btn {
  color: #fff;
  font-weight: 700;
}

.docs__acc-body {
  display: none;
  background: #fff;
  padding: 24px 20px;
}

.docs__acc-item.active .docs__acc-body {
  display: block;
}

@media (max-width: 900px) {
  .docs__top {
    padding: 48px 16px 0;
  }

  .docs__inner {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
  }

  .docs__right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .docs__title {
    font-size: 32px;
  }

  .docs__tab {
    padding: 12px 16px;
    font-size: 13px;
  }

  .docs__tabbar {
    display: none;
  }

  .docs__bottom {
    display: none;
  }

  .docs__accordion {
    display: block;
  }

  .docs__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── SAFETY ── */
.safety__top {
  background: #213754;
  padding: 72px 32px 0;
}

.safety__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 56px;
}

.safety__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.safety__title {
  font-size: 48px;
  font-weight: 700;
  color: #5778cb;
  line-height: 1.2;
}

.safety__subtitle {
  font-size: 18px;
  color: #c8d2e8;
  line-height: 1.5;
}

.safety__footnote {
  font-size: 13px;
  color: #7a8fba;
  line-height: 1.6;
}

.safety__right {
  flex: 0 0 380px;
}

.safety__photo {
  width: 100%;
  object-fit: contain;
}

.safety__tabbar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 4px;
}

.safety__tabbar::-webkit-scrollbar {
  display: none;
}

.safety__tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #7a8fba;
  background: transparent;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.safety__tab:hover {
  color: #fff;
}

.safety__tab.active {
  background: #fff;
  color: #213754;
  font-weight: 700;
}

.safety__tab-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(87, 120, 203, 0.25);
  color: #5778cb;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.safety__tab.active .safety__tab-num {
  background: #5778cb;
  color: #fff;
}

.safety__bottom {
  background: #fff;
  padding: 48px 32px 64px;
}

.safety__pane {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
}

.safety__pane.active {
  display: block;
}

.safety__pane-title {
  font-size: 24px;
  font-weight: 700;
  color: #5778cb;
  margin-bottom: 28px;
}

.safety__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.safety__col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 12px;
  margin-top: 20px;
}

.safety__col-head:first-child {
  margin-top: 0;
}

.safety__col-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a2744;
}

.safety__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.safety__list li {
  font-size: 15px;
  color: #374151;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.safety__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5778cb;
}

.safety__list--ordered {
  list-style: none;
  counter-reset: safety-counter;
}

.safety__list--ordered li {
  counter-increment: safety-counter;
}

.safety__list--ordered li::before {
  content: counter(safety-counter) ".";
  font-weight: 600;
  color: #5778cb;
}

.safety__text {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* SAFETY ACCORDION (mobile only) */
.safety__accordion {
  display: none;
  background: #213754;
}

.safety__acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.safety__acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: transparent;
  color: #7a8fba;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.safety__acc-btn-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.safety__acc-item.active .safety__acc-btn {
  color: #fff;
  font-weight: 700;
}

.safety__acc-body {
  display: none;
  background: #fff;
  padding: 24px 20px;
}

.safety__acc-item.active .safety__acc-body {
  display: block;
}

@media (max-width: 900px) {
  .safety__top {
    padding: 48px 16px 0;
  }

  .safety__inner {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
  }

  .safety__right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .safety__title {
    font-size: 32px;
    text-align: center;
  }
  .safety__subtitle {
    text-align: center;
  }
  .safety__footnote {
    text-align: center;
  }
  .safety__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .safety__tab {
    padding: 12px 14px;
    font-size: 13px;
  }

  .safety__tabbar {
    display: none;
  }

  .safety__bottom {
    display: none;
  }

  .safety__accordion {
    display: block;
  }
  .contact__form-logo {
    align-items: center;
  }
  .contact__form-title {
    text-align: center;
  }
}

/* ── ASK-BEFORE ── */
.ask-before {
  padding: 72px 32px;
  background: #fff;
}

.ask-before__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.ask-before__left {
  flex: 0 0 420px;
}

.ask-before__img {
  width: 100%;
  object-fit: contain;
}

.ask-before__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.ask-before__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.25;
}

.ask-before__desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 480px;
}

.ask-before__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5778cb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  margin-top: 8px;
}

.ask-before__btn:hover {
  background: #4466b8;
}

.ask-before__btn:active {
  transform: scale(0.98);
}

.ask-before__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.ask-before__note {
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .ask-before__container {
    flex-direction: column;
    gap: 40px;
  }

  .ask-before__left {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .ask-before__title {
    font-size: 26px;
  }

  .ask-before__btn {
    font-size: 14px;
    padding: 16px 24px;
    width: 100%;
    justify-content: center;
  }
}

/* ── DOC-CHECK ── */
.doc-check {
  padding: 72px 32px;
  background: #fff;
}

.doc-check__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.doc-check__left {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doc-check__img {
  width: 100%;
  object-fit: contain;
}

.doc-check__footnote {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

.doc-check__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.doc-check__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.25;
}

.doc-check__desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 480px;
}

.doc-check__accent {
  font-size: 15px;
  color: #5778cb;
  font-weight: 500;
}

.doc-check__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5778cb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  margin-top: 8px;
}

.doc-check__btn:hover {
  background: #4466b8;
}

.doc-check__btn:active {
  transform: scale(0.98);
}

.doc-check__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.doc-check__note {
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .doc-check__container {
    flex-direction: column;
    gap: 40px;
  }

  .doc-check__left {
    flex: 0 0 auto;
    width: 100%;
  }

  .doc-check__title {
    font-size: 26px;
  }

  .doc-check__btn {
    font-size: 14px;
    padding: 16px 24px;
    width: 100%;
    justify-content: center;
  }
}

/* ── CTA-FINAL ── */
.cta-final {
  background: #e9eef8;
  padding: 80px 32px;
}

.cta-final__container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.cta-final__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.3;
}

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5778cb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
}

.cta-final__btn:hover {
  background: #4466b8;
}

.cta-final__btn:active {
  transform: scale(0.98);
}

.cta-final__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.cta-final__note {
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .cta-final {
    padding: 56px 20px;
  }

  .cta-final__title {
    font-size: 22px;
  }

  .cta-final__btn {
    font-size: 15px;
    padding: 16px 28px;
    width: 100%;
    justify-content: center;
  }
}

/* ── FAQ ── */
.faq {
  background: #e9eef8;
  padding: 72px 32px;
}

.faq__container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq__head {
  text-align: center;
  margin-bottom: 40px;
}

.faq__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 12px;
}

.faq__sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.faq__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.faq__tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.faq__tab.active {
  background: #213754;
  color: #fff;
  border-color: #213754;
}

.faq__tab:hover:not(.active) {
  border-color: #5778cb;
  color: #5778cb;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.faq__item.hidden {
  display: none;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #1a2744;
  gap: 16px;
}

.faq__item.open .faq__q {
  color: #5778cb;
}

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9eef8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: #5778cb;
  line-height: 1;
}

.faq__item.open .faq__icon {
  background: #5778cb;
  color: #fff;
}

.faq__a {
  display: none;
  padding: 0 24px 20px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.faq__item.open .faq__a {
  display: block;
}

.faq__link {
  display: inline-block;
  margin-top: 12px;
  color: #5778cb;
  font-weight: 500;
  text-decoration: none;
}

.faq__link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq {
    padding: 48px 16px;
  }

  .faq__title {
    font-size: 26px;
  }

  .faq__tabs {
    gap: 6px;
  }

  .faq__tab {
    padding: 8px 16px;
    font-size: 13px;
  }

  .faq__q {
    font-size: 15px;
    padding: 16px 20px;
  }

  .faq__a {
    padding: 0 20px 16px;
    font-size: 14px;
  }
}

/* ── CONTACT ── */
.contact {
  background: #e9eef8;
  padding: 72px 32px 250px;
  position: relative;
}

.contact__top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding-bottom: 60px;
}

.contact__left {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__title {
  font-size: 26px;
  font-weight: 700;
  color: #5778cb;
  line-height: 1.3;
}

.contact__img {
  width: 100%;
  max-width: 240px;
  object-fit: contain;
}

.contact__desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.contact__right {
  flex: 1;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact__card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__card--full {
  grid-column: 1 / -1;
  max-width: calc(50% - 6px);
}

.contact__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.contact__card-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a2744;
}

.contact__card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  flex: 1;
}

.contact__card-btn {
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid #d1d5db;
  background: #f5f7f9;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
  display: block;
}

.contact__card-btn:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.contact__card-btn--green {
  background: #f5f7f9;
  border-color: #d1d5db;
  color: #374151;
}

.contact__card-btn--green:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

/* Form card */
.contact__form-wrap {
  max-width: 1200px;
  margin: -230px auto 0;
  position: relative;
  z-index: 10;
  padding: 0 32px;
}

.contact__form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(33, 55, 84, 0.13);
  padding: 48px;
  display: flex;
  gap: 60px;
}

.contact__form-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form-left form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__form-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a2744;
}

.contact__form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f7f9;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  cursor: text;
}

.contact__field-icon {
  flex-shrink: 0;
}

.contact__input {
  border: none;
  background: transparent;
  font-size: 15px;
  color: #1a2744;
  outline: none;
  width: 100%;
}

.contact__input::placeholder {
  color: #9ca3af;
}

/* ── ANIMATIONS ── */

/* Scroll-reveal: fade up */
@media (min-width: 769px) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition:
      opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .reveal-right.visible {
    opacity: 1;
    transform: none;
  }
}

/* Hero vehicles floating */
@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-14px);
  }
}
.hero__vehicles {
  animation: float 5s ease-in-out infinite;
}

/* Hero content entrance on load */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__title {
  animation: heroFadeUp 0.7s 0.1s both;
}
.hero__tags {
  animation: heroFadeUp 0.7s 0.25s both;
}
.hero__btn {
  animation: heroFadeUp 0.7s 0.45s both;
}
.hero__note {
  animation: heroFadeUp 0.7s 0.6s both;
}
.hero__card {
  animation: heroFadeUp 0.7s 0.55s both;
}
.hero__card--right {
  animation-delay: 0.7s;
}

/* CTA button pulse glow */
@keyframes btnGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(87, 120, 203, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(87, 120, 203, 0);
  }
}
.hero__btn,
.cta__btn,
.guarantee__btn,
.cta-questions__btn {
  animation: btnGlow 2.5s ease-in-out infinite;
}
/* preserve hero entrance by combining animations */
.hero__btn {
  animation:
    heroFadeUp 0.7s 0.45s both,
    btnGlow 2.5s 1.2s ease-in-out infinite;
}

/* Dashed connector march */
@keyframes dashMarch {
  to {
    stroke-dashoffset: -20;
  }
}
.how__connector svg path {
  animation: dashMarch 0.7s linear infinite;
}

/* Navbar: scroll shadow */
.navbar {
  transition: box-shadow 0.3s ease;
}
.navbar.is-scrolled {
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.1);
}

/* Card hover lift */
.card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(26, 39, 68, 0.13);
}

/* Trust items hover */
.trust__item {
  transition: transform 0.25s ease;
}
.trust__item:hover {
  transform: translateY(-4px);
}

/* Services item icon bounce on hover */
.services__item-icon {
  transition: transform 0.25s ease;
}
.services__item:hover .services__item-icon {
  transform: scale(1.15);
}

/* How icon wrap spin on enter */
.how__icon-wrap {
  transition: transform 0.4s ease;
}
.how__item.visible .how__icon-wrap {
  animation: iconBounce 0.5s ease;
}
@keyframes iconBounce {
  0% {
    transform: scale(0.7);
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

.contact__radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__radio-label {
  font-size: 13px;
  color: #6b7280;
}

.contact__radios {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.contact__radio input[type="radio"] {
  accent-color: #5778cb;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5778cb;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  align-self: flex-start;
}

.contact__submit:hover {
  background: #4466b8;
}

.contact__submit:active {
  transform: scale(0.98);
}

.contact__submit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 15px;
  flex-shrink: 0;
}

.contact__form-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: -8px;
}

.contact__form-right {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
}

.contact__form-logo {
  height: 48px;
  object-fit: contain;
}

.contact__form-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #5778cb;
  line-height: 1.4;
}

.contact__form-human {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
  margin-top: auto;
}

/* Footer */
.site-footer {
  background: #213754;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-main {
  padding: 60px 32px 40px;
}

.footer-main__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.footer-main__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 260px;
}

.footer-main__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  margin: 0 40px;
  flex-shrink: 0;
}

.footer-main__link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-main__link:hover {
  color: #fff;
}

.footer-main__link--active {
  color: #5778cb;
}

.footer-main__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

.footer-main__logo {
  height: 48px;
  object-fit: contain;
}

.footer-main__socials {
  display: flex;
  gap: 12px;
}

.footer-main__social img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.2s;
}

.footer-main__social:hover img {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 32px;
  text-align: center;
}

.footer-bottom__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── CURRENCY DROPDOWN ── */
.curr-wrap {
  position: relative;
}

.curr-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 260px;
  background: #1a2744;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.curr-wrap.open .curr-drop {
  display: block;
}

.curr-group__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.curr-group__head:hover {
  background: rgba(255, 255, 255, 0.06);
}

.curr-group.open .curr-group__head {
  color: #5778cb;
  border-bottom-color: transparent;
}

.curr-group__arr {
  font-size: 11px;
  opacity: 0.5;
  transition: transform 0.2s;
}

.curr-group.open .curr-group__arr {
  transform: rotate(180deg);
  opacity: 1;
}

.curr-group__list {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.curr-group.open .curr-group__list {
  display: block;
}

.curr-item {
  width: 100%;
  display: block;
  padding: 9px 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.curr-item:hover {
  background: rgba(87, 120, 203, 0.15);
  color: #5778cb;
}

.curr-item--active {
  color: #5778cb;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 20px 32px;
  }

  .footer-main__container {
    flex-direction: column;
    gap: 32px;
  }

  .footer-main__col {
    flex: 0 0 auto;
    gap: 16px;
  }

  .footer-main__divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .footer-main__right {
    align-items: flex-start;
    width: 100%;
  }

  .footer-bottom {
    padding: 16px 20px;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .contact__top {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }

  .contact__left {
    flex: 0 0 auto;
  }

  .contact__card--full {
    max-width: 100%;
  }

  .contact__form-card {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
  }

  .contact__form-right {
    flex: 0 0 auto;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .contact__submit {
    width: auto;
    align-self: stretch;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
    white-space: nowrap;
  }

  .contact__form-wrap {
    margin-top: 0;
    padding: 0 16px;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 48px 16px 0;
  }

  .contact__cards {
    grid-template-columns: 1fr;
  }

  .contact__card--full {
    grid-column: auto;
    max-width: 100%;
  }

  .contact__form-card {
    padding: 24px 16px;
  }
}

/* ── SUBFOOTER ── */
.subfooter {
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.subfooter__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.subfooter__left {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subfooter__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.subfooter__title {
  font-size: 28px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.35;
}

.subfooter__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5778cb;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  align-self: flex-start;
}

.subfooter__btn:hover {
  background: #4466b8;
}

.subfooter__btn:active {
  transform: scale(0.98);
}

.subfooter__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.subfooter__note {
  font-size: 13px;
  color: #9ca3af;
}

.subfooter__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subfooter__img {
  width: 100%;
  max-width: 580px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .subfooter__container {
    flex-direction: column;
    padding: 48px 20px;
    gap: 32px;
  }

  .subfooter__left {
    flex: 0 0 auto;
  }

  .subfooter__title {
    font-size: 22px;
  }

  .subfooter__btn {
    width: 100%;
    justify-content: center;
  }

  .subfooter__img {
    max-width: 340px;
  }
}

/* ── STATUS / FOOTER CONTENT ── */
.status {
  padding: 60px 32px;
}

.status__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.status__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.status__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.status__card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.status__brand {
  color: #5778cb;
}

.status__brand-sub {
  font-size: 13px;
  color: #5778cb;
  font-style: italic;
}

.status__card-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.status__sublabel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.status__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.status__list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.status__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}

.status__card-note {
  font-size: 12px;
  color: #5778cb;
  font-style: italic;
  margin-top: 4px;
}

.status__highlight {
  background: rgba(87, 120, 203, 0.25);
  color: #5778cb;
  padding: 1px 4px;
  border-radius: 4px;
}

.status__link {
  display: inline-block;
  color: #5778cb;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 4px;
}

.status__link:hover {
  text-decoration: underline;
}

.status__wide {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status__wide-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.status__contacts {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.status__contacts-img {
  flex: 0 0 180px;
}

.status__key-img {
  width: 100%;
  object-fit: contain;
}

.status__contacts-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status__contacts-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.status__contacts-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5778cb;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  align-self: flex-start;
}

.status__contacts-btn:hover {
  background: #4466b8;
}

.status__contacts-btn:active {
  transform: scale(0.98);
}

.status__contacts-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .status {
    padding: 40px 16px;
  }

  .status__grid {
    grid-template-columns: 1fr;
  }

  .status__contacts {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .status__contacts-img {
    flex: 0 0 auto;
    width: 140px;
    margin: 0 auto;
  }

  .status__contacts-btn {
    width: 100%;
    white-space: nowrap;
    justify-content: center;
    padding: 16px 24px;
  }
}

/* ════════════════════════════════════════════════════
   ZOOM FIX — браузерный зум 120–150%
   При зуме 150% на 1366px эффективная ширина ≈ 910px.
   Брейкпоинты 1280px и 1100px закрывают этот диапазон.
════════════════════════════════════════════════════ */

/* ── 1280px: промежуточный десктоп ── */
@media (max-width: 1280px) {
  /* Hero: меньше паддинга */
  .hero {
    padding: 20px 20px 60px;
  }
  .hero__inner {
    padding: 44px 32px 170px;
  }
  .hero__cards {
    padding: 0 60px;
  }
  .hero__card {
    width: 220px;
    height: auto;
    padding: 18px;
  }
  /* машина не заезжает на карточки */
  .hero__vehicles {
    max-width: 65%;
    bottom: -80px;
  }

  /* Why: убираем жёсткую высоту */
  .why {
    padding: 0 24px;
  }
  .why__container {
    min-height: auto;
    padding: 60px 0;
    gap: 40px;
  }

  /* How */
  .how {
    padding: 60px 24px;
  }
}

/* ── 1100px: навбар → бургер, герой → компактный ── */
@media (max-width: 1100px) {
  /* Topbar */
  .topbar {
    padding: 0 16px;
    height: 52px;
  }
  .topbar__hint {
    display: none;
  }

  /* Navbar: скрываем нижнюю строку, показываем бургер */
  .navbar__bottom {
    display: none;
  }
  .navbar__top {
    padding: 0 16px;
  }
  .navbar__burger {
    display: flex;
  }
  .btn-call {
    width: auto;
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  /* Hero */
  .hero {
    padding: 12px 12px 40px;
  }
  .hero__inner {
    padding: 28px 16px 120px;
  }
  .hero__title {
    font-size: 26px;
  }
  .hero__cards {
    padding: 0 1px;
    bottom: 8px;
  }
  .hero__card {
    width: 185px;
    padding: 14px;
    gap: 6px;
  }
  .hero__card-title,
  .hero__card-list li,
  .hero__card-text {
    font-size: 13px;
  }
  .hero__vehicles {
    bottom: 10px;
    max-width: 66%;
  }

  /* Why */
  .why {
    padding: 0 16px;
  }
  .why__container {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0;
  }
  .why__left {
    flex: none;
    width: 100%;
  }
  .why__car {
    max-width: 360px;
    margin: 0 auto;
    margin-bottom: -20px;
  }
  .why__right {
    width: 100%;
  }

  /* How */
  .how {
    padding: 48px 16px;
  }
  .how__title {
    font-size: 32px;
  }
  .how__subtitle {
    font-size: 18px;
  }

  /* Catalog */
  .catalog__head {
    padding: 0 16px;
  }

  /* Общие секции: меньше боковых паддингов */
  .cta__container,
  .extras__container,
  .ask-before__container,
  .faq__container,
  .cta-final__container,
  .contact__top,
  .contact__form-wrap,
  .subfooter__container,
  .footer-main__container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── LEGAL MODALS ── */
.legal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(26, 39, 68, 0.65);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}
.legal-modal.is-open {
  display: flex;
}
.legal-modal__box {
  background: #fff;
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 52px 44px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #c0c8e0 transparent;
}
.legal-modal__box::-webkit-scrollbar {
  width: 6px;
}
.legal-modal__box::-webkit-scrollbar-thumb {
  background: #c0c8e0;
  border-radius: 3px;
}
.legal-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #1a2744;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 4px;
}
.legal-modal__close:hover {
  opacity: 1;
}
.legal-modal__title {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 24px;
  padding-right: 32px;
  line-height: 1.35;
}
.legal-modal__section {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  color: #1a2744;
  margin: 22px 0 8px;
}
.legal-modal__p {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.75;
  color: #1a2744;
  opacity: 0.75;
  margin-bottom: 6px;
}
.legal-modal__p + .legal-modal__p {
  margin-top: 4px;
}
@media (max-width: 600px) {
  .legal-modal__box {
    padding: 36px 20px 28px;
    border-radius: 16px;
    max-height: 90vh;
  }
  .legal-modal__title {
    font-size: 19px;
  }
  .legal-modal__section {
    font-size: 14px;
  }
}
.docs__date {
  display: none;
}

/* ── Узкие телефоны: не даём блокам вылезать за экран ── */
@media (max-width: 768px) {
  /* Flex-элементы по умолчанию растягиваются по самому длинному содержимому
     и вылезают за экран. Заставляем их вписываться в ширину родителя. */
  .hero__content,
  .hero__content > *,
  [class*="__left"],
  [class*="__right"],
  [class*="__title"],
  [class*="__subtitle"],
  [class*="__desc"],
  [class*="__card"],
  [class*="__item"],
  [class*="__values"],
  [class*="__col"],
  [class*="__contacts"] {
    max-width: 100%;
    min-width: 0;
  }

  /* Длинные слова и заголовки переносим, а не растягиваем строку */
  h1, h2, h3, p, li, a, span, button {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Карточки в сетках не должны вылезать за колонку */
  .hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Очень узкие экраны (складные телефоны и т.п.) ── */
@media (max-width: 400px) {
  /* Карточки hero в один столбец и по центру */
  .hero__cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .hero__card {
    text-align: center;
    align-items: center;
  }
}

/* ── Хедер на мобиле: лого не сжимаем, иконки держим компактно ── */
@media (max-width: 768px) {
  /* Логотип не должен сжиматься ради иконок */
  .navbar__logo {
    flex-shrink: 0;
  }
  /* Иконки и кнопка не растягиваются на всю ширину */
  .navbar__actions {
    flex-shrink: 1;
    gap: 8px;
  }
  /* Кнопку «Позвонить» прячем в верхней строке (звонок есть в меню и карточках) */
  .navbar__actions .btn-call {
    display: none;
  }
  /* Иконки мессенджеров чуть компактнее */
  .navbar__social img {
    width: 28px;
    height: 28px;
  }
}

/* ── Скрываем отметки «По состоянию на …» / «截至 …» во всех секциях и языках ── */
.services__date,
.docs__date {
  display: none !important;
}
