/* =========================================================
   CONTACT — HERO
   ========================================================= */

.ct-contact-hero {
  position: relative;

  padding: 190px 0 110px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(0, 174, 239, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(47, 48, 130, 0.12),
      transparent 35%
    ),
    var(--ct-bg);
}

.ct-contact-hero::after {
  content: "";

  position: absolute;

  right: 6%;
  top: 35%;

  width: 280px;
  height: 280px;

  border: 1px solid rgba(0, 174, 239, 0.08);

  transform: rotate(45deg);

  pointer-events: none;
}

.ct-contact-hero__content {
  position: relative;

  z-index: 2;

  max-width: 1100px;
}

.ct-contact-hero__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 30px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-contact-hero__eyebrow-line {
  width: 38px;
  height: 1px;

  background: #00aeef;
}

.ct-contact-hero__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(64px, 7vw, 120px);
  font-weight: 600;

  line-height: 0.9;
  letter-spacing: -0.06em;
}

.ct-contact-hero__title span {
  display: block;

  color: #8d98a6;
}

.ct-contact-hero__lead {
  max-width: 720px;

  margin: 38px 0 0;

  color: #aeb7c2;

  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.75;
}

/* RESPONSIVE */

@media (max-width: 620px) {
  .ct-contact-hero {
    padding: 145px 0 80px;
  }

  .ct-contact-hero__title {
    font-size: clamp(52px, 15vw, 76px);
  }

  .ct-contact-hero::after {
    display: none;
  }
}

/* =========================================================
   CONTACT — INFO
   ========================================================= */

.ct-contact-info {
  position: relative;

  padding: 130px 0 150px;

  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(0, 174, 239, 0.05),
      transparent 30%
    ),
    #0c1118;
}

.ct-contact-info__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(460px, 1.15fr);

  gap: clamp(70px, 9vw, 150px);

  align-items: start;
}

/* INTRO */

.ct-contact-info__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 28px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-contact-info__eyebrow-line {
  width: 38px;
  height: 1px;

  background: #00aeef;
}

.ct-contact-info__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(52px, 4.8vw, 84px);
  font-weight: 600;

  line-height: 0.95;
  letter-spacing: -0.05em;
}

.ct-contact-info__title span {
  display: block;

  color: #8d98a6;
}

.ct-contact-info__lead {
  max-width: 580px;

  margin: 30px 0 0;

  color: #a8b1bc;

  font-size: 16px;
  line-height: 1.75;
}

/* CARDS */

.ct-contact-info__cards {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.ct-contact-card {
  min-height: 190px;

  padding: 26px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.08);

  clip-path: polygon(0 0, 93% 0, 100% 10%, 100% 100%, 0 100%);

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.ct-contact-card:hover {
  background: rgba(0, 174, 239, 0.05);

  border-color: rgba(0, 174, 239, 0.22);

  transform: translateY(-3px);
}

.ct-contact-card__index {
  display: block;

  margin-bottom: 45px;

  color: #00aeef;

  font-family: monospace;
  font-size: 10px;

  letter-spacing: 0.1em;
}

.ct-contact-card__content {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.ct-contact-card__label {
  color: #7f8a96;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ct-contact-card__role {
  margin-top: 5px;

  color: #596470;

  font-size: 12px;
}

.ct-contact-card__value {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-top: 12px;

  color: #ffffff;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;

  letter-spacing: -0.03em;

  text-decoration: none;

  transition: color 180ms ease;
}

.ct-contact-card__value:hover {
  color: #00aeef;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .ct-contact-info__grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }
}

@media (max-width: 700px) {
  .ct-contact-info__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ct-contact-info {
    padding: 90px 0;
  }

  .ct-contact-info__title {
    font-size: clamp(46px, 13vw, 64px);
  }

  .ct-contact-card {
    min-height: 165px;
  }
}

/* =========================================================
   CONTACT — FORM
   ========================================================= */

.ct-contact-form-section {
  position: relative;

  padding: 150px 0;

  background:
    radial-gradient(
      circle at 20% 70%,
      rgba(0, 174, 239, 0.05),
      transparent 30%
    ),
    var(--ct-bg);
}

.ct-contact-form-section__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(500px, 1.2fr);

  gap: clamp(70px, 9vw, 150px);

  align-items: start;
}

/* INTRO */

.ct-contact-form-section__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 28px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-contact-form-section__eyebrow-line {
  width: 38px;
  height: 1px;

  background: #00aeef;
}

.ct-contact-form-section__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(52px, 4.8vw, 84px);
  font-weight: 600;

  line-height: 0.95;
  letter-spacing: -0.05em;
}

.ct-contact-form-section__title span {
  display: block;

  color: #8d98a6;
}

