/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #07101f;
  color: #e8edf5;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==============================
   CSS VARIABLES
============================== */
:root {
  --gold: #f0a500;
  --gold-light: #fbbf24;
  --gold-dim: rgba(240,165,0,0.15);
  --navy: #07101f;
  --navy2: #0d1b2e;
  --navy3: #102040;
  --navy4: #1a2e4a;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --text: #e8edf5;
  --text-muted: #8b9ab5;
  --text-dim: #566070;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --transition: 0.25s ease;
}

/* ==============================
   TYPOGRAPHY
============================== */
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--text-muted); }

.highlight { color: var(--gold); }
.tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(240,165,0,0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ==============================
   LAYOUT
============================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,0.35); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ==============================
   NAVIGATION
============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(7,16,31,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-weight: 900;
  font-size: 1rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; gap: 12px; align-items: center; }

/* ==============================
   HERO
============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(240,165,0,0.08) 0%, transparent 60%);
}
.hero__grid-lines {
  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: 60px 60px;
}
.hero__content {
  position: relative;
  max-width: 720px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__eyebrow-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
/* Hero 2-column inner */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero h1 { margin-bottom: 24px; }
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero form card */
.hero__form-wrap {
  position: relative;
  z-index: 2;
}
.hero__form-card {
  background: rgba(13, 27, 46, 0.85);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,165,0,0.08);
}

/* ==============================
   STATS BAR
============================== */
.stats-bar {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy2);
}
.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
}
.stats-bar__item {
  flex: 1;
  min-width: 140px;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ==============================
   ABOUT
============================== */
.about { background: var(--navy2); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__text h2 { margin-bottom: 20px; }
.about__text p { margin-bottom: 16px; font-size: 1.05rem; }
.about__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.about__badge {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.about__card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.about__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about__card-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.about__card-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.about__card-desc { font-size: 0.85rem; color: var(--text-muted); }

/* ==============================
   CATEGORIES
============================== */
.categories__header { text-align: center; margin-bottom: 56px; }
.categories__header p { max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.cat-card:hover { border-color: rgba(240,165,0,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.cat-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cat-card__desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.cat-card__count {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}
.cat-card__arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 32px; height: 32px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}
.cat-card:hover .cat-card__arrow { background: var(--gold); color: #000; }

/* ==============================
   HOW IT WORKS
============================== */
.how { background: var(--navy2); }
.how__header { text-align: center; margin-bottom: 64px; }
.how__header p { max-width: 520px; margin: 16px auto 0; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-light));
  z-index: 0;
}
.how__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.how__step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 24px;
}
.how__step h3 { font-size: 1rem; margin-bottom: 10px; }
.how__step p { font-size: 0.88rem; }

/* ==============================
   WHY US / BENEFITS
============================== */
.benefits__header { text-align: center; margin-bottom: 56px; }
.benefits__header p { max-width: 520px; margin: 16px auto 0; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition);
}
.benefit-card:hover { border-color: rgba(240,165,0,0.25); }
.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.benefit-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card__desc { font-size: 0.88rem; color: var(--text-muted); }

/* ==============================
   CONSULT FORM (landing)
============================== */
.consult {
  background: var(--navy2);
  border-top: 1px solid var(--border);
}
.consult__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.consult__text h2 { margin-bottom: 16px; }
.consult__text p { font-size: 1.05rem; margin-bottom: 24px; }
.consult__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.consult__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.consult__bullets li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.consult__form-box {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.form-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }

/* ==============================
   FORM ELEMENTS
============================== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input.input-error,
.form-group textarea.input-error { border-color: #ef4444 !important; }
.form-error-msg {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 5px;
  display: none;
}
.form-error-msg.visible { display: block; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238b9ab5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-group select option { background: var(--navy2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 12px; text-align: center; }
.btn-full { width: 100%; justify-content: center; }

/* ==============================
   FOOTER
============================== */
footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer__brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 12px; max-width: 300px; }
.footer__col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col li a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--transition); }
.footer__col li a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==============================
   VACANCIES PAGE
============================== */
.vac-hero {
  padding: 140px 0 60px;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
}
.vac-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.vac-hero p { font-size: 1.05rem; }

