/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand colors */
  --blue: #0057D9;
  --blue-dark: #003EA0;
  --blue-light: #E8F0FF;
  --black: #111111;
  --gray: #6B7280;
  --gray-light: #F4F6FA;
  --gray-2: #E2E6EF;
  --white: #FFFFFF;

  /* Media brand colors */
  --itc-bg: #111111;
  --page-bg: #E8421A;
  --speka-bg: #00D45A;
  --speka-accent: #FFFFFF;
  --mc-bg: #FFD600;
  --hl-bg: #111111;
  --hl-accent: #E8000D;

  /* Typography */
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --side: 40px;
  --radius: 10px;
  --radius-lg: 14px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: #fff;
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--side); }
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section-title {
  font-size: 34px; font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--black);
}
.sec-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 24px; }
.sec-link { font-size: 13px; font-weight: 600; color: var(--blue); }
.sec-link:hover { color: var(--blue-dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; padding: 13px 22px;
  border-radius: 6px; transition: all 0.2s; letter-spacing: 0.01em;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--gray-light); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.btn-lg { padding: 16px 32px; font-size: 14px; }
.btn-sm { padding: 10px 16px; font-size: 12px; }

/* ===== HEADER ===== */
.header {
  background: #fff; border-bottom: 1px solid var(--gray-2);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 15px; font-weight: 800; color: var(--black); letter-spacing: -0.01em; }
.logo-domain { font-size: 9px; font-weight: 700; color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 13px; font-weight: 500; color: var(--gray);
  padding: 8px 14px; border-radius: 5px; transition: all 0.15s;
}
.nav a:hover { color: var(--blue); background: var(--blue-light); }
.nav a.active { color: var(--blue); }

.header-right { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex; border: 1px solid var(--gray-2); border-radius: 5px;
  overflow: hidden;
}
.lang-btn {
  padding: 6px 11px; font-size: 11px; font-weight: 700;
  color: var(--gray); background: #fff; letter-spacing: 0.05em;
}
.lang-btn.active { background: var(--blue); color: #fff; }

.burger { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.burger span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; }

/* ===== MOBILE DRAWER ===== */
.drawer {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: #fff; z-index: 200; transition: right 0.3s ease;
  padding: 24px; box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; gap: 24px;
}
.drawer.open { right: 0; }
.drawer-close { align-self: flex-end; font-size: 22px; color: var(--gray); padding: 4px; }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a { padding: 12px 16px; font-size: 15px; font-weight: 600; color: var(--black); border-radius: 6px; }
.drawer-nav a:hover { background: var(--blue-light); color: var(--blue); }
.drawer-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 150; }
.drawer-overlay.open { display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #003EA0 0%, #0057D9 55%, #2979FF 100%);
  color: #fff; padding: 96px 0 88px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 480px; height: 480px; background: rgba(255,255,255,0.04); border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; right: 200px; bottom: -200px;
  width: 320px; height: 320px; background: rgba(255,255,255,0.03); border-radius: 50%;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: rgba(255,255,255,0.45); }
.hero h1 {
  font-size: 52px; font-weight: 900; line-height: 1.06;
  letter-spacing: -0.025em; margin-bottom: 22px;
}
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 36px; max-width: 460px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 30px; border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.stat-num { font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.stat-num span { font-size: 21px; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; line-height: 1.45; }
.brand-pills {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.brand-pill { font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 3px; letter-spacing: 0.04em; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--gray-light); border-bottom: 1px solid var(--gray-2); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 0 28px; border-right: 1px solid var(--gray-2); text-align: center; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.si-num { font-size: 40px; font-weight: 900; color: var(--blue); letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1; }
.si-lbl { font-size: 11px; font-weight: 600; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== MEDIA GRID (CLEAN) ===== */
.media-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.media-card {
  border: 1.5px solid var(--gray-2); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  background: #fff; color: var(--black);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.media-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); border-color: var(--gray-light); }
.mc-head {
  height: 110px; display: flex; align-items: center; justify-content: center;
  padding: 0 16px; text-align: center;
}
.mc-body {
  padding: 18px 16px; flex: 1; display: flex; flex-direction: column; gap: 0;
}
.mc-niche {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 10px;
}
.mc-desc {
  font-size: 12px; color: #444; line-height: 1.55; margin-bottom: 16px;
  flex: 1;
}
.mc-stats { margin-bottom: 14px; }
.mc-num {
  font-size: 24px; font-weight: 800; color: var(--black);
  letter-spacing: -0.01em; line-height: 1;
}
.mc-readers {
  font-size: 11px; color: var(--gray); font-weight: 500; margin-top: 4px;
}
.mc-soc { display: flex; gap: 6px; margin-bottom: 16px; }
.mc-soc .soc {
  width: 26px; height: 26px; border-radius: 4px;
  background: var(--gray-light); display: flex; align-items: center;
  justify-content: center; font-size: 10px; font-weight: 700;
  color: var(--gray); transition: all 0.15s;
}
.mc-soc .soc:hover { background: var(--blue); color: #fff; }
.mc-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-left: 0; padding-right: 0; padding-bottom: 0;
  border-top: 1px solid var(--gray-2); border-left: none; border-right: none; border-bottom: none;
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.08em;
  background: transparent; cursor: pointer; width: 100%;
  font-family: inherit; transition: color 0.15s;
}
.mc-cta:hover { color: var(--blue-dark); }

/* ===== WHY ===== */
.why-bg { background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  border: 1px solid var(--gray-2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.why-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.why-icon-mini {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 22px;
  height: 22px;
  color: var(--blue);
  opacity: 0.85;
}
.why-icon-mini svg { width: 100%; height: 100%; }
.why-accent {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -1px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.why-rule {
  width: 56px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 18px;
  border-radius: 2px;
}
.why-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.why-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== PROJECTS ===== */
.tabs { display: flex; border: 1px solid var(--gray-2); border-radius: 7px; overflow: hidden; width: fit-content; margin-bottom: 32px; }
.tab { padding: 10px 24px; font-size: 13px; font-weight: 600; color: var(--gray); background: #fff; transition: all 0.15s; }
.tab.active { background: var(--blue); color: #fff; }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard {
  border: 1.5px solid var(--gray-2); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  color: var(--black); background: #fff;
  display: flex; flex-direction: column;
}
.pcard:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); border-color: var(--gray-light); }
.pcard-img {
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; letter-spacing: 0.06em;
  text-align: center; padding: 0 18px; line-height: 1.2;
  position: relative;
}
.pcard-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.08) 100%);
}
.pcard-media-name { position: relative; z-index: 1; }
.brand-row {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
  align-items: center; padding: 12px;
  position: relative; z-index: 1;
}
.brand-chip {
  font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
  padding: 5px 9px; border-radius: 4px;
  white-space: nowrap;
}
.pcard-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pcard-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 4px;
}
.pcard-title { font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--black); }
.pcard-desc { font-size: 13px; color: var(--gray); line-height: 1.55; flex: 1; }
.pcard-link {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; margin-top: 8px;
  border-top: 1px solid var(--gray-2);
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ===== PARTNERS ===== */
.partners-bg { background: var(--gray-light); border-top: 1px solid var(--gray-2); border-bottom: 1px solid var(--gray-2); }
.partners-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin-top: 32px;
}
.partner-logo {
  height: 80px; background: #fff; border: 1px solid var(--gray-2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  font-size: 11px; font-weight: 700; color: var(--gray);
  text-align: center; transition: all 0.15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.partner-logo img { max-height: 40px; max-width: 100%; object-fit: contain; transition: all 0.2s; }
.partner-logo:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,87,217,0.12); }
.partner-logo.text-only span { font-size: 13px; font-weight: 700; color: var(--gray); }
.partner-logo.text-only:hover span { color: var(--blue); }

/* ===== MEDIAKIT ===== */
.mediakit { background: linear-gradient(135deg, #003EA0 0%, #0057D9 100%); color: #fff; text-align: center; padding: 80px 0; }
.mediakit h2 { font-size: 38px; font-weight: 900; margin-bottom: 14px; letter-spacing: -0.02em; }
.mediakit-desc { font-size: 16px; color: rgba(255,255,255,0.78); margin: 0 auto 32px; max-width: 540px; line-height: 1.6; }
.mediakit-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { border: 1.5px solid var(--gray-2); border-radius: var(--radius); overflow: hidden; text-align: center; transition: box-shadow 0.2s; }
.team-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.team-avatar { height: 220px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-placeholder { font-size: 64px; color: var(--gray-2); }
.team-body { padding: 18px 16px; }
.team-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gray); margin-bottom: 12px; line-height: 1.45; min-height: 36px; }
.team-soc { display: flex; justify-content: center; gap: 6px; }
.team-soc a { width: 28px; height: 28px; border-radius: 4px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--gray); transition: all 0.15s; }
.team-soc a:hover { background: var(--blue); color: #fff; }

/* ===== VACANCIES ===== */
.vacancies-bg { background: var(--gray-light); }
.vac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vac-card { background: #fff; border: 1.5px solid var(--gray-2); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: all 0.2s; }
.vac-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,87,217,0.08); }
.vac-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; width: fit-content; }
.vac-title { font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--black); }
.vac-desc { font-size: 13px; color: #555; line-height: 1.55; flex: 1; }
.vac-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--gray-2); font-size: 12px; color: var(--gray); }
.vac-cta { color: var(--blue); font-weight: 700; }

