/* ═══════════════════════════════════════════════════════════════
   DIMET Careers V1 — «Индустриальный масштаб»
   Тёмный кинематографичный лендинг
   Все селекторы префикс dc- / .dimet-careers чтобы не конфликтовать
   со стилями основного сайта.
   ═══════════════════════════════════════════════════════════════ */

.dimet-careers {
  --dc-navy: #1B2A5B;
  --dc-navy-deep: #131F44;
  --dc-ink: #0E1730;
  --dc-ink-2: #08101F;
  --dc-amber: #F5A623;
  --dc-yellow: #FFC444;
  --dc-steel: #6A7284;
  --dc-bone: #F5F3EE;
  --dc-bone-2: #EBE7DC;
  --dc-white: #FFFFFF;

  --dc-font-body: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --dc-font-head: 'Space Grotesk', 'Manrope', system-ui, sans-serif;

  font-family: var(--dc-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--dc-white);
  background: var(--dc-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dimet-careers *,
.dimet-careers *::before,
.dimet-careers *::after {
  box-sizing: border-box;
}
.dimet-careers img,
.dimet-careers video { max-width: 100%; display: block; }
.dimet-careers button { font: inherit; cursor: pointer; background: none; border: none; margin: 0; padding: 0; color: inherit; }
.dimet-careers a { color: inherit; text-decoration: none; }
.dimet-careers ul { list-style: none; margin: 0; padding: 0; }
.dimet-careers h1, .dimet-careers h2, .dimet-careers h3, .dimet-careers h4, .dimet-careers h5, .dimet-careers h6,
.dimet-careers p { margin: 0; }
.dimet-careers input, .dimet-careers select, .dimet-careers textarea { font: inherit; color: inherit; }

/* ═══════════════════════ NAV (absolute поверх hero) ═══════════════════════ */
.dc-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 24px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.dc-nav__logo { height: 40px; filter: brightness(0) invert(1); }
.dc-nav__links { display: flex; gap: 40px; }
.dc-nav__links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.dc-nav__links a:hover { color: var(--dc-amber); }
.dc-nav__cta {
  font-family: var(--dc-font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--dc-white);
  transition: all 0.2s;
}
.dc-nav__cta:hover {
  border-color: var(--dc-amber);
  color: var(--dc-amber);
}

/* ═══════════════════════ HERO (fullscreen) ═══════════════════════ */
.dc-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  padding: 120px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dc-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1) brightness(0.55);
}
.dc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 23, 48, 0.7) 0%, rgba(14, 23, 48, 0.5) 40%, rgba(14, 23, 48, 0.95) 100%),
    radial-gradient(circle at 20% 30%, rgba(27, 42, 91, 0.4), transparent 70%);
}
.dc-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
.dc-hero__content {
  position: relative;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dc-hero__content > * { margin: 0; }
.dc-hero__content > .dc-hero__eyebrow { margin-bottom: 32px; }
.dc-hero__content > .dc-hero__title  { margin-bottom: 28px; }
.dc-hero__content > .dc-hero__text   { margin-bottom: 40px; }
.dc-hero__content > .dc-hero__actions { margin-bottom: 80px; }
.dc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--dc-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.dc-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dc-amber);
}
.dc-hero__title {
  font-family: var(--dc-font-head);
  font-weight: 700;
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  text-wrap: balance;
  color: var(--dc-white);
}
.dc-hero__title-accent { color: var(--dc-amber); }
.dc-hero__text {
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
}
.dc-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.dc-hero__scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--dc-font-head);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.5);
}
.dc-hero__scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.dc-hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dc-amber);
  animation: dc-scroll-line 2s ease-in-out infinite;
}
@keyframes dc-scroll-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.dc-hero__badges {
  position: absolute;
  bottom: 56px;
  right: 56px;
  display: flex;
  gap: 16px;
  z-index: 5;
}
.dc-hero__badge {
  padding: 16px 20px;
  background: rgba(14, 23, 48, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  min-width: 140px;
}
.dc-hero__badge > span {
  display: block;
  font-family: var(--dc-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--dc-white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

/* ═══════════════════════ BUTTONS ═══════════════════════ */
.dc-btn {
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--dc-font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.dc-btn:hover { transform: translateY(-2px); }
.dc-btn--primary {
  background: var(--dc-amber);
  color: var(--dc-ink);
}
.dc-btn--primary:hover { background: #ffb838; }
.dc-btn__arrow-right { transition: transform 0.2s; }
.dc-btn--primary:hover .dc-btn__arrow-right { transform: translateX(4px); }

.dc-btn--ghost {
  background: transparent;
  color: var(--dc-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.dc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}
.dc-btn--ghost-dark {
  background: transparent;
  color: var(--dc-ink);
  border: 1px solid rgba(14, 23, 48, 0.2);
}
.dc-btn--ghost-dark:hover { background: rgba(14, 23, 48, 0.05); }

/* ═══════════════════════ SECTION LABEL ═══════════════════════ */
.dc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--dc-font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.dc-section-label__bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--dc-amber);
}
.dc-section-label--light { color: rgba(14, 23, 48, 0.55); }

/* ═══════════════════════ ABOUT (dark) ═══════════════════════ */
.dc-about {
  padding: clamp(56px, 6vw, 80px) 56px clamp(56px, 5vw, 72px);
  background: var(--dc-ink);
}
.dc-about__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}
.dc-about__text h2 {
  font-family: var(--dc-font-head);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--dc-white);
}
.dc-about__text p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  max-width: 560px;
}
.dc-about__accent {
  font-family: var(--dc-font-head);
  font-weight: 600;
  font-size: 20px !important;
  color: var(--dc-amber) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

.dc-about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dc-fact {
  padding: 28px 24px;
  background: var(--dc-ink);
}
.dc-fact__value {
  font-family: var(--dc-font-head);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--dc-white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.dc-fact__unit {
  font-size: 20px;
  color: var(--dc-amber);
  font-weight: 500;
}
.dc-fact__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 4px;
}
.dc-fact__hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.dc-about__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.dc-about__strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.85);
  transition: filter 0.3s;
}
.dc-about__strip img:hover { filter: none; }

