/* ============================================================
   HR one CRM - landing styles
   Single-file CSS. Mobile-first. No frameworks.
   ============================================================ */

/* ---------- Tokens ---------- */
:root{
  --brand: #6D28D9;
  --brand-600: #5B21B6;
  --brand-700: #4C1D95;
  --brand-50: #F5F3FF;
  --brand-100: #EDE9FE;
  --brand-200: #DDD6FE;

  --ink: #0F172A;
  --ink-2: #475569;
  --ink-3: #64748B;            /* было --muted: #94A3B8 (contrast 3.4:1). Поднято до 4.6:1 для WCAG AA */
  --muted: #64748B;            /* alias - теперь contrast 4.6:1 на белом */
  --muted-2: #94A3B8;          /* для декоративных элементов: иконок, точек, разделителей */
  --border: #E2E8F0;
  --border-2: #EEF2F6;

  --bg: #FFFFFF;
  --surface: #F9FAFB;
  --surface-2: #F3F4F6;

  --blue: #3B82F6;
  --mint: #06B6D4;
  --green: #10B981;
  --green-2: #059669;
  --amber: #F59E0B;
  --rose: #F43F5E;
  --red: #DC2626;
  --pink: #EC4899;

  --radius: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
  --shadow-md: 0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(109,40,217,.18);
  --shadow-card: 0 12px 32px -8px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);

  --header-h: 64px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after{ box-sizing: border-box; }

html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg{ display: block; max-width: 100%; }
a{ color: var(--brand); text-decoration: none; }
a:hover{ color: var(--brand-600); }
button{ font: inherit; cursor: pointer; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
p{ margin: 0; }
code{ font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace; background: var(--brand-50); color: var(--brand-700); padding: 2px 6px; border-radius: 6px; font-size: .9em; }

/* ---------- Container ---------- */
.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
.h1, .h2, .h3, h1, h2, h3{
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}
.h1{ font-size: clamp(34px, 5vw, 56px); line-height: 1.05; }
.h2{ font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; }
.h3{ font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }
.accent{ color: var(--brand); }

.lead{
  color: var(--ink-2);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}
.eyebrow{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--brand-50);
  border-radius: 999px;
}
.section-head{ max-width: 760px; margin-bottom: 48px; }
.section-head--center{ text-align: center; margin-left: auto; margin-right: auto; }
.section-lead{ color: var(--ink-2); margin-top: 14px; font-size: clamp(15px, 1.2vw, 18px); }

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--brand-50);
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid var(--brand-100);
  margin-bottom: 20px;
}
.pill::before{ content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }

.chip{
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.link-btn{
  background: none; border: none; padding: 0;
  color: var(--brand); font-weight: 600;
  cursor: pointer; font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover{ color: var(--brand-600); }

.visually-hidden{ position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Buttons ---------- */
.btn{
  --bg: var(--brand);
  --fg: #fff;
  --bd: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  font-weight: 600;
  font-size: 15px;
  transition: transform .12s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover{ color: var(--fg); }
.btn:focus-visible{ outline: 2px solid var(--brand); outline-offset: 2px; }
.btn:active{ transform: translateY(1px); }

.btn--primary{ --bg: var(--brand); --fg: #fff; --bd: var(--brand); box-shadow: 0 8px 20px -6px rgba(109,40,217,.55); }
.btn--primary:hover{ --bg: var(--brand-600); --bd: var(--brand-600); box-shadow: 0 12px 28px -8px rgba(109,40,217,.7); }

.btn--ghost{ --bg: #fff; --fg: var(--ink); --bd: var(--border); }
.btn--ghost:hover{ --bg: var(--surface-2); --bd: var(--ink-2); color: var(--ink); }

.btn--success{ --bg: #ECFDF5; --fg: #047857; --bd: #A7F3D0; }
.btn--warn{ --bg: #FFFBEB; --fg: #92400E; --bd: #FDE68A; }
.btn--danger{ --bg: #FEF2F2; --fg: #B91C1C; --bd: #FECACA; }

.btn--lg{ height: 52px; padding: 0 22px; font-size: 16px; border-radius: 14px; }
.btn--sm{ height: 36px; padding: 0 14px; font-size: 14px; border-radius: 10px; }
.btn--block{ display: flex; width: 100%; }

/* ---------- Header ---------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.is-scrolled{ border-color: var(--border); box-shadow: 0 4px 16px rgba(15,23,42,.04); }
.header__inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.01em;
  font-family: 'Manrope', sans-serif;
}
.logo:hover{ color: var(--ink); }
.logo__mark{ display: inline-flex; }
.logo__text{ font-size: 18px; }
.logo__text em{ color: var(--brand); font-style: italic; font-weight: 800; }

.nav{ display: none; gap: 4px; margin-left: 12px; }
.nav a{
  color: var(--ink-2);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover{ color: var(--ink); background: var(--surface); }

.header__cta{ display: none; gap: 10px; margin-left: auto; }

/* Burger */
.burger{
  margin-left: auto;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border);
  border-radius: 10px;
}
.burger span{
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.burger span + span{ margin-top: 4px; }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
.burger span{ transition: transform .25s ease, opacity .15s ease; }

.mobile-menu{
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 49;
  box-shadow: 0 12px 24px rgba(15,23,42,.06);
}
.mobile-menu a{
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
}
.mobile-menu a:hover{ background: var(--surface); }
.mobile-menu .btn{ width: 100%; margin-top: 6px; }

@media (min-width: 900px){
  .nav{ display: flex; }
  .header__cta{ display: flex; }
  .burger{ display: none; }
  .mobile-menu{ display: none !important; }
}

/* ---------- HERO ---------- */
.hero{
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(60% 50% at 90% 0%, rgba(109,40,217,.10), transparent 70%),
    radial-gradient(50% 40% at 0% 20%, rgba(6,182,212,.07), transparent 70%),
    #fff;
  position: relative;
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 1024px){
  .hero__grid{ grid-template-columns: 1.05fr 1fr; }
}
.hero__cta{ display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.hero__bullets{
  display: flex; flex-wrap: wrap; gap: 12px 18px;
  color: var(--ink-2); font-size: 14px;
}
.hero__bullets li{ display: inline-flex; align-items: center; gap: 6px; }

/* Hero mock */
.hero__mock{
  position: relative;
  perspective: 1600px;
}

.mock{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.mock--kanban{ transform: rotate(-1deg); }
.mock__bar{
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--border-2);
}
.mock__bar--slim{ height: 32px; padding: 0 12px; }
.mock__dot{ width: 9px; height: 9px; border-radius: 50%; background: #E5E7EB; }
.mock__dot:nth-child(1){ background: #F87171; }
.mock__dot:nth-child(2){ background: #FBBF24; }
.mock__dot:nth-child(3){ background: #34D399; }
.mock__title{ margin-left: 10px; font-size: 12.5px; color: var(--ink-2); font-weight: 600; }

.kanban{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  background: var(--surface);
}
.kanban--mini{ grid-template-columns: repeat(4, 1fr); padding: 12px; gap: 8px; }
.kanban__col{ background: #fff; border: 1px solid var(--border-2); border-radius: 12px; padding: 10px; display: flex; flex-direction: column; gap: 8px; min-height: 200px; }
.kanban__head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.kanban__badge{
  display: inline-flex; padding: 3px 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px;
}
.kanban__badge--blue{ background: #DBEAFE; color: #1D4ED8; }
.kanban__badge--violet{ background: var(--brand-100); color: var(--brand-700); }
.kanban__badge--amber{ background: #FEF3C7; color: #92400E; }
.kanban__badge--green{ background: #D1FAE5; color: #047857; }
.kanban__count{ font-size: 12px; color: var(--ink-3); font-weight: 600; }

.kcard{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 11px;
  box-shadow: 0 1px 1px rgba(15,23,42,.03);
  position: relative;
  font-size: 13px;
}
.kanban--mini .kcard{ padding: 8px 10px; font-size: 12px; }
.kcard b{ display: block; color: var(--ink); font-weight: 600; font-size: 13px; line-height: 1.25; }
.kcard small{ color: var(--ink-3); font-size: 11.5px; }
.kcard__top{ display: flex; align-items: center; gap: 9px; }
.kcard__tags{ margin-top: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
.kcard__meta{
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; color: var(--ink-2);
  background: var(--brand-50);
  padding: 3px 8px;
  border-radius: 6px;
}

/* Hot card: одноразовая анимация при появлении в видимости (вместо бесконечной) */
.kcard--hot{
  border-color: var(--brand-200);
  box-shadow: 0 0 0 3px rgba(109,40,217,.08), 0 4px 14px rgba(109,40,217,.15);
  animation: cardPop .8s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: .4s;
  transition: transform .25s ease, box-shadow .25s ease;
}
.kcard--hot:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px rgba(109,40,217,.12), 0 10px 24px rgba(109,40,217,.22);
}
@keyframes cardPop{
  0%{ transform: translateY(8px) scale(.98); opacity: 0; }
  60%{ transform: translateY(-3px) scale(1.02); opacity: 1; }
  100%{ transform: translateY(0) scale(1); opacity: 1; }
}
.kcard--ghost{
  border-style: dashed;
  border-color: var(--border);
  background: transparent;
  box-shadow: none;
  min-height: 36px;
}
.kcard--drag{ box-shadow: 0 10px 24px -6px rgba(15,23,42,.15); transform: rotate(2deg); }
.kcard--warn{ border-color: #FDE68A; background: #FFFBEB; }
.kcard__grip{
  position: absolute; right: 8px; top: 50%;
  width: 12px; height: 12px;
  background-image: radial-gradient(circle, var(--muted-2) 1px, transparent 1.5px);
  background-size: 4px 4px;
  transform: translateY(-50%);
  border-radius: 4px;
}

.tag{
  display: inline-block;
  padding: 2px 7px;
  font-size: 10.5px; font-weight: 600;
  background: var(--surface-2);
  color: var(--ink-2);
  border-radius: 999px;
}

.avatar{
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  color: #fff;
  flex-shrink: 0;
}
.avatar--lg{ width: 44px; height: 44px; font-size: 16px; }
.avatar--violet{ background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.avatar--pink{ background: linear-gradient(135deg, #F472B6, #EC4899); }
.avatar--mint{ background: linear-gradient(135deg, #22D3EE, #06B6D4); }
.avatar--amber{ background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.avatar--rose{ background: linear-gradient(135deg, #FB7185, #F43F5E); }

/* Floating chips around hero mock */
.float{
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.float--top{ top: -22px; right: -10px; animation: floatY 5s ease-in-out infinite; }
.float--bottom{ bottom: -22px; left: 4px; animation: floatY 6s ease-in-out infinite reverse; }
@keyframes floatY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* На мобиле скрываем 3-ю колонку канбана и плавающие подсказки */
@media (max-width: 640px){
  .float{ display: none; }
  .mock--kanban{ transform: none; }
  .hero__mock{ margin: 0 -8px; }
  .kanban{ grid-template-columns: 1fr 1fr; }
  .kanban__col--hide-sm{ display: none; }
}

/* ---------- TRUST STRIP ---------- */
.trust{ padding: clamp(36px, 5vw, 56px) 0; background: var(--surface); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.trust__list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}
@media (min-width: 768px){
  .trust__list{ grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.trust li{
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
}
.trust__ico{
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.trust__num{
  grid-column: 2; grid-row: 1;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.trust__txt{
  grid-column: 2; grid-row: 2;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.4;
}

/* ---------- PROBLEM (Знакомо? До/После) ---------- */
.problem{ padding: clamp(60px, 8vw, 100px) 0; }
.vs{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (min-width: 900px){
  .vs{ grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
}
.vs__col{
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.vs__col--before{ border-color: var(--border); background: linear-gradient(180deg, #fff, var(--surface)); }
.vs__col--after{ border-color: var(--brand-200); background: linear-gradient(180deg, #fff, var(--brand-50)); box-shadow: var(--shadow-card); }
.vs__head{ margin-bottom: 18px; }
.vs__head h3{ font-size: 22px; margin-top: 10px; }
.vs__chip{
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  border-radius: 999px;
}
.vs__chip--red{ background: #FEE2E2; color: #B91C1C; }
.vs__chip--green{ background: #D1FAE5; color: #065F46; }
.vs__chip--muted{ background: var(--surface-2); color: var(--ink-2); }
.vs__chip--brand{ background: var(--brand-100); color: var(--brand-700); }
.vs__list{ display: flex; flex-direction: column; gap: 12px; }
.vs__list li{
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink);
  line-height: 1.45;
}
.vs__icon{
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  margin-top: 1px;
}
.vs__icon--red{ background: #FEE2E2; color: var(--red); }
.vs__icon--green{ background: #D1FAE5; color: var(--green-2); }
.vs__icon--muted{ background: var(--surface-2); color: var(--ink-3); font-weight: 800; }
.vs__icon--brand{ background: var(--brand-100); color: var(--brand); font-weight: 800; }
.vs__arrow{
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: #fff;
  border: 1px solid var(--brand-200);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(109,40,217,.18);
}
@media (max-width: 899px){
  .vs__arrow{ transform: rotate(90deg); }
}

/* ---------- WHO ---------- */
.who{ padding: clamp(60px, 8vw, 100px) 0; background: var(--surface); }
.who__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px){ .who__grid{ grid-template-columns: repeat(3, 1fr); } }
.who-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.who-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--brand-200); }
.who-card--accent{ border-color: var(--brand-200); box-shadow: var(--shadow-card); }
.who-card__illu{ display: block; line-height: 0; }
.who-card__illu svg{ width: 100%; height: auto; }
.who-card h3{ font-size: 22px; margin: 24px 26px 10px; }
.who-card p{ color: var(--ink-2); font-size: 15px; margin: 0 26px; }
.who-card__list{ margin: 16px 26px 0; padding-top: 16px; border-top: 1px solid var(--border-2); display: flex; flex-direction: column; gap: 8px; }
.who-card__list li{
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink);
}
.who-card__list li::before{
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center/contain no-repeat;
}

/* ---------- FEATURES ---------- */
.features{ padding: clamp(60px, 8vw, 100px) 0; }
.feature{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--border-2);
}
@media (min-width: 900px){
  .feature{ grid-template-columns: 1fr 1.05fr; gap: 56px; }
  .feature--reverse .feature__text{ order: 2; }
  .feature--reverse .feature__mock{ order: 1; }
}
.feature__text h3{ margin-bottom: 14px; }
.feature__text p{ color: var(--ink-2); font-size: clamp(15px, 1.2vw, 17px); }
.feature__list{ margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.feature__list li{
  position: relative; padding-left: 28px;
  font-size: 15px; color: var(--ink);
}
.feature__list li::before{
  content: ""; position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--brand-50);
  border-radius: 50%;
}
.feature__list li::after{
  content: ""; position: absolute; left: 4px; top: 8px;
  width: 10px; height: 10px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center/contain no-repeat;
}

.feature__mock .mock{ width: 100%; }

/* ----- Candidate card mock ----- */
.mock--card{ background: #fff; }
.ccard{ padding: 18px; display: flex; flex-direction: column; gap: 16px; }
.ccard__head{ display: flex; gap: 14px; align-items: flex-start; }
.ccard__head b{ display: block; font-weight: 700; color: var(--ink); font-size: 16px; }
.ccard__head small{ display: block; color: var(--ink-3); font-size: 12.5px; }
.ccard__icons{ margin-top: 10px; display: flex; gap: 6px; }
.ico{ width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.ico--blue{ background: #DBEAFE; color: var(--blue); }
.ico--violet{ background: var(--brand-100); color: var(--brand); }
.ico--mint{ background: #CFFAFE; color: var(--mint); }
.ico--amber{ background: #FEF3C7; color: var(--amber); }

.ccard__next{
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--green);
  background: #ECFDF5;
  border-radius: 12px;
}
.ccard__next b{ display: block; color: #065F46; font-size: 14px; font-weight: 700; }
.ccard__next small{ display: block; color: #047857; font-size: 12px; font-weight: 600; }
.ccard__next button{ margin-left: auto; }
.ccard__nextDot{
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(16,185,129,.2);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.timeline{ padding-left: 0; display: flex; flex-direction: column; gap: 14px; position: relative; }
.timeline::before{
  content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px;
  width: 2px; background: var(--border);
}
.timeline__item{ position: relative; padding-left: 24px; display: flex; gap: 0; flex-direction: column; }
.timeline__item b{ font-weight: 600; color: var(--ink); font-size: 13.5px; }
.timeline__item small{ color: var(--ink-3); font-size: 12px; }
.tl{ position: absolute; left: 0; top: 4px; width: 14px; height: 14px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 1.5px var(--border); background: var(--ink-3); }
.tl--violet{ background: var(--brand); }
.tl--blue{ background: var(--blue); }
.tl--mint{ background: var(--mint); }
.tl--gray{ background: var(--ink-3); }

/* ----- Resume parse mock ----- */
.parse{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}
@media (min-width: 640px){
  .parse{ grid-template-columns: 1fr auto 1fr; }
}
.parse__in, .parse__out{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.parse__pre{
  margin: 0;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-2);
  white-space: pre-wrap;
  background: #FAFAFA;
}
.parse__arrow{
  display: flex; justify-content: center; align-items: center;
  background: var(--brand-50);
  width: 44px; height: 44px;
  border-radius: 50%;
  margin: 0 auto;
}
@media (max-width: 639px){
  .parse__arrow{ transform: rotate(90deg); }
}
.parse__field{
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-2);
}
.parse__field:last-child{ border-bottom: none; }
.parse__field small{ font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.parse__field b{ font-size: 13.5px; color: var(--ink); font-weight: 600; }

/* ----- Analytics mock ----- */
.mock--analytics .ana{ padding: 16px; background: #fff; }
.ana__cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.ana__card{ background: var(--surface); border-radius: 10px; padding: 12px; }
.ana__card small{ display: block; font-size: 11.5px; color: var(--ink-3); margin-bottom: 4px; }
.ana__card b{ display: block; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: var(--ink); }
.trend{ display: inline-block; margin-top: 4px; font-size: 11px; font-weight: 700; padding: 1px 8px; border-radius: 999px; }
.trend--up{ background: #D1FAE5; color: #047857; }

.ana__chart{ padding: 10px 0 0; }
.ana__bars{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  height: 130px; align-items: end;
}
.ana__bar{
  position: relative;
  background: linear-gradient(180deg, #DDD6FE, #C4B5FD);
  border-radius: 8px 8px 4px 4px;
  height: var(--h, 50%);
  min-height: 22px;
  transition: opacity .2s ease;
}
.ana__bar span{
  position: absolute; top: -18px; left: 0; right: 0;
  text-align: center;
  font-size: 11px; font-weight: 700;
  color: var(--ink);
}
.ana__bar label{
  position: absolute; bottom: -22px; left: 0; right: 0;
  text-align: center;
  font-size: 10.5px; color: var(--ink-3);
  font-weight: 600;
}
.ana__bar--win{ background: linear-gradient(180deg, #8B5CF6, #6D28D9); }

.ana__sources{
  margin-top: 38px; padding-top: 14px;
  border-top: 1px solid var(--border-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.ana__src{ display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink); }
.ana__src span:last-child{ margin-left: auto; color: var(--ink-2); font-weight: 600; }
.dot{ width: 10px; height: 10px; border-radius: 50%; }
.dot--blue{ background: var(--blue); }
.dot--violet{ background: var(--brand); }
.dot--mint{ background: var(--mint); }
.dot--amber{ background: var(--amber); }

/* ----- Small features grid (2x2) ----- */
.features__subhead{
  margin: clamp(40px, 5vw, 64px) 0 24px;
  font-size: clamp(20px, 2vw, 24px);
  text-align: center;
  color: var(--ink);
}
.features__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px){ .features__grid{ grid-template-columns: 1fr 1fr; gap: 18px; } }
.fcard{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fcard:hover{ transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--brand-200); }
.fcard__ico{
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.fcard__ico--violet{ background: var(--brand-100); color: var(--brand); }
.fcard__ico--mint{ background: #CFFAFE; color: var(--mint); }
.fcard__ico--amber{ background: #FEF3C7; color: var(--amber); }
.fcard__ico--rose{ background: #FFE4E6; color: var(--rose); }
.fcard h4{ font-size: 18px; margin: 0 0 8px; font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--ink); }
.fcard p{ color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }

/* ---------- HOW IT WORKS ---------- */
.how{ padding: clamp(60px, 8vw, 100px) 0; background: var(--surface); }
.how .section-head{ margin-left: auto; margin-right: auto; }
.steps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px){ .steps{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .steps{ grid-template-columns: repeat(4, 1fr); } }
.step{
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover{ transform: translateY(-4px); border-color: var(--brand-200); box-shadow: var(--shadow-card); }
.step__num{
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--brand);
  background: var(--brand-50);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.step__time{
  position: absolute;
  top: 28px; right: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--surface);
  padding: 3px 9px;
  border-radius: 999px;
}
.step h3{ font-size: 20px; margin-bottom: 8px; }
.step p{ color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }

/* ---------- INTEGRATIONS ---------- */
.integrations{ padding: clamp(48px, 6vw, 80px) 0; }
.integrations .section-head{ margin-left: auto; margin-right: auto; }
.integ{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 768px){ .integ{ grid-template-columns: repeat(4, 1fr); } }
.integ__item{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.integ__item:hover{ transform: translateY(-3px); border-color: var(--brand-200); box-shadow: var(--shadow-card); }
.integ__ico{
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.integ__ico--blue{ background: #DBEAFE; color: var(--blue); }
.integ__ico--violet{ background: var(--brand-100); color: var(--brand); }
.integ__ico--amber{ background: #FEF3C7; color: var(--amber); }
.integ__ico--rose{ background: #FFE4E6; color: var(--rose); }
.integ__item b{ font-size: 16px; }
.integ__item small{ color: var(--ink-2); font-size: 13px; line-height: 1.4; }

/* ---------- PRICING ---------- */
.pricing{ padding: clamp(60px, 8vw, 100px) 0; }
.pricing .section-head{ margin-left: auto; margin-right: auto; }

/* Bill toggle */
.bill-toggle{
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 0 auto 36px;
  justify-content: center;
  align-self: center;
}
.bill-toggle{ display: flex; width: max-content; max-width: 100%; margin-left: auto; margin-right: auto; }
.bill-toggle__btn{
  background: transparent;
  border: none;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.bill-toggle__btn:hover{ color: var(--ink); }
.bill-toggle__btn.is-active{
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(15,23,42,.06), 0 4px 12px rgba(15,23,42,.06);
}
.bill-toggle__save{
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}

.plans{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (min-width: 900px){ .plans{ grid-template-columns: 1fr 1.05fr 1fr; gap: 20px; align-items: center; } }
.plan{
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover{ transform: translateY(-3px); box-shadow: var(--shadow-card); }
.plan__name{ font-size: 22px; }
.plan__sub{ color: var(--ink-2); font-size: 14px; margin: -8px 0 0; }
.plan__price{ display: flex; align-items: baseline; gap: 8px; padding: 16px 0; border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.plan__num{ font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(38px, 4vw, 48px); color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.plan__unit{ color: var(--ink-2); font-size: 14px; font-weight: 500; }
.plan__cost-sub{
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  margin: -10px 0 0;
}
.plan__hint{
  color: var(--green-2);
  font-size: 13px;
  font-weight: 600;
  margin: -10px 0 0;
  display: none;
}
[data-period="year"] .plan__hint{ display: block; }
.plan__list{ display: flex; flex-direction: column; gap: 10px; }
.plan__list li{
  position: relative; padding-left: 26px;
  font-size: 14.5px; color: var(--ink);
}
.plan__list li::before{
  content: ""; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center/contain no-repeat;
}

.plan--popular{
  border: 2px solid var(--brand);
  box-shadow: 0 24px 60px -16px rgba(109,40,217,.28);
  background:
    radial-gradient(60% 40% at 50% 0%, var(--brand-50), #fff 70%);
  transform: translateY(-4px);
}
@media (min-width: 900px){ .plan--popular{ transform: scale(1.04); } }
.plan__badge{
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(109,40,217,.45);
  white-space: nowrap;
}
.pricing__note{
  text-align: center;
  color: var(--ink-2);
  font-size: 13.5px;
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

/* Compare table */
.compare{
  max-width: 900px;
  margin: 28px auto 0;
}
.compare summary{
  list-style: none;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--brand);
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  position: relative;
  background: var(--brand-50);
  border-radius: 12px;
  width: max-content;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: background .15s ease;
}
.compare summary:hover{ background: var(--brand-100); }
.compare summary::-webkit-details-marker{ display: none; }
.compare__plus{
  position: relative;
  width: 14px; height: 14px;
  display: inline-block;
}
.compare__plus::before, .compare__plus::after{
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--brand);
  border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease;
}
.compare__plus::before{ width: 12px; height: 2px; }
.compare__plus::after{ width: 2px; height: 12px; }
.compare[open] .compare__plus::after{ transform: rotate(90deg); opacity: 0; }

.compare__wrap{ overflow-x: auto; margin-top: 24px; border-radius: 16px; border: 1px solid var(--border); background: #fff; }
.compare__table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}
.compare__table th,
.compare__table td{
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-2);
}
.compare__table thead th{
  background: var(--surface);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.compare__table tbody th{
  text-align: left;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  width: 38%;
}
.compare__table .ok{ color: var(--green-2); font-weight: 700; }
.compare__table .no{ color: var(--ink-3); }
.compare__table .compare__hl{ background: var(--brand-50); color: var(--brand-700); }
.compare__table thead th.compare__hl{ background: var(--brand-100); color: var(--brand-700); }
.compare__table tbody tr:last-child td,
.compare__table tbody tr:last-child th{ border-bottom: none; }
.compare__table tr.compare__group th{
  text-align: left;
  background: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  padding-top: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--brand-100);
  width: auto;
}
.compare__table tbody tr.compare__group:first-child th{ padding-top: 14px; }

/* ---------- FAQ ---------- */
.faq{ padding: clamp(60px, 8vw, 100px) 0; background: var(--surface); }
.faq__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px){ .faq__inner{ grid-template-columns: 380px 1fr; gap: 56px; align-items: start; } }
.faq__list{ display: flex; flex-direction: column; gap: 12px; }
.qa{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.qa[open]{ border-color: var(--brand-200); box-shadow: var(--shadow-card); }
.qa summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.qa summary::-webkit-details-marker{ display: none; }
.qa__plus{
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand-50);
}
.qa__plus::before, .qa__plus::after{
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--brand);
  border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease;
}
.qa__plus::before{ width: 12px; height: 2px; }
.qa__plus::after{ width: 2px; height: 12px; }
.qa[open] .qa__plus::after{ transform: rotate(90deg); opacity: 0; }
.qa p{ padding: 0 22px 22px; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

/* ---------- CTA FINAL ---------- */
.cta{ padding: clamp(60px, 8vw, 110px) 0; }
.cta__box{
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(255,255,255,.18), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(255,255,255,.12), transparent 70%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 50%, var(--brand-700) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta__box::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta__text{ position: relative; max-width: 680px; margin: 0 auto 32px; }
.cta__h{ color: #fff; }
.cta__text p{ color: rgba(255,255,255,.9); font-size: clamp(15px, 1.4vw, 18px); margin-top: 14px; }

.cta__form{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 640px){
  .cta__form{ flex-direction: row; flex-wrap: wrap; }
  .cta__form input{ flex: 1; min-width: 0; }
}
.cta__form input{
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.96);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: box-shadow .2s ease, background .15s ease;
}
.cta__form input::placeholder{ color: var(--ink-3); }
.cta__form input:focus{ background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.cta__form input.is-invalid{ box-shadow: 0 0 0 3px rgba(255,255,255,.5), 0 0 0 5px #FCA5A5; }
.cta__form .btn--primary{
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.cta__form .btn--primary:hover{ background: #F5F3FF; color: var(--brand-700); border-color: #F5F3FF; }
.cta__hint{
  width: 100%;
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  margin-top: 4px;
  text-align: center;
}
.cta__hint a{ color: #fff; text-decoration: underline; }

.cta__done{
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: #fff;
  position: relative;
}
.cta__done b{ display: block; font-size: 22px; margin: 8px 0 6px; font-family: 'Manrope', sans-serif; }
.cta__done p{ color: rgba(255,255,255,.9); font-size: 14.5px; }
.cta__doneIco{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(16,185,129,.35);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}

/* ---------- FOOTER ---------- */
.footer{
  padding: 56px 0 32px;
  background: #0B1020;
  color: #C7D2E1;
}
.footer__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
}
@media (min-width: 640px){ .footer__grid{ grid-template-columns: 2fr 1fr; } }
.footer__brand p{ color: #C7D2E1; max-width: 320px; margin-top: 12px; font-size: 14px; line-height: 1.5; }
.footer__cta{ margin-top: 16px; }
.logo--footer .logo__text{ color: #fff; }
.logo--footer .logo__text em{ color: #A78BFA; }
.footer__col h4{ color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 14px; letter-spacing: .02em; font-family: 'Manrope', sans-serif; }
.footer__col a{ display: block; color: #C7D2E1; font-size: 14px; padding: 4px 0; transition: color .15s ease; }
.footer__col a:hover{ color: #fff; }
.footer__bottom{
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 4px;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #94A3B8;
}
@media (min-width: 640px){ .footer__bottom{ flex-direction: row; justify-content: space-between; align-items: center; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta{
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  animation: stickySlide .35s ease-out;
}
.sticky-cta .btn{
  width: 100%;
  flex-direction: column;
  padding: 8px 18px;
  height: auto;
  min-height: 56px;
  line-height: 1.15;
  box-shadow: 0 12px 32px -6px rgba(109,40,217,.55);
}
.sticky-cta__sub{
  font-size: 11.5px;
  font-weight: 500;
  opacity: .85;
  margin-top: 2px;
}
@keyframes stickySlide{
  from{ transform: translateY(120%); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}
.sticky-cta.is-show{ display: block; }
@media (min-width: 900px){
  .sticky-cta{ display: none !important; }
}

/* ---------- Modal (dialog) ---------- */
.modal{
  border: none;
  padding: 0;
  background: transparent;
  width: min(440px, calc(100% - 32px));
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 80px -20px rgba(15,23,42,.45), 0 20px 40px -20px rgba(109,40,217,.3);
  overflow: visible;
}
.modal::backdrop{
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal[open]{
  animation: modalIn .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalIn{
  from{ opacity: 0; transform: translateY(12px) scale(.96); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}
.modal__form{
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
}
.modal__close{
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.modal__close:hover{ background: var(--surface-2); color: var(--ink); }

.modal__title{ font-size: clamp(22px, 3vw, 28px); margin: 6px 0 8px; }
.modal__lead{ color: var(--ink-2); font-size: 14.5px; margin-bottom: 22px; }

.modal__field{ display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.modal__field label{ font-size: 13px; font-weight: 600; color: var(--ink); }
.modal__field input,
.modal__field select{
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.modal__field select{ appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23475569' d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 38px; }
.modal__field input:focus,
.modal__field select:focus{ outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-100); }
.modal__field input.is-invalid{ border-color: var(--red); box-shadow: 0 0 0 3px #FEE2E2; }

.modal__hint{ font-size: 12.5px; color: var(--ink-2); margin-top: 12px; text-align: center; }
.modal__hint a{ color: var(--brand); text-decoration: underline; }

.modal__done{
  text-align: center;
  padding: 12px 0 4px;
}
.modal__doneIco{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34D399, #10B981);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 12px 28px rgba(16,185,129,.35);
}
.modal__done h3{ font-size: 22px; margin: 0 0 8px; font-family: 'Manrope', sans-serif; }
.modal__done p{ color: var(--ink-2); font-size: 14.5px; margin: 0 0 20px; }

/* ---------- Anim on appear ---------- */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal{ opacity: 1; transform: none; }
}

/* ---------- Body lock when mobile menu open ---------- */
body.menu-open{ overflow: hidden; }

/* Чтобы sticky-CTA не закрывал контент в конце страницы */
@media (max-width: 899px){
  body{ padding-bottom: 80px; }
}

/* ===================================================================
   SCREENS — большие скриншоты продукта
   =================================================================== */
.screens{ padding: clamp(60px, 8vw, 100px) 0; background: var(--surface); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.screens__item{
  margin-bottom: clamp(40px, 6vw, 72px);
}
.screens__item:last-child{ margin-bottom: 0; }
.screens__head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.screens__head .chip{ margin-bottom: 12px; }
.screens__head h3{ margin-bottom: 12px; }
.screens__head p{ color: var(--ink-2); font-size: clamp(15px, 1.2vw, 17px); }
.screens__shot{
  position: relative;
  border-radius: 18px;
  box-shadow: 0 30px 80px -20px rgba(15,23,42,.18), 0 10px 24px rgba(15,23,42,.06);
  overflow: hidden;
  background: #fff;
}

/* Top window bar with user */
.mock__bar--app{
  height: 44px;
  padding: 0 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mock__user{
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.mock__user .avatar{ width: 24px; height: 24px; font-size: 11px; }
.mock--screen{ box-shadow: none; border: 1px solid var(--border); }

/* ===== Screen 1: Today / app layout with sidebar ===== */
.screen{
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 380px;
  background: #fff;
}
@media (max-width: 720px){
  .screen{ grid-template-columns: 1fr; }
  .screen__side{ display: none; }
}
.screen__side{
  background: #FAFAFA;
  border-right: 1px solid var(--border-2);
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.screen__nav{
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: default;
}
.screen__nav--active{ background: var(--brand-50); color: var(--brand); font-weight: 600; }
.screen__navIco{ color: currentColor; display: inline-flex; }
.screen__navBadge{
  margin-left: auto;
  font-size: 11px; font-weight: 700;
  background: var(--brand);
  color: #fff;
  padding: 1px 7px;
  border-radius: 999px;
}
.screen__main{ padding: 22px 26px; }

.today__head{
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.today__h{ font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); margin: 0; }
.today__sub{ color: var(--ink-2); font-size: 13.5px; margin-top: 4px; }
.today__quick{ display: flex; gap: 8px; }
.today__chip{
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
.today__chip--violet{ background: var(--brand); color: #fff; }
.today__chip--ghost{ background: #fff; border: 1px solid var(--border); color: var(--ink); }

.today__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px){ .today__grid{ grid-template-columns: 1.1fr 1fr 1fr; } }

.widget{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.widget--urgent{ border-color: var(--brand-200); background: linear-gradient(180deg, #fff, var(--brand-50)); }
.widget__head{ display: flex; align-items: center; justify-content: space-between; }
.widget__title{ font-size: 13px; font-weight: 700; color: var(--ink); }
.widget__count{
  font-size: 11px; font-weight: 700;
  background: var(--surface-2); color: var(--ink-2);
  padding: 2px 8px; border-radius: 999px;
}
.widget__count--red{ background: #FEE2E2; color: #B91C1C; }
.widget__count--violet{ background: var(--brand-100); color: var(--brand); }
.widget__list{ display: flex; flex-direction: column; gap: 10px; }
.widget__row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-2);
}
.widget--urgent .widget__row{ border-color: transparent; background: rgba(255,255,255,.85); }
.widget__txt b{ display: block; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.widget__txt small{ display: block; color: var(--ink-3); font-size: 11.5px; line-height: 1.3; margin-top: 2px; }
.widget__time{
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--surface);
  padding: 3px 8px;
  border-radius: 6px;
}
.widget__time--red{ background: #FEE2E2; color: #B91C1C; }
.widget__row--more{ justify-content: center; grid-template-columns: 1fr; text-align: center; }
.widget__row--more small{ color: var(--brand); font-weight: 600; }
.widget__src{
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: #DBEAFE;
  color: #1D4ED8;
  padding: 3px 7px;
  border-radius: 6px;
}
.widget__src--violet{ background: var(--brand-100); color: var(--brand); }

/* ===== Screen 2: Vacancies table ===== */
.vacs{ padding: 20px 22px; background: #fff; overflow-x: auto; }
.vacs__head{
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.vacs__tabs{ display: flex; gap: 4px; }
.vacs__tab{
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.vacs__tab em{
  font-style: normal;
  font-size: 11px;
  background: var(--surface-2);
  color: var(--ink-3);
  padding: 1px 7px;
  border-radius: 999px;
}
.vacs__tab--active{ background: var(--brand-50); color: var(--brand); }
.vacs__tab--active em{ background: var(--brand); color: #fff; }
.vacs__actions{ display: flex; gap: 8px; flex-wrap: wrap; }
.vacs__filter{
  padding: 7px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.vacs__btn{
  padding: 7px 14px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.vacs__table{
  display: flex; flex-direction: column; gap: 2px;
  min-width: 720px;
}
.vacs__row{
  display: grid;
  grid-template-columns: 2fr 1fr 1.1fr 1fr 1.3fr .8fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
}
.vacs__row--head{
  background: var(--surface);
  border-color: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 10px 14px;
}
.vacs__row--warn{ border-color: #FDE68A; background: #FFFBEB; }
.vacs__name b{ display: block; font-weight: 600; color: var(--ink); }
.vacs__name small{ display: block; color: var(--ink-3); font-size: 11.5px; margin-top: 2px; }
.vacs__warn{ color: #B45309; font-style: normal; font-weight: 600; }
.vacs__mgr{ display: inline-flex; align-items: center; gap: 8px; }
.vacs__mgr .avatar{ width: 24px; height: 24px; font-size: 10.5px; }
.vacs__chip{
  display: inline-block;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  background: var(--brand-100);
  color: var(--brand-700);
  border-radius: 999px;
}
.vacs__chip--pink{ background: #FCE7F3; color: #BE185D; }
.vacs__chip--mint{ background: #CFFAFE; color: #0E7490; }
.vacs__chip--amber{ background: #FEF3C7; color: #92400E; }
.vacs__funnel{ display: flex; gap: 3px; }
.vacs__dot{ width: 14px; height: 6px; border-radius: 3px; background: var(--surface-2); }
.vacs__dot--blue{ background: var(--blue); }
.vacs__dot--violet{ background: var(--brand); }
.vacs__dot--amber{ background: var(--amber); }
.vacs__dot--green{ background: var(--green); }
.vacs__dot--off{ background: var(--surface-2); }

/* ===== Screen 3: Big analytics ===== */
.big-ana{ padding: 22px 26px; background: #fff; }
.big-ana__head{
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.big-ana__h{ font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); margin: 0; }
.big-ana__sub{ color: var(--ink-2); font-size: 13.5px; margin-top: 4px; }
.big-ana__tabs{
  display: inline-flex; gap: 4px;
  background: var(--surface);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.big-ana__tab{
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 7px;
}
.big-ana__tab--active{ background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(15,23,42,.08); }

.big-ana__kpis{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media (min-width: 720px){ .big-ana__kpis{ grid-template-columns: repeat(4, 1fr); } }
.kpi{
  background: var(--surface);
  border-radius: 10px;
  padding: 14px;
}
.kpi small{ display: block; color: var(--ink-3); font-size: 11.5px; font-weight: 500; }
.kpi b{ display: block; font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; color: var(--ink); margin: 4px 0; }

.big-ana__row{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px){ .big-ana__row{ grid-template-columns: 1.4fr 1fr; } }

.big-ana__funnel h5,
.big-ana__card h5{
  margin: 0 0 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.bfunnel{ display: flex; flex-direction: column; gap: 8px; }
.bfunnel__bar{
  position: relative;
  height: 36px;
  background: linear-gradient(90deg, #DDD6FE, #C4B5FD);
  border-radius: 8px;
  width: var(--w, 100%);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
  transition: width .4s ease;
}
.bfunnel__bar--win{ background: linear-gradient(90deg, #8B5CF6, #6D28D9); }
.bfunnel__bar--win .bfunnel__label,
.bfunnel__bar--win .bfunnel__num{ color: #fff; }
.bfunnel__label{ font-size: 12.5px; font-weight: 600; color: var(--ink); }
.bfunnel__num{ font-size: 12px; font-weight: 700; color: var(--ink-2); }
.bfunnel__num em{ font-style: normal; font-weight: 600; opacity: .7; margin-left: 4px; }

.big-ana__side{ display: flex; flex-direction: column; gap: 14px; }
.big-ana__card{
  background: var(--surface);
  border-radius: 12px;
  padding: 14px;
}

.donut{ position: relative; display: flex; justify-content: center; align-items: center; }
.donut__center{
  position: absolute;
  text-align: center;
}
.donut__center b{ display: block; font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; color: var(--ink); }
.donut__center small{ display: block; color: var(--ink-3); font-size: 10.5px; }
.big-ana__legend{ margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.big-ana__legend li{ display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink); }
.big-ana__legend li span:last-child{ margin-left: auto; color: var(--ink-2); font-weight: 600; }

.rec-row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-2);
  margin-bottom: 6px;
}
.rec-row:last-child{ margin-bottom: 0; }
.rec-row .avatar{ width: 28px; height: 28px; font-size: 12px; }
.rec-txt b{ display: block; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.rec-txt small{ display: block; color: var(--ink-3); font-size: 11.5px; margin-top: 2px; }
.rec-medal{
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 800;
}
.rec-medal--gold{ background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #fff; }
.rec-medal--silver{ background: linear-gradient(135deg, #CBD5E1, #94A3B8); color: #fff; }