.ct-contact-form-section__lead {
  max-width: 580px;

  margin: 30px 0 0;

  color: #a8b1bc;

  font-size: 16px;
  line-height: 1.75;
}

/* FORM */

.ct-contact-form {
  padding: 42px;

  background: #0d1219;

  border: 1px solid rgba(255, 255, 255, 0.08);

  clip-path: polygon(0 0, 96% 0, 100% 5%, 100% 100%, 4% 100%, 0 95%);
}

.ct-contact-form__notice {
  margin: 0 0 24px;
  padding: 14px 16px;

  border-left: 2px solid #00aeef;

  background: rgba(255, 255, 255, 0.06);
  color: #dce4eb;

  font-size: 14px;
  line-height: 1.55;
}

.ct-contact-form__notice--error {
  border-left-color: #ff6b6b;
}

.ct-contact-form__row {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.ct-contact-form__field {
  display: flex;
  flex-direction: column;

  gap: 10px;

  margin-bottom: 22px;
}

.ct-contact-form__field label {
  color: #7f8a96;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ct-contact-form__field input,
.ct-contact-form__field select,
.ct-contact-form__field textarea {
  width: 100%;

  padding: 15px 16px;

  color: #ffffff;

  font: inherit;

  background: #090d13;

  border: 1px solid rgba(255, 255, 255, 0.09);

  outline: none;

  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.ct-contact-form__field textarea {
  resize: vertical;

  min-height: 170px;
}

.ct-contact-form__field input:focus,
.ct-contact-form__field select:focus,
.ct-contact-form__field textarea:focus {
  border-color: rgba(0, 174, 239, 0.65);

  background: #0b1118;
}

.ct-contact-form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  margin-top: 10px;
}

.ct-contact-form__privacy {
  max-width: 360px;

  margin: 0;

  color: #596470;

  font-size: 12px;
  line-height: 1.6;
}

.ct-contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  min-height: 50px;

  padding: 0 24px;

  color: #071019;

  font: inherit;
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  background: #00aeef;

  border: 0;

  cursor: pointer;

  clip-path: polygon(0 0, 92% 0, 100% 28%, 100% 100%, 0 100%);

  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.ct-contact-form__button:hover {
  background: #ffffff;

  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .ct-contact-form-section__grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }
}

@media (max-width: 700px) {
  .ct-contact-form {
    padding: 28px 22px;
  }

  .ct-contact-form__row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .ct-contact-form__footer {
    flex-direction: column;

    align-items: stretch;
  }

  .ct-contact-form__button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .ct-contact-form-section {
    padding: 90px 0;
  }

  .ct-contact-form-section__title {
    font-size: clamp(46px, 13vw, 64px);
  }
}

/* =========================================================
   CONTACT — FACEBOOK
   ========================================================= */

.ct-contact-social {
  position: relative;

  padding: 40px 0 140px;

  background: var(--ct-bg);
}

.ct-contact-social__inner {
  position: relative;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 60px;

  padding: 60px 70px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(0, 174, 239, 0.08),
      transparent 30%
    ),
    #0d1219;

  border: 1px solid rgba(255, 255, 255, 0.08);

  clip-path: polygon(0 0, 96% 0, 100% 18%, 100% 100%, 4% 100%, 0 82%);
}

.ct-contact-social__content {
  max-width: 760px;
}

.ct-contact-social__eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 24px;

  color: var(--ct-text-muted);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ct-contact-social__eyebrow-line {
  width: 38px;
  height: 1px;

  background: #00aeef;
}

.ct-contact-social__title {
  margin: 0;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(42px, 4vw, 70px);
  font-weight: 600;

  line-height: 0.95;
  letter-spacing: -0.05em;
}

.ct-contact-social__title span {
  display: block;

  color: #8d98a6;
}

.ct-contact-social__lead {
  max-width: 620px;

  margin: 24px 0 0;

  color: #a8b1bc;

  font-size: 15px;
  line-height: 1.7;
}

.ct-contact-social__button {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  min-height: 52px;

  padding: 0 24px;

  color: #071019;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;

  background: #00aeef;

  clip-path: polygon(0 0, 90% 0, 100% 28%, 100% 100%, 0 100%);

  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.ct-contact-social__button:hover {
  background: #ffffff;

  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .ct-contact-social__inner {
    flex-direction: column;

    align-items: flex-start;

    padding: 45px 35px;
  }
}

@media (max-width: 620px) {
  .ct-contact-social {
    padding: 20px 0 90px;
  }

  .ct-contact-social__inner {
    padding: 36px 24px;
  }

  .ct-contact-social__button {
    width: 100%;
  }
}
