/* ============================================
   FitJob.ru — Wellfound-exact style
   Black primary, red accent, parallax tags
   ============================================ */

:root {
  --primary: #1A1A1A;
  --accent: #E8443A;
  --accent-hover: #D43830;
  --accent-light: #FEF2F2;
  --bg: #FFFFFF;
  --bg-2: #F9FAFB;
  --bg-3: #F3F4F6;
  --bg-dark: #111111;
  --text: #1A1A1A;
  --text-2: #6B7280;
  --text-3: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07);
  --radius: 9999px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--max-w); min-width: 0; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -0.03em; color: var(--primary); }
h1 { font-size: 5.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.85rem; }
h4 { font-size: 1.15rem; }
p { color: var(--text-2); line-height: 1.65; font-size: 1.063rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius); font-weight: 600; font-size: 0.938rem;
  transition: all 0.2s var(--ease); white-space: nowrap; border: 1.5px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: #333; border-color: #333; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); }
.btn-lg { padding: 16px 40px; font-size: 1.063rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.2s var(--ease);
}
body.admin-bar .navbar { top: 32px; }
body.admin-bar .mob-menu { top: 96px; }
.navbar.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.navbar-logo { display: flex; align-items: baseline; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--primary); }
.navbar-logo .logo-colon { color: var(--accent); font-weight: 900; margin-right: 1px; }

.navbar-right { display: flex; align-items: center; gap: 12px; }

.nav-geo {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.875rem; font-weight: 500; color: var(--text);
  padding: 6px 10px; border-radius: var(--radius); transition: background 0.15s;
}
.nav-geo:hover { background: var(--bg-3); }
.nav-geo svg { flex-shrink: 0; }

/* Mobile */
.mob-btn {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
}
.mob-btn span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: all 0.2s; }
.mob-btn span::before, .mob-btn span::after { content: ''; position: absolute; width: 20px; height: 2px; background: var(--text); transition: all 0.2s; }
.mob-btn span::before { top: -6px; }
.mob-btn span::after { top: 6px; }
.mob-btn.active span { background: transparent; }
.mob-btn.active span::before { top: 0; transform: rotate(45deg); }
.mob-btn.active span::after { top: 0; transform: rotate(-45deg); }

.mob-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg); padding: 24px; z-index: 999; overflow-y: auto;
}
.mob-menu.active { display: block; animation: fadeSlide 0.25s ease; }
.mob-menu a { display: block; padding: 16px 0; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--border-light); }
.mob-menu .mob-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mob-menu .mob-actions .btn { width: 100%; }

@keyframes fadeSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== CITY SELECTOR MODAL ===== */
.city-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2000;
  animation: cityFadeIn 0.2s var(--ease);
}
.city-overlay.open { display: block; }

@keyframes cityFadeIn { from { opacity: 0; } to { opacity: 1; } }

.city-modal {
  position: fixed;
  top: 50%;
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 80px);
  background: var(--bg);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 2001;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: citySlideIn 0.25s var(--ease);
}
.city-modal.open { display: flex; }

@keyframes citySlideIn {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

.city-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 0;
}

.city-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.city-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--bg-3);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-2);
  transition: background 0.15s, color 0.15s;
}
.city-modal-close:hover { background: var(--border); color: var(--text); }

.city-search-wrap {
  padding: 18px 28px 0;
}

.city-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.city-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,68,58,0.08);
}

.city-search svg { flex-shrink: 0; color: var(--text-3); }

.city-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.938rem;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
}
.city-search-input::placeholder { color: var(--text-3); }

.city-list-label {
  padding: 16px 28px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.city-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 12px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.city-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s;
  font-size: 0.938rem;
  color: var(--text);
}

.city-option:hover { background: var(--bg-3); }

.city-option.active {
  background: var(--accent-light);
  font-weight: 600;
}

.city-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}

.city-option.active .city-radio {
  border-color: var(--accent);
}

.city-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.15s;
}

.city-option.active .city-radio-dot {
  background: var(--accent);
}

.city-option-hidden { display: none; }

