/* ===== CONTACTS HERO ===== */
.c-hero {
  padding: 20px 0 0;
  overflow: hidden;
}

.c-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.c-hero__content {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 80px;
}

.c-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}

.c-hero__title {
  font-size: 76px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
}

.c-hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 48px;
}

.c-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 24px 4px 4px;
  background: var(--accent);
  color: #0A0A0A;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.c-hero__btn svg {
  border-radius: 3px;
  flex-shrink: 0;
}

.c-hero__visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 80px;
}

.c-hero__img {
  width: 100%;
  max-width: 560px;
  display: block;
  object-fit: contain;
}

/* ===== FORM SECTION ===== */
.c-form {
  padding: 80px 0 100px;
}

.c-form__block {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.c-form__block:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.c-form__heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.c-form__num {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.c-form__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  margin-top: 36px;
}

.c-form__label:first-of-type {
  margin-top: 0;
}

/* Fields */
.c-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  margin-bottom: 0;
}

.c-field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
  margin-bottom: 36px;
}

.c-field--full {
  grid-column: 1 / -1;
}

.c-field__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.c-field__input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  padding: 4px 0;
}

.c-field__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* Checkboxes */
.c-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.c-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.c-check:nth-child(-n+3) {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.c-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.c-check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.c-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #0A0A0A;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Pills */
.c-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.c-pill {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.c-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.c-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A0A0A;
}

/* Textarea */
.c-textarea {
  width: 100%;
  min-height: 140px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  resize: none;
  padding: 16px 0;
  line-height: 1.6;
  box-sizing: border-box;
}

.c-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* Submit */
.c-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 28px 4px 4px;
  background: var(--accent);
  color: #0A0A0A;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  margin-top: 48px;
}

.c-submit svg {
  border-radius: 3px;
  flex-shrink: 0;
}

/* ===== DIRECT CONTACT ===== */
.c-direct {
  padding: 80px 0 120px;
}

.c-direct__title {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 56px;
}

.c-direct__list {
  display: flex;
  flex-direction: column;
}

.c-direct__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.c-direct__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.c-direct__label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  width: 140px;
  flex-shrink: 0;
}

.c-direct__value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

/* ==============================
   MOBILE (≤768px)
============================== */
@media (max-width: 768px) {

  /* Hero */
  .c-hero { padding: 20px 0 0; }
  .c-hero__inner { flex-direction: column; gap: 0; }
  .c-hero__content { padding-top: 24px; padding-bottom: 40px; }
  .c-hero__title { font-size: 40px; letter-spacing: -1.5px; }
  .c-hero__subtitle { font-size: 14px; max-width: 100%; }
  .c-hero__btn { font-size: 15px; }
  .c-hero__btn svg { width: 36px; height: 36px; }
  .c-hero__visual { padding-top: 0; justify-content: center; }
  .c-hero__img { max-width: 100%; }

  /* Form */
  .c-form { padding: 40px 0 60px; }
  .c-form__block { padding: 36px 0; }
  .c-form__heading { font-size: 24px; margin-bottom: 28px; }
  .c-form__row { grid-template-columns: 1fr; gap: 0; }
  .c-field--full { grid-column: auto; }

  /* Checkboxes */
  .c-checks { grid-template-columns: 1fr; }
  .c-check:nth-child(-n+3) { border-top: none; }
  .c-check:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }

  /* Pills */
  .c-pill { padding: 8px 14px; font-size: 13px; }

  /* Submit */
  .c-submit { font-size: 15px; margin-top: 32px; }
  .c-submit svg { width: 36px; height: 36px; }

  /* Direct */
  .c-direct { padding: 40px 0 80px; }
  .c-direct__title { font-size: 40px; letter-spacing: -1px; margin-bottom: 32px; }
  .c-direct__item { flex-direction: column; gap: 4px; padding: 16px 0; }
  .c-direct__value { font-size: 22px; }
}