/* ═══════════════════════ VIDEO (bone) ═══════════════════════ */
.dc-video {
  padding: 100px 56px;
  background: var(--dc-bone);
  color: var(--dc-ink);
}
.dc-video__title {
  font-family: var(--dc-font-head);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 800px;
  color: var(--dc-ink);
}
.dc-video__frame {
  position: relative;
  padding: 12px;
  border: 2px solid var(--dc-amber);
  background: var(--dc-ink);
}
.dc-video-el {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}
.dc-video-el video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dc-video-el__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--dc-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}
.dc-video-el:hover .dc-video-el__play { transform: translate(-50%, -50%) scale(1.08); }
.dc-video-el.playing .dc-video-el__play { display: none; }

/* ═══════════════════════ VACANCIES (bone) ═══════════════════════ */
.dc-vacancies {
  padding: clamp(56px, 6vw, 80px) 56px clamp(72px, 6vw, 96px);
  background: var(--dc-bone);
  color: var(--dc-ink);
}
.dc-vacancies__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.dc-vacancies__head h2 {
  font-family: var(--dc-font-head);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--dc-ink);
}
.dc-vacancies__head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(14, 23, 48, 0.7);
  max-width: 520px;
}
.dc-vacancies__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dc-pill {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(14, 23, 48, 0.15);
  background: transparent;
  color: var(--dc-ink);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
  cursor: pointer;
}
.dc-pill:hover { border-color: var(--dc-ink); }
.dc-pill.active {
  background: var(--dc-amber);
  color: var(--dc-ink);
  border-color: var(--dc-amber);
}

.dc-vacancy-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(14, 23, 48, 0.12);
}
.dc-vacancy {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(14, 23, 48, 0.12);
  align-items: start;
  transition: background 0.2s;
}
.dc-vacancy:hover { background: rgba(27, 42, 91, 0.03); }
.dc-vacancy__number {
  font-family: var(--dc-font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--dc-amber);
  letter-spacing: -0.02em;
  padding-top: 4px;
  padding-left: 8px;
}
.dc-vacancy__meta {
  display: flex;
  gap: 10px;
  font-family: var(--dc-font-head);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14, 23, 48, 0.55);
  margin-bottom: 12px;
  font-weight: 500;
  flex-wrap: wrap;
}
.dc-vacancy__dept {
  color: var(--dc-ink);
  font-weight: 600;
}
.dc-vacancy h3 {
  font-family: var(--dc-font-head);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--dc-ink);
  /* длинные названия вакансий из админки не должны выходить за край на мобильных */
  overflow-wrap: anywhere;
}
.dc-vacancy__sub {
  color: var(--dc-steel);
  font-size: 15px;
  margin-bottom: 16px;
}
.dc-vacancy__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(14, 23, 48, 0.75);
  margin-bottom: 16px;
  max-width: 720px;
}
.dc-vacancy__reqs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.dc-vacancy__reqs li {
  font-size: 13px;
  color: var(--dc-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.dc-vacancy__reqs li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--dc-amber);
  flex-shrink: 0;
}
.dc-vacancy__full {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 23, 48, 0.12);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(14, 23, 48, 0.8);
  max-width: 720px;
}
.dc-vacancy__full p { margin-bottom: 12px; }
.dc-vacancy__full strong { color: var(--dc-ink); font-weight: 600; }
.dc-vacancy__full ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.dc-vacancy__full li { margin-bottom: 6px; }
.dc-vacancy__full a { color: var(--dc-navy); text-decoration: underline; }
.dc-vacancy__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.dc-vacancies__more {
  margin-top: 40px;
  text-align: center;
}