@media (max-width: 480px) {
  .city-modal {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
  }
  .city-modal.open { animation: none; }
  @keyframes citySlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ===== HERO ===== */
.hero {
  padding: 150px 0 60px;
  text-align: center;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Parallax tag cloud */
.hero-scene {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-scene .htag {
  position: absolute;
  padding: 8px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  pointer-events: auto;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.htag:hover {
  transform: scale(1.18) !important;
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(232,68,58,0.25);
  z-index: 10;
}

.hero .container { position: relative; z-index: 1; }

.hero-headline {
  max-width: 740px;
  margin: 0 auto 20px;
}
.hero-headline h1 { text-wrap: balance; }

.hero h1 .logo-w { font-weight: 900; letter-spacing: -0.04em; }
.hero h1 .logo-w .logo-colon { color: var(--accent); }

/* Red dashed frame around key word — like Wellfound "next" */
.hero-focus {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  padding: 2px 18px;
}
.hero-focus::before {
  content: '';
  position: absolute;
  inset: -6px -14px;
  border: 2.5px dashed var(--accent);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.hero-sub {
  font-family: 'DM Sans', var(--font);
  font-size: 1.063rem;
  color: var(--text-2);
  max-width: 480px;
  margin: 32px auto 0;
  letter-spacing: -0.01em;
}

/* ===== CTA SECTION (Wellfound "Where startups connect") ===== */
.hero-cta-section {
  padding: 80px 0 100px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.hero-cta-heading {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 48px;
}
.cta-toggle {
  display: inline-flex;
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 5px;
  gap: 0;
}
.cta-toggle-btn {
  padding: 16px 48px;
  font-size: 1.063rem;
  font-weight: 600;
  border-radius: var(--radius);
  color: var(--text-2);
  background: transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.cta-toggle-btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.cta-toggle-btn:hover:not(.active) {
  color: var(--text);
}

/* ===== SCROLL ARROW ===== */
.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  margin: -24px auto 0;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.2s ease;
  animation: arrowBounce 2s ease-in-out infinite;
}
.scroll-arrow:hover {
  transform: scale(1.1);
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Stats bar — dark contrasting block like Wellfound */
.stats-bar {
  padding: 80px 0;
  background: var(--bg-dark);
  border: none;
}
.stats-grid {
  display: flex; justify-content: center; gap: 80px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-val { font-size: 3.5rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.stat-lbl { font-size: 0.938rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ===== SPLIT SECTION (Why X love us) ===== */
.split-section {
  padding: 100px 0;
}
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.split-col .split-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 12px;
}
.split-col h2 { margin-bottom: 32px; }

.split-item { display: flex; gap: 16px; margin-bottom: 24px; }
.split-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem;
}
.split-text h4 { font-size: 1.063rem; font-weight: 600; margin-bottom: 3px; }
.split-text p { font-size: 0.938rem; line-height: 1.55; }

.split-btns { display: flex; gap: 12px; margin-top: 32px; }

/* ===== QUOTE SECTION ===== */
.quote-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}
.quote-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px;
}
.quote-header .qlabel {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 6px;
}
.quote-header h3 { font-size: 2rem; }
.quote-nav { display: flex; gap: 8px; }
.quote-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: all 0.15s; color: var(--text);
}
.quote-nav button:hover { border-color: var(--primary); background: var(--bg-2); }

.quote-card {
  background: var(--bg-2); border-radius: var(--radius-lg); padding: 40px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.quote-mark { font-size: 3.5rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.quote-card blockquote { font-size: 1.15rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
.quote-author { font-size: 0.938rem; font-weight: 600; }
.quote-role { font-size: 0.875rem; color: var(--text-3); }

/* ===== FEATURE CARDS (Get Featured / Salary) ===== */
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.feat-card {
  border-radius: var(--radius-lg); padding: 40px 44px; display: flex; flex-direction: column;
  justify-content: space-between; min-height: 300px;
}
.feat-dark { background: var(--bg-dark); color: #fff; }
.feat-dark h3 { color: #fff; }
.feat-dark p { color: rgba(255,255,255,0.6); }
.feat-dark .feat-label { color: var(--accent); }

.feat-red { background: var(--accent); color: #fff; }
.feat-red h3 { color: #fff; }
.feat-red p { color: rgba(255,255,255,0.75); }
.feat-red .feat-label { color: rgba(255,255,255,0.8); }

/* Wellfound-style colored blocks */
.feat-yellow { background: #F5A623; color: var(--primary); }
.feat-yellow h3 { color: var(--primary); }
.feat-yellow p { color: rgba(0,0,0,0.65); }
.feat-yellow .feat-label { color: var(--primary); font-weight: 800; }
.feat-yellow .feat-link { color: var(--primary); }

.feat-purple { background: #6B1D4A; color: #fff; }
.feat-purple h3 { color: #fff; }
.feat-purple p { color: rgba(255,255,255,0.7); }
.feat-purple .feat-label { color: rgba(255,255,255,0.85); font-weight: 800; }
.feat-purple .feat-link { color: #fff; }

.feat-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.feat-card h3 { font-size: 1.75rem; margin-bottom: 10px; }
.feat-card p { font-size: 0.938rem; line-height: 1.55; margin-bottom: 16px; }
.feat-link { font-size: 0.938rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; color: inherit; align-self: flex-start; }

/* ===== CATEGORIES ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--bg-dark); }
.section-dark .sec-label { color: var(--accent); }
.section-dark .sec-header h2 { color: #fff; }
.section-dark .sec-header p { color: rgba(255,255,255,0.5); }
.sec-header { margin-bottom: 48px; }
.sec-header.center { text-align: center; }
.sec-label { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 10px; }
.sec-header h2 { margin-bottom: 10px; }
.sec-header p { font-family: 'DM Sans', var(--font); font-size: 1.15rem; max-width: 500px; color: var(--text-2); letter-spacing: -0.01em; }
.sec-header.center p { margin: 0 auto; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cat-card {
  padding: 22px 18px; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg); cursor: pointer; transition: all 0.2s var(--ease);
  text-decoration: none; color: inherit; display: block;
}
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cat-icon { width: 42px; height: 42px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 12px; }
.cat-card h4 { font-size: 1.063rem; margin-bottom: 3px; }
.cat-card p { font-size: 0.813rem; }
.cat-count { display: inline-block; margin-top: 8px; font-size: 0.688rem; font-weight: 600; color: var(--accent); }

/* ===== JOBS ===== */
.jobs-list { display: flex; flex-direction: column; gap: 8px; }
.job-card {
  display: flex; align-items: center; gap: 18px; padding: 20px 22px;
  border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg);
  cursor: pointer; transition: all 0.2s var(--ease);
  text-decoration: none; color: inherit;
}
.job-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.job-logo {
  width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 0.813rem; font-weight: 800; flex-shrink: 0;
}
.job-info { flex: 1; min-width: 0; }
.job-info h4 { font-size: 1.15rem; margin-bottom: 2px; }
.job-co { font-size: 0.875rem; color: var(--text-2); font-weight: 500; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.jtag {
  padding: 3px 10px; border-radius: var(--radius); font-size: 0.688rem; font-weight: 500;
  background: var(--bg-3); color: var(--text-2);
}
.jtag-salary { background: var(--accent-light); color: var(--accent); }
.job-end { flex-shrink: 0; font-size: 0.688rem; color: var(--text-3); }

/* ===== COMPANIES ===== */
.co-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.co-card {
  padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg); cursor: pointer; transition: all 0.2s var(--ease);
  text-decoration: none; color: inherit; display: block;
}
.co-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.co-card { padding: 0; overflow: hidden; }
.co-cover {
  width: 100%; height: 140px; background-size: cover; background-position: center;
  border-bottom: 1px solid var(--border-light);
}
.co-body { padding: 18px 22px 22px; }
.co-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.co-logo-img { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; object-fit: cover; }
.co-logo {
  width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 800; flex-shrink: 0;
}
.co-name { font-weight: 700; font-size: 1.063rem; }
.co-ind { font-size: 0.688rem; color: var(--text-2); }
.co-desc { font-size: 0.75rem; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.co-foot { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border-light); font-size: 0.75rem; }
.co-jobs { font-weight: 600; color: var(--accent); }
.co-loc { display: flex; align-items: center; gap: 4px; color: var(--text-3); }

/* ===== BLOG ===== */
.blog-section { padding: 80px 0; border-top: 1px solid var(--border-light); }
.blog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.blog-header h3 { font-size: 2.25rem; }
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-item {
  display: flex; align-items: center; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid var(--border-light); cursor: pointer; transition: opacity 0.15s;
  text-decoration: none; color: inherit;
}
.blog-item:hover { opacity: 0.7; }
.blog-tag { font-size: 0.813rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; min-width: 110px; flex-shrink: 0; }
.blog-title { font-size: 1.25rem; font-weight: 700; color: var(--text); flex: 1; }
.blog-excerpt { font-size: 0.938rem; color: var(--text-2); flex: 1; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.blog-icon svg { color: var(--accent); }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 32px;
  left: calc(16.66% + 32px); right: calc(16.66% + 32px);
  height: 1px; background: var(--border); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--bg);
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.4rem; transition: all 0.2s;
}
.step:hover .step-num { border-color: var(--accent); background: var(--accent-light); }
.step h4 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { font-size: 0.938rem; max-width: 280px; margin: 0 auto; }

/* ===== CTA ===== */
.cta-section { padding: 0; }
.cta-box {
  background: var(--accent); border-radius: 0; padding: 100px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -60%; right: -15%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); pointer-events: none;
}
.cta-box h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 500px; margin: 0 auto 32px; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 1; flex-wrap: wrap; }
.btn-wh-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border: 1.5px solid rgba(255,255,255,0.25); color: #fff;
  border-radius: var(--radius); font-weight: 600; font-size: 1rem; transition: all 0.2s;
}
.btn-wh-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ===== FOOTER ===== */
.footer { padding: 48px 0 0; border-top: 1px solid var(--border); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.foot-brand .navbar-logo { margin-bottom: 12px; }
.foot-brand p { font-size: 0.75rem; max-width: 240px; line-height: 1.7; }
.foot-social { display: flex; gap: 6px; margin-top: 16px; }
.foot-social a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center; color: var(--text-2); transition: all 0.15s;
}
.foot-social a:hover { background: var(--primary); color: #fff; }
.foot-col h4 { font-size: 0.688rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.foot-col a { display: block; padding: 4px 0; font-size: 0.75rem; color: var(--text-2); transition: color 0.15s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; padding: 18px 0;
  border-top: 1px solid var(--border-light); font-size: 0.688rem; color: var(--text-3);
}
.foot-bottom p,
.foot-bottom span { font-size: 0.688rem; color: var(--text-3); margin: 0; }
.foot-legal { display: flex; gap: 18px; }
.foot-legal-links { display: flex; gap: 18px; }
.foot-legal a:hover,
.foot-legal-links a:hover { color: var(--text-2); }
.foot-legal-links a { font-size: 0.688rem; color: var(--text-3); text-decoration: none; transition: color .15s; }

/* ===== PROMO BANNER ===== */
.promo-banner {
  padding: 0;
}
.promo-inner {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 40px 0;
}
.promo-badge {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.promo-badge-logo {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.promo-badge-logo .logo-colon { color: var(--accent); }
.promo-badge-big {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.promo-badge-year {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.promo-content h2 {
  color: #fff;
  margin-bottom: 14px;
}
.promo-content p {
  color: rgba(255,255,255,0.55);
  font-size: 1.063rem;
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.65;
}
.promo-content .btn:hover {
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .promo-inner {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
    gap: 32px;
  }
  .promo-badge {
    width: 160px;
    height: 160px;
  }
  .promo-badge-big { font-size: 2.5rem; }
  .promo-content p { margin: 0 auto 28px; }
}

@media (max-width: 782px) {
  body.admin-bar .navbar { top: 46px; }
  body.admin-bar .mob-menu { top: 110px; }
}

/* ===== COOKIE ===== */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 16px 0; z-index: 10000;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.cookie.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-inner p { font-size: 0.75rem; color: var(--text-2); }
.cookie-inner a { color: var(--accent); font-weight: 500; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

.sec-more { text-align: center; margin-top: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 2.25rem; }
  .split-grid { gap: 48px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .co-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-scene { display: none; }

  .hero-cta-heading { font-size: 2.25rem; }
  .hero { min-height: auto; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.75rem; }
  .navbar-right { display: none; }
  .mob-btn { display: flex; }
  .hero { padding: 120px 0 48px; }

  .hero-cta-heading { font-size: 1.75rem; }
  .cta-toggle-btn { padding: 14px 28px; font-size: 0.938rem; }
  .btn,
  .btn-wh-outline { max-width: 100%; white-space: normal; text-align: center; }
  .split-btns,
  .blog-header,
  .cookie-btns { flex-wrap: wrap; }
  .cookie-btns { width: 100%; justify-content: center; }
  .split-grid { grid-template-columns: 1fr; gap: 56px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-card { padding: 16px 14px; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
  .job-end { width: 100%; }
  .co-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .stats-grid { gap: 28px; }
  .cta-box { padding: 64px 24px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn, .cta-btns .btn-wh-outline { width: 100%; justify-content: center; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .foot-legal,
  .foot-legal-links { flex-wrap: wrap; justify-content: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .quote-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .blog-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .blog-excerpt { display: none; }
  .blog-icon { display: none; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.25rem; }
  .container { padding: 0 16px; }
  .hero-headline,
  .hero-focus { max-width: 100%; }
  .hero-focus { padding-inline: 10px; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero-cta-heading { font-size: 1.5rem; }
  .cta-toggle { flex-direction: column; width: 100%; }
  .cta-toggle-btn { padding: 14px 24px; font-size: 0.938rem; }
  .split-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .split-btns .btn { width: 100%; justify-content: center; }
  .cookie { width: 100%; max-width: 100vw; }
  .cookie-btns .btn { flex: 1 1 120px; min-width: 0; padding-inline: 16px; }
}