/* Filters */
.filters-section {
  padding: 40px 0 0;
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(7,16,31,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.filters__bar {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 24px;
}
.filters__bar .form-group { margin-bottom: 0; flex: 1; min-width: 160px; }
.filters__count {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding-bottom: 4px;
}
.filters__reset {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 16px;
  white-space: nowrap;
}
.filters__reset:hover { text-decoration: underline; }

/* Quick form strip */
.quick-form-strip {
  background: var(--navy3);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.quick-form-strip__inner {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.quick-form-strip__text {
  flex-shrink: 0;
}
.quick-form-strip__text h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.quick-form-strip__text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.quick-form-strip .form-group { margin-bottom: 0; min-width: 200px; }
.quick-form-strip__sep {
  flex: 1;
}

/* Vacancies grid */
.vacancies-section { padding: 48px 0 80px; }
.vacancies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vacancy-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  cursor: default;
}
.vacancy-card:hover {
  border-color: rgba(240,165,0,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.vc__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.vc__cat {
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.vc__article {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: monospace;
}
.vc__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.vc__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vc__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.vc__meta-row svg { flex-shrink: 0; opacity: 0.6; }
.vc__salary {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.vc__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.btn-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  background: var(--gold);
  color: #000;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-apply:hover { background: var(--gold-light); transform: translateY(-1px); }

/* No results */
.no-results {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}
.no-results h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--navy2);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* ==============================
   MODAL
============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--navy3);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}
.modal__close:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.modal__vacancy-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.modal__vacancy-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Thank you state */
.form-thanks {
  text-align: center;
  padding: 20px 0;
  display: none;
}
.form-thanks__icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.form-thanks h3 { font-size: 1.4rem; margin-bottom: 10px; }
.form-thanks p { font-size: 0.95rem; }
.form-thanks.visible { display: block; }

/* ==============================
   SCROLL ANIMATIONS
============================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr 360px; gap: 40px; }
}
@media (max-width: 1024px) {
  .vacancies__grid { grid-template-columns: repeat(2, 1fr); }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how__steps::before { display: none; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr 340px; gap: 32px; }
}
@media (max-width: 768px) {
  /* Layout */
  section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav { padding: 12px 0; }
  .nav__links { display: none; }
  .nav__cta { gap: 8px; }
  .nav__cta .btn-outline { display: none; }
  .nav__cta .btn { padding: 10px 16px; font-size: 0.82rem; }
  .nav__logo span { font-size: 1rem; }

  /* Hero */
  .hero { padding: 96px 0 56px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 1.9rem; }
  .hero__sub { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
  .hero__stat-num { font-size: 1.6rem; }
  .hero__form-card { padding: 28px 20px; }

  /* Stats bar */
  .stats-bar__inner { flex-direction: column; }
  .stats-bar__item { min-width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 20px 16px; }
  .stats-bar__item:last-child { border-bottom: none; }
  .stats-bar__num { font-size: 1.8rem; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__card { padding: 24px; }

  /* Categories */
  .categories__grid { grid-template-columns: 1fr; gap: 12px; }
  .categories__header { margin-bottom: 32px; }
  .cat-card { padding: 24px 20px; }

  /* How */
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  .how__step-num { width: 60px; height: 60px; font-size: 1.2rem; }

  /* Benefits */
  .benefits__grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card { padding: 24px 20px; }

  /* Consult */
  .consult__inner { grid-template-columns: 1fr; gap: 32px; }
  .consult__form-box { padding: 24px 20px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Vacancies page */
  .vac-hero { padding: 100px 0 40px; }
  .vac-hero h1 { font-size: 1.6rem; }
  .filters-section { top: 60px; }
  .filters__bar { flex-direction: column; gap: 8px; }
  .filters__bar .form-group { min-width: 100%; }
  .filters__count { order: -1; }
  .vacancies__grid { grid-template-columns: 1fr; gap: 12px; }
  .vacancy-card { padding: 20px; }
  .quick-form-strip__inner { flex-direction: column; gap: 12px; }
  .quick-form-strip .form-group { min-width: 100%; }
  #strip-submit { width: 100%; justify-content: center; }

  /* Modal */
  .modal { padding: 28px 20px; }
  .modal-overlay { padding: 16px; align-items: flex-end; }
  .modal { border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: 92vh; }

  /* Section headers */
  .categories__header h2,
  .how__header h2,
  .benefits__header h2 { font-size: 1.6rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.6rem; }
  .nav__logo-icon { width: 30px; height: 30px; font-size: 0.85rem; }
  .hero__stats { gap: 16px; }
  .hero__stat-num { font-size: 1.4rem; }
}
