/* ═══════════════════════════════════════════════════════════
   CONTACTS PAGE — Figma node 20004590:414
   ═══════════════════════════════════════════════════════════ */

.cnt-hero {
  padding-top: 66px;
  padding-bottom: 48px;
}

.cnt-hero__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ── Cards Row ──────────────────────────────────────────── */
.cnt-hero__row {
  display: flex;
  gap: 12px;
}

.cnt-hero__card {
  flex: 1;
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
}

/* ── Left Card (white, contacts) ────────────────────────── */
.cnt-hero__card--info {
  background: var(--color-cocane);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cnt-hero__label {
  display: block;
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-grey);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.cnt-hero__value {
  display: block;
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.64px;
  transition: opacity 0.2s;
}

.cnt-hero__value:hover {
  opacity: 0.7;
}

.cnt-hero__value--lg {
  font-size: 42px;
  letter-spacing: -0.84px;
  line-height: 1.1;
}

/* ── Right Card (violet, CTA) ───────────────────────────── */
.cnt-hero__card--cta {
  background: var(--color-violet);
  position: relative;
  padding: 40px;
}

.cnt-hero__cta-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--color-dark);
  max-width: 448px;
}

.cnt-hero__line {
  position: absolute;
  left: 0;
  top: 191px;
  width: 256px;
  height: 209px;
  pointer-events: none;
}

.cnt-hero__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 102px;
  height: 102px;
}

.cnt-hero__badge img {
  width: 100%;
  height: 100%;
}


/* ═══════════════════════════════════════════════════════════
   TABLET ADAPTIVE — 640px base (640–1199px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {

  .cnt-hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .cnt-hero__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .cnt-hero__row {
    flex-direction: column;
    gap: 12px;
  }

  .cnt-hero__card {
    flex: none;
    width: 100%;
    height: 390px;
  }

  .cnt-hero__card--info {
    padding: 37px;
    justify-content: flex-start;
    gap: 32px;
  }

  .cnt-hero__card--cta {
    padding: 40px;
  }

  .cnt-hero__cta-text {
    font-size: 32px;
    max-width: 502px;
  }

  .cnt-hero__line {
    top: 226px;
    width: 237px;
    height: 195px;
  }
}


/* ═══════════════════════════════════════════════════════════
   MOBILE ADAPTIVE — 320px base (<640px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 639px) {

  .cnt-hero {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .cnt-hero__title {
    font-size: 34px;
    margin-bottom: 32px;
  }

  .cnt-hero__row {
    flex-direction: column;
    gap: 8px;
  }

  .cnt-hero__card {
    flex: none;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .cnt-hero__card--info {
    padding: 30px 16px;
    justify-content: flex-start;
    gap: 26px;
  }

  .cnt-hero__card--cta {
    height: 421px;
    padding: 30px 16px;
  }

  .cnt-hero__label {
    font-size: 16px;
    letter-spacing: -0.32px;
    margin-bottom: 8px;
  }

  .cnt-hero__value {
    font-size: 28px;
    letter-spacing: -0.56px;
  }

  .cnt-hero__value--lg {
    font-size: 28px;
    letter-spacing: -0.56px;
    line-height: 1.2;
  }

  .cnt-hero__cta-text {
    font-size: 20px;
    max-width: 246px;
  }

  .cnt-hero__line {
    top: 240px;
    width: 197px;
    height: 181px;
  }

  .cnt-hero__badge {
    display: none;
  }
}