/* ═══════════════════════ RESUME (split 50/50) ═══════════════════════ */
.dc-resume {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100vh;
  background: var(--dc-ink);
}
.dc-resume__side {
  position: relative;
  padding: 100px 56px;
  overflow: hidden;
}
.dc-resume__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) grayscale(0.3);
}
.dc-resume__side-content {
  position: relative;
  max-width: 500px;
  color: var(--dc-white);
}
.dc-resume__side .dc-section-label {
  color: rgba(255, 255, 255, 0.75);
}
.dc-resume__side h2 {
  font-family: var(--dc-font-head);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--dc-white);
}
.dc-resume__side p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.dc-resume__hr {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dc-resume__hr-name {
  font-family: var(--dc-font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--dc-white);
}
.dc-resume__hr-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.dc-resume__hr a { font-size: 16px; }
.dc-resume__hr-phone { color: var(--dc-amber) !important; }
.dc-resume__hr-hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}
.dc-resume__form-wrap {
  padding: 100px 56px;
  background: var(--dc-bone);
  display: flex;
  align-items: center;
  color: var(--dc-ink);
}

/* ═══════════════════════ FORM ═══════════════════════ */
.dc-form {
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  color: var(--dc-ink);
}
.dc-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dc-form__field--full { grid-column: 1 / -1; }
.dc-form__field > span {
  font-family: var(--dc-font-head);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.dc-form input[type="text"],
.dc-form input[type="tel"],
.dc-form select {
  padding: 14px 16px;
  border: 1px solid rgba(14, 23, 48, 0.2);
  border-radius: 8px;
  font-size: 15px;
  background: transparent;
  color: var(--dc-ink);
  outline: none;
  transition: border-color 0.2s;
}
.dc-form input::placeholder { color: rgba(14, 23, 48, 0.4); }
.dc-form input:focus,
.dc-form select:focus { border-color: var(--dc-amber); }
.dc-form__file {
  padding: 14px 16px;
  border: 1px dashed rgba(14, 23, 48, 0.2);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.dc-form__file:hover { border-style: solid; }
.dc-form__file.has-file { border-style: solid; }
.dc-form__file-name { font-size: 14px; }
.dc-form__file-btn {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--dc-amber);
  color: var(--dc-ink);
}
.dc-form__consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}
.dc-form__consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--dc-amber);
  flex-shrink: 0;
}
.dc-form__consent a { text-decoration: underline; }
.dc-form__submit {
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--dc-font-head);
  font-weight: 600;
  font-size: 15px;
  background: var(--dc-amber);
  color: var(--dc-ink);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.dc-form__submit:hover:not(:disabled) { transform: translateY(-2px); }
.dc-form__submit:disabled { opacity: 0.5; cursor: not-allowed; }

.dc-form-success {
  padding: 48px;
  text-align: center;
  background: rgba(14, 23, 48, 0.06);
  border-radius: 20px;
  max-width: 600px;
  color: var(--dc-ink);
}
.dc-form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dc-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.dc-form-success h3 {
  font-family: var(--dc-font-head);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.dc-form-success p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 20px;
}
.dc-form-success__link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

/* ═══════════════════════ FOOTER (dark) ═══════════════════════ */
.dc-footer {
  padding: 80px 56px 24px;
  background: var(--dc-ink-2);
  color: var(--dc-white);
}
.dc-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dc-footer__logo {
  height: 44px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.dc-footer__brand p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 280px;
}
.dc-footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dc-footer__col h4 {
  font-family: var(--dc-font-head);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.55;
  margin-bottom: 12px;
}
.dc-footer__col a,
.dc-footer__col p {
  font-size: 15px;
  transition: color 0.2s;
  line-height: 1.5;
}
.dc-footer__col a:hover { color: var(--dc-amber); }
.dc-footer__accent { color: var(--dc-amber); font-weight: 600; }
.dc-footer__meta {
  font-size: 13px;
  opacity: 0.6;
}
.dc-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 12px;
}
.dc-footer__bottom a:hover { color: var(--dc-amber); }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .dc-nav { padding: 20px 32px; }
  .dc-nav__links { display: none; }
  .dc-hero,
  .dc-about,
  .dc-video,
  .dc-vacancies,
  .dc-resume__side,
  .dc-resume__form-wrap,
  .dc-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .dc-hero__badges { display: none; }
  .dc-about__body,
  .dc-vacancies__head {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dc-vacancies__filters { justify-content: flex-start; }
  .dc-resume {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .dc-resume__side { padding: 80px 32px; }
  .dc-vacancy { grid-template-columns: 40px 1fr; }
  .dc-vacancy__actions {
    grid-column: 2;
    flex-direction: row;
    margin-top: 8px;
  }
  .dc-vacancy__number { padding-left: 0; }
  .dc-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dc-form { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dc-hero { padding: 100px 20px 40px; }
  .dc-hero__actions { flex-direction: column; align-items: stretch; }
  .dc-btn { width: 100%; justify-content: center; }
  .dc-about,
  .dc-video,
  .dc-vacancies,
  .dc-resume__side,
  .dc-resume__form-wrap,
  .dc-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .dc-about__facts { grid-template-columns: 1fr; }
  .dc-vacancy__actions { flex-direction: column; }
  .dc-footer__inner { grid-template-columns: 1fr; }
  .dc-form-success { padding: 32px 20px; }
}