.no-vacancies { background: #fff; border: 1.5px dashed var(--gray-2); border-radius: var(--radius); padding: 48px; text-align: center; }
.no-vacancies h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--black); }
.no-vacancies p { font-size: 14px; color: var(--gray); max-width: 500px; margin: 0 auto 24px; line-height: 1.6; }

/* ===== FOOTER ===== */
footer { background: #0D0D0D; color: #fff; padding: 56px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0 22px; }
.fml { display: flex; flex-direction: column; gap: 8px; }
.fml a { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; transition: color 0.15s; }
.fml a:hover { color: #fff; }
.fct { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 18px; }
.flinks { display: flex; flex-direction: column; gap: 10px; }
.flinks a, .flinks span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; transition: color 0.15s; }
.flinks a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.28); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 300; display: none; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 600px; width: 100%; max-height: 90vh;
  overflow-y: auto; padding: 32px;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-title { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.modal-close { font-size: 24px; color: var(--gray); padding: 4px; }
.modal-close:hover { color: var(--black); }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--gray); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; font-size: 14px; font-family: inherit;
  border: 1.5px solid var(--gray-2); border-radius: 6px;
  background: #fff; transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--blue); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error { color: #d32f2f; font-size: 12px; margin-top: 4px; display: none; }
.form-success { background: #E8F5E9; border: 1px solid #4CAF50; border-radius: 6px; padding: 16px; color: #2E7D32; font-size: 14px; }

/* ===== MEDIA DETAILS MODAL ===== */
#media-modal .modal { padding: 0; overflow: hidden; }
.mm-head {
  position: relative; height: 180px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.mm-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; backdrop-filter: blur(8px); cursor: pointer;
  transition: background 0.15s;
}
.mm-close:hover { background: rgba(255,255,255,0.35); color: #fff; }
.mm-logo { transform: scale(1.4); }
.mm-body { padding: 28px 32px 32px; }
.mm-niche {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.mm-name {
  font-size: 28px; font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 14px; line-height: 1.1;
}
.mm-desc {
  font-size: 15px; color: #444; line-height: 1.6; margin-bottom: 22px;
}
.mm-stats {
  display: grid; grid-template-columns: auto auto 1fr;
  gap: 28px; align-items: center;
  padding: 16px 0; border-top: 1px solid var(--gray-2); border-bottom: 1px solid var(--gray-2);
  margin-bottom: 24px;
}
.mm-stat { display: flex; flex-direction: column; }
.mm-stat-num { font-size: 22px; font-weight: 800; line-height: 1; color: var(--black); }
.mm-stat-lbl { font-size: 11px; color: var(--gray); margin-top: 4px; }
.mm-stat-link {
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.mm-section { margin-bottom: 24px; }
.mm-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 12px;
}
.mm-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.mm-social {
  display: inline-block; padding: 7px 14px; background: var(--gray-light);
  border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--black);
  transition: all 0.15s;
}
.mm-social:hover { background: var(--blue); color: #fff; }
.mm-formats { display: flex; flex-direction: column; gap: 4px; }
.mm-format {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; background: var(--gray-light); border-radius: 6px;
  font-size: 13px;
}
.mm-format-name { font-weight: 500; color: var(--black); }
.mm-format-price { font-weight: 700; color: var(--blue); }
.mm-cta { width: 100%; margin-top: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-accent { font-size: 30px; white-space: nowrap; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 760px) {
  :root { --side: 20px; }
  .section { padding: 56px 0; }
  .nav, .lang-switch { display: none; }
  .burger { display: flex; }

  .hero { padding: 64px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 36px; }
  .hero-card { padding: 22px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .stat-item { padding: 0 12px; border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-2); }
  .si-num { font-size: 30px; }

  .section-title { font-size: 26px; }
  .sec-header { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }

  .media-grid {
    grid-template-columns: 1fr; gap: 12px;
  }

  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 24px 22px; }
  .why-accent { font-size: 26px; margin-bottom: 12px; white-space: nowrap; }
  .why-rule { width: 48px; margin-bottom: 14px; }

  .pgrid { grid-template-columns: 1fr; }

  .partners-grid { grid-template-columns: repeat(3, 1fr); }

  .mediakit { padding: 56px 0; }
  .mediakit h2 { font-size: 28px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-avatar { height: 140px; }
  .team-role { min-height: auto; }

  .vac-grid { grid-template-columns: 1fr; gap: 14px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .modal { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .tabs { width: 100%; }
  .tab { flex: 1; }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* =========================================
   VACANCY DETAIL MODAL — додано 17.05.26
   ========================================= */
.vac-section { margin-top: 20px; }
.vac-section h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 10px;
}
.vac-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vac-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #1f2937;
}
.vac-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0057D9;
}

/* Виділений блок "Ми пропонуємо" */
.vac-offer-box {
  margin-top: 24px;
  padding: 20px 24px 22px;
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%);
  border-radius: 12px;
  border: 1px solid #d6e3ff;
}
.vac-offer-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0057D9;
  margin: 0 0 12px;
}
.vac-list-offer li { padding-left: 26px; color: #1e293b; }
.vac-list-offer li::before {
  content: '✓';
  background: transparent;
  width: auto;
  height: auto;
  top: 6px;
  left: 0;
  color: #0057D9;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0;
}

/* Vacancy modal — заголовок з тегом і кнопкою закриття */
#vacancy-modal .modal-header {
  align-items: flex-start;
  gap: 16px;
}
#vacancy-modal .modal-header > div:first-child {
  flex: 1;
  min-width: 0;
}
#vacancy-modal .modal-header .vac-tag {
  margin-bottom: 8px;
}

/* Mobile: трохи зменшити шрифти */
@media (max-width: 640px) {
  .vac-list li { font-size: 14px; padding-left: 20px; }
  .vac-offer-box { padding: 16px 18px 18px; }
}
