:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-tint: #eef3fb;
  --bg-mint: #e8f7f1;
  --bg-sand: #fff6ec;
  --bg-lilac: #f1eefb;
  --ink: #0e1726;
  --ink-soft: #475368;
  --ink-mute: #5d6577;
  --line: #e4e9f0;
  --line-soft: #eef1f6;
  --primary: #0a84ff;
  --primary-deep: #006fe6;
  --primary-tint: #e6f2ff;
  --green: #10b981;
  --green-soft: #d1f4e5;
  --red: #e14b4b;
  --yellow: #f0a82a;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm:
    0 1px 2px rgba(14, 23, 38, 0.04), 0 1px 3px rgba(14, 23, 38, 0.04);
  --shadow:
    0 4px 24px -8px rgba(14, 23, 38, 0.08),
    0 2px 8px -2px rgba(14, 23, 38, 0.04);
  --shadow-lg:
    0 24px 60px -20px rgba(14, 23, 38, 0.16),
    0 6px 20px -8px rgba(14, 23, 38, 0.06);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 700;
}
h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
}
p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}
.lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.wrap {
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
section {
  padding: 88px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-tint);
  color: var(--primary-deep);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 50;
}
.nav-inner {
  max-width: 1336px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.logo-img {
  height: 21px;
  width: 151px;
  display: block;
}
footer .logo-img {
  filter: brightness(0) invert(1);
  height: 21px;
}
.nav-actions .lang-dropdown,
.nav-actions .nav-cta {
  display: none !important;
}
body[data-mode="candidate"] .nav-cta[data-show-when="candidate"],
body[data-mode="business"] .nav-cta[data-show-when="business"] {
  display: none !important;
}
.nav-actions .nav-link {
  padding: 9px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
  text-wrap: nowrap;
  color: var(--ink);
  background: #fff;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.nav-actions .nav-link:hover {
  background: var(--bg-soft);
  border-color: var(--ink-mute);
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a {
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 10px;
}
.nav-link:hover {
  color: var(--ink);
}
.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--primary);
}
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.96rem;
  transition:
    transform 0.15s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px -2px rgba(46, 107, 246, 0.4);
}
.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(46, 107, 246, 0.45);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-1px);
}
.btn .arrow {
  transition: transform 0.15s;
}
.btn:hover .arrow {
  transform: translateX(3px);
}
.hero {
  padding-top: 48px;
  padding-bottom: 72px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 span.acc {
  color: var(--primary);
}
.hero h1 span.hl {
  display: inline-block;
  position: relative;
}
.hero h1 span.hl::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.05em;
  height: 0.25em;
  background: rgba(46, 107, 246, 0.18);
  z-index: -1;
  border-radius: 4px;
}
.hero p.lead {
  margin-top: 24px;
  max-width: 560px;
}
.hero-bullets {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--ink);
}
.hero-bullet .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  color: var(--green);
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(14, 23, 38, 0.08);
  display: block;
  background: var(--bg-soft);
}
.hero-trust .av:first-child {
  margin-left: 0;
}
.hero-trust span.av {
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--bg-soft);
}
.hero-illu {
  position: relative;
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-illu::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.15) 0%,
    transparent 70%
  );
}
.hero-illu::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.12) 0%,
    transparent 70%
  );
}
.profile-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pc-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
}
.pc-name {
  font-weight: 700;
  font-size: 1.05rem;
}
.pc-role {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.pc-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 8px;
}
.pc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bg-soft);
  border-radius: 12px;
  overflow: hidden;
}
.pc-stat {
  padding: 12px 14px;
  border-right: 1px solid var(--line-soft);
}
.pc-stat:last-child {
  border-right: none;
}
.pc-stat .l {
  font-size: 0.7rem;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pc-stat .v {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}
.pc-stat .v .acc {
  color: var(--primary);
}
.pc-skills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-skill {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.85rem;
}
.pc-skill .sn {
  font-weight: 500;
}
.pc-skill .sb {
  grid-column: 1/-1;
  height: 6px;
  background: var(--bg-soft);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.pc-skill .sb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 3px;
}
.pc-skill[data-v="92"] .sb::after {
  width: 92%;
}
.pc-skill[data-v="84"] .sb::after {
  width: 84%;
}
.pc-skill[data-v="76"] .sb::after {
  width: 76%;
}
.pc-skill .sv {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
}
.pc-verify {
  background: var(--bg-mint);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}
.pc-verify svg {
  flex-shrink: 0;
  color: var(--green);
}
.float-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
}
.fb-1 {
  top: 50px;
  right: 30px;
  animation: float 6s ease-in-out infinite;
}
.fb-2 {
  bottom: 60px;
  left: 30px;
  animation: float 6s ease-in-out infinite 1.5s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.fb-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--bg-mint);
  color: var(--green);
}
.fb-2 .fb-icon {
  background: var(--bg-tint);
  color: var(--primary);
}
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-illu {
    min-height: 460px;
    padding: 32px 20px;
  }
  .float-badge {
    display: none;
  }
}
.stats {
  background: var(--ink);
  color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.25) 0%,
    transparent 70%
  );
}
.stats-inner {
  position: relative;
  z-index: 2;
}
.stats-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.stats-head h2 {
  color: #fff;
  max-width: 600px;
}
.stats-head p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat {
  padding: 32px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat:last-child {
  border-right: none;
}
.stat .num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .num .plus {
  color: var(--primary);
}
.stat .lb {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin-top: 0;
}
@media (max-width: 880px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat {
    padding: 28px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.benefits-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.benefits-head p {
  margin-top: 14px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.benefit-icon.b1 {
  background: var(--bg-tint);
  color: var(--primary);
}
.benefit-icon.b2 {
  background: var(--bg-mint);
  color: var(--green);
}
.benefit-icon.b3 {
  background: var(--bg-sand);
  color: #d97706;
}
.benefit-icon.b4 {
  background: var(--bg-lilac);
  color: #7c3aed;
}
.benefit h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.benefit p {
  font-size: 0.92rem;
}
@media (max-width: 980px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}
.about {
  background: var(--bg-soft);
  padding: 88px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-left h2 {
  margin-bottom: 20px;
}
.about-left p {
  margin-bottom: 14px;
  font-size: 1.04rem;
}
.about-left p strong {
  color: var(--ink);
  font-weight: 700;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.about-tag {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-soft);
}
.about-cta {
  margin-top: 32px;
}
.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.about-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.about-card-head .label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-card-head .ver {
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--line);
  padding-left: 24px;
  margin-left: 8px;
}
.tl-row {
  position: relative;
  padding: 14px 0;
}
.tl-row::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 22px;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 50%;
}
.tl-row.now::before {
  background: var(--primary);
}
.tl-row .yr {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.tl-row .ev {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2px;
  color: var(--ink);
}
.trusted {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trusted .l {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.trusted-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trusted-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trusted-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}
@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.how-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.how-head p {
  margin-top: 14px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.how-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.how-step h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.how-step p {
  font-size: 0.95rem;
}
.how-step .checks {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-step .check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink);
}
.how-step .check-row svg {
  flex-shrink: 0;
  color: var(--green);
}
@media (max-width: 880px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}
.trust {
  background: var(--ink);
  color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.trust-inner {
  position: relative;
  z-index: 2;
}
.trust-head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.trust-head h2 {
  color: #fff;
  max-width: 600px;
}
.trust-head .lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
}
.trust-head .eyebrow {
  background: rgba(46, 107, 246, 0.18);
  color: #7fa9ff;
}
.trust-head .eyebrow .dot {
  background: #7fa9ff;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.trust-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.02rem;
}
.tc-item:last-child {
  border-bottom: none;
}
.tc-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}
.verdict {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.verdict .v-l {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.v-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.v-row:first-of-type {
  border-top: none;
  padding-top: 0;
}
.v-row:last-of-type {
  padding-bottom: 0;
}
.v-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}
.v-dot.green {
  background: #10b981;
}
.v-dot.yellow {
  background: #f0a82a;
}
.v-dot.red {
  background: #e14b4b;
}
.v-row .v-t {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.v-row .v-c {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
@media (max-width: 880px) {
  .trust-head,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trust-head .lead {
    padding-top: 0 !important;
  }
}
.product {
  background: var(--bg-soft);
  padding: 88px 0;
}
.product-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.product-head p {
  margin-top: 14px;
}
.cabinet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cab-bar {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
}
.cab-dots {
  display: flex;
  gap: 6px;
}
.cab-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line);
}
.cab-url {
  flex: 1;
  font-size: 0.82rem;
  color: var(--ink-mute);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 14px;
  text-align: center;
  font-weight: 500;
}
.cab-url::before {
  content: "🔒 ";
  font-size: 0.78rem;
}
.cab-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 540px;
}
.cab-left {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.cab-search {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
}
.cab-search-input {
  flex: 1;
  font-size: 0.86rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.cab-search-input::before {
  content: "⌕ ";
  color: var(--ink-mute);
}
.cab-filter-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-soft);
}
.cab-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  background: var(--bg-soft);
  border-radius: 99px;
  color: var(--ink-soft);
}
.chip.active {
  background: var(--primary);
  color: #fff;
}
.cand-row {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
}
.cand-row.active {
  background: var(--bg-tint);
}
.cand-row:hover {
  background: var(--bg-soft);
}
.cand-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.92rem;
}
.cand-row.active .cand-avatar {
  background: var(--primary);
  color: #fff;
}
.cand-info .name {
  font-weight: 700;
  font-size: 0.96rem;
}
.cand-info .stack {
  font-size: 0.74rem;
  color: var(--ink-mute);
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cand-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.cand-meta .lvl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.cand-meta .sd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.cand-meta .sd.green {
  background: var(--green);
}
.cand-meta .sd.yellow {
  background: var(--yellow);
}
.cab-right {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.cab-detail-head {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.det-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
}
.det-name h4 {
  font-size: 1.18rem;
  font-weight: 700;
}
.det-name .role {
  font-size: 0.86rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.det-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  padding: 7px 14px;
  background: var(--bg-mint);
  border-radius: 99px;
}
.det-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.cab-detail-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.det-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.det-cell {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.det-cell .l {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.det-cell .v {
  font-size: 1.08rem;
  font-weight: 700;
}
.det-cell .v .acc {
  color: var(--primary);
}
.det-skills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.det-skills .l {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sk-row {
  display: grid;
  grid-template-columns: 130px 1fr 36px;
  gap: 12px;
  align-items: center;
}
.sk-row .sn {
  font-size: 0.92rem;
  font-weight: 600;
}
.sk-bar {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.sk-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 3px;
}
.sk-row[data-v="92"] .sk-bar::after {
  width: 92%;
}
.sk-row[data-v="84"] .sk-bar::after {
  width: 84%;
}
.sk-row[data-v="76"] .sk-bar::after {
  width: 76%;
}
.sk-row[data-v="68"] .sk-bar::after {
  width: 68%;
}
.sk-row .sv {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
}
.det-verify {
  background: var(--bg-mint);
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.det-verify .vl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.det-verify .vn {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
}
.det-verify .vb {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  padding: 5px 10px;
  background: #fff;
  border-radius: 8px;
  letter-spacing: 0.04em;
}
.cab-actions {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background: var(--bg-soft);
}
.cab-btn {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.cab-btn.primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
@media (max-width: 980px) {
  .cab-body {
    grid-template-columns: 1fr;
  }
  .cab-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .det-grid {
    grid-template-columns: 1fr;
  }
}
.why-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.why-head p {
  margin-top: 14px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.why-card.w1 {
  background: linear-gradient(135deg, var(--bg-tint) 0%, #dce5fb 100%);
}
.why-card.w2 {
  background: linear-gradient(135deg, var(--bg-mint) 0%, #d0efe0 100%);
}
.why-card.w3 {
  background: linear-gradient(135deg, var(--bg-sand) 0%, #fcebd3 100%);
}
.why-card .pre {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.why-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.why-card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.why-card .icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
}
.why-card.w1 .icon {
  color: var(--primary);
}
.why-card.w2 .icon {
  color: var(--green);
}
.why-card.w3 .icon {
  color: #d97706;
}
@media (max-width: 880px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.roles {
  background: var(--bg-soft);
  padding: 88px 0;
}
.roles-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.role-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  min-height: 200px;
}
.role-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.role-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--bg-soft);
}
.role-icon svg {
  display: block;
}
.role-card .role-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.role-card .nm {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}
.role-card .stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}
.role-card .stack span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 3px 8px;
  background: var(--bg-soft);
  border-radius: 6px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.roles-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.roles-foot strong {
  color: var(--ink);
  font-weight: 700;
}
@media (max-width: 1100px) {
  .roles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 780px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-head p {
  margin-top: 14px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tier.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%);
  box-shadow: var(--shadow);
}
.tier.featured::before {
  content: "Популярный";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}
.tier h3 {
  font-size: 1.5rem;
  font-weight: 800;
}
.tier .price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier .price .per {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-mute);
  margin-left: 4px;
}
.tier .desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  min-height: 48px;
}
.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
}
.tier-list li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}
.tier .btn {
  justify-content: center;
  margin-top: auto;
}
@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.faq-head {
  text-align: center;
  margin-bottom: 44px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--primary);
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.04rem;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    transform 0.2s,
    background 0.2s;
}
.faq-item[open] summary .ic {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item .a {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
.final {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.25) 0%,
    transparent 60%
  );
}
.final::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.18) 0%,
    transparent 60%
  );
}
.final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.final h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  font-weight: 800;
}
.final p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.final .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.final .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.final .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}
.footer-inner {
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
footer .logo {
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
  transition: color 0.15s;
}
footer .footer-links a:hover,
footer .footer-links a:focus {
  color: #fff !important;
  text-decoration: none !important;
}
.services-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.services-head p {
  margin-top: 14px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.svc-card.s1::before {
  background: var(--primary);
}
.svc-card.s2::before {
  background: var(--green);
}
.svc-card.s3::before {
  background: #d97706;
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.svc-card.s1 .svc-icon {
  background: var(--bg-tint);
  color: var(--primary);
}
.svc-card.s2 .svc-icon {
  background: var(--bg-mint);
  color: var(--green);
}
.svc-card.s3 .svc-icon {
  background: var(--bg-sand);
  color: #d97706;
}
.svc-card .svc-tag {
  display: inline-flex;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border-radius: 6px;
}
.svc-card h3 {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.svc-card .svc-desc {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.svc-card .svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.svc-card .svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink);
}
.svc-card .svc-list li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 3px;
}
.svc-card .svc-cta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-card .svc-cta .price {
  font-size: 0.86rem;
  color: var(--ink-mute);
  font-weight: 600;
}
.svc-card .svc-cta a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card .svc-cta a:hover .arrow {
  transform: translateX(3px);
}
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.paths-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.paths-head p {
  margin-top: 14px;
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.path-card.subscription {
  background: linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%);
  border: 2px solid var(--primary);
}
.path-card.project {
  background: linear-gradient(180deg, #fff 0%, var(--bg-mint) 100%);
  border: 2px solid var(--green);
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.path-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  width: fit-content;
}
.path-card.subscription .path-tag {
  background: var(--primary);
  color: #fff;
}
.path-card.project .path-tag {
  background: var(--green);
  color: #fff;
}
.path-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.path-card .path-for {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border-left: 3px solid;
}
.path-card.subscription .path-for {
  border-color: var(--primary);
}
.path-card.project .path-for {
  border-color: var(--green);
}
.path-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.path-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink);
}
.path-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.path-card.subscription .path-list li svg {
  color: var(--primary);
}
.path-card.project .path-list li svg {
  color: var(--green);
}
.path-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.path-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.path-price strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.path-price .from {
  font-size: 0.8rem;
  color: var(--ink-mute);
  font-weight: 500;
}
@media (max-width: 880px) {
  .paths-grid {
    grid-template-columns: 1fr;
  }
}
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 32px auto 0;
  padding: 5px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 99px;
}
.billing-toggle button {
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.billing-toggle button:hover {
  color: var(--ink);
}
.billing-toggle button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.billing-toggle button .save {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 99px;
  background: var(--bg-mint);
  color: var(--green);
}
.billing-toggle button.active .save {
  background: var(--green);
  color: #fff;
}
@media (max-width: 540px) {
  .billing-toggle {
    flex-direction: column;
    width: 100%;
    border-radius: 14px;
    padding: 6px;
  }
  .billing-toggle button {
    width: 100%;
    justify-content: center;
  }
}
.pricing-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.tier-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.tier-v2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.tier-v2.featured-team {
  position: relative;
  border: 2px solid #7c3aed;
  background: #fff;
  box-shadow:
    0 12px 32px -16px rgba(124, 58, 237, 0.18),
    0 4px 12px -4px rgba(14, 23, 38, 0.06);
  background-position: 0 0;
  background-size: 100% 4px;
  background-repeat: no-repeat;
}
.tier-v2.featured-team .tier-name {
  color: var(--ink);
}
.tier-v2.featured-team .tier-for {
  color: var(--ink-mute);
}
.tier-v2.featured-team .amount {
  color: var(--ink);
}
.tier-v2.featured-team .per {
  color: var(--ink-mute);
}
.tier-v2.featured-team .tier-billed {
  color: var(--ink-mute);
}
.tier-v2.featured-team .tier-includes {
  font-size: 0.82rem;
  font-weight: 700;
  color: #7c3aed;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.tier-v2.featured-team .tier-list-v2 li {
  color: var(--ink);
}
.tier-v2.featured-team .tier-list-v2 li .lim.check {
  color: #7c3aed;
}
.tier-v2.featured-team::before {
  content: none;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 99px;
  white-space: nowrap;
  z-index: 3;
}
.tier-v2.featured-team .btn-primary {
  background: #7c3aed;
}
.tier-v2.featured-team .btn-primary:hover {
  background: #6d28d9;
}
.tier-v2.featured-team .tier-key-stat {
  background: rgba(124, 58, 237, 0.08);
}
.tier-v2.featured-team .tier-key-stat .v {
  color: #7c3aed;
}
.tier-v2.featured-team .tier-key-stat .l {
  color: var(--ink-soft);
}
.tier-v2.featured-team .tier-usecase {
  border-top-color: #7c3aed;
  background: var(--bg-soft);
  color: var(--ink-soft);
}
.tier-v2.featured-team .tier-usecase strong {
  color: var(--ink);
}
.tier-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tier-name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tier-for {
  font-size: 0.92rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.tier-price-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0;
}
.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tier-price-row .amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tier-price-row .per {
  font-size: 1rem;
  color: var(--ink-mute);
  font-weight: 600;
}
.tier-price-row .strike {
  font-size: 1.1rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 600;
}
.tier-billed {
  font-size: 0.84rem;
  color: var(--ink-mute);
  font-weight: 500;
  min-height: 1.2em;
}
.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  background: var(--bg-mint);
  border-radius: 12px;
  border-left: 3px solid var(--green);
}
.guarantee-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
}
.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guarantee-text strong {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
}
.guarantee-text span {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.tier-list-v2 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}
.tier-list-v2 li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
}
.tier-list-v2 .lim {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  background: var(--bg-tint);
  color: var(--primary);
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 62px;
  text-align: center;
}
.tier-list-v2 .lim.unlim {
  background: var(--bg-mint);
  color: var(--green);
}
.tier-list-v2 .lim.check {
  background: transparent;
  color: var(--green);
  padding: 0;
  min-width: auto;
}
.tier-list-v2 .lim.check svg {
  display: block;
}
.tier-includes {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 8px;
}
.tier-cta-v2 {
  margin-top: auto;
  padding-top: 24px;
  height: 100px;
}
.tier-cta-v2 .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 1100px) {
  .pricing-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 880px) {
  .pricing-grid-v2 {
    grid-template-columns: 1fr;
  }
  .pricing-grid-v3 {
    grid-template-columns: 1fr;
  }
  .tier-v2 {
    padding: 32px 28px;
  }
}
.hiring-featured.tier-v2 .tier-cta-v2 {
  height: 110px;
}
.tier-v2.free {
  border: 2px solid var(--green);
  position: relative;
}
.tier-v2.free::before {
  content: none;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.tier-v2.free .tier-price-row .amount {
  color: var(--green);
}
.tier-v2.free .guarantee {
  background: rgba(16, 185, 129, 0.08);
  border-left-color: var(--green);
}
.threat-ticker {
  margin-top: 32px;
  margin-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font);
}
.threat-ticker .l {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  flex-shrink: 0;
}
.threat-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
}
.threat-name::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e14b4b;
  box-shadow: 0 0 0 4px rgba(225, 75, 75, 0.15);
}
@media (max-width: 780px) {
  .threat-ticker {
    gap: 18px;
    padding: 14px 0;
  }
  .threat-name {
    font-size: 0.92rem;
  }
}
.detect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.detect-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.detect-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(46, 107, 246, 0.4);
  transform: translateY(-3px);
}
.detect-card .dc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(46, 107, 246, 0.18);
  color: #7fa9ff;
  display: grid;
  place-items: center;
}
.detect-card .dc-tag {
  position: absolute;
  top: 28px;
  right: 26px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border: 1px solid rgba(225, 75, 75, 0.4);
  color: #ff9494;
  border-radius: 99px;
  background: rgba(225, 75, 75, 0.08);
}
.detect-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.detect-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}
.detect-card .dc-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}
.detect-card .dc-examples span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1100px) {
  .detect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .detect-grid {
    grid-template-columns: 1fr;
  }
}
.detect-stripe {
  margin-top: 8px;
  margin-bottom: 48px;
  background: linear-gradient(
    90deg,
    rgba(46, 107, 246, 0.12) 0%,
    rgba(46, 107, 246, 0.04) 100%
  );
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}
.detect-stripe .ds-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(46, 107, 246, 0.25);
  color: #7fa9ff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.detect-stripe .ds-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detect-stripe .ds-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.detect-stripe .ds-line {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.detect-stripe .ds-line strong {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 780px) {
  .detect-stripe {
    grid-template-columns: 1fr;
    padding: 20px 22px;
  }
}
.methodology-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.candidates {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cand-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cand-head .eyebrow {
  background: var(--bg-mint);
  color: var(--green);
}
.cand-head .eyebrow .dot {
  background: var(--green);
}
.cand-head h2 {
  margin-top: 0;
}
.cand-head h2 .acc {
  color: var(--green);
}
.cand-head .lead {
  margin-top: 14px;
}
.cand-proof {
  max-width: 920px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.proof-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-side.left {
  align-items: flex-start;
  text-align: left;
}
.proof-side.right {
  align-items: flex-end;
  text-align: right;
}
.proof-num {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.proof-num.one {
  color: var(--ink);
}
.proof-num.many {
  color: var(--green);
}
.proof-label {
  font-size: 0.96rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.proof-arrow {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--primary);
}
.proof-arrow svg {
  display: block;
}
.proof-time {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.proof-time strong {
  color: var(--ink);
  font-weight: 700;
}
@media (max-width: 780px) {
  .cand-proof {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .proof-side.left,
  .proof-side.right {
    align-items: center;
    text-align: center;
  }
  .proof-arrow {
    transform: rotate(90deg);
  }
}
.cand-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto 72px;
  position: relative;
}
.cand-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--line) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.cand-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.cand-step .step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}
.cand-step .step-time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--bg-tint);
  color: var(--primary);
  border-radius: 99px;
}
.cand-step h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cand-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 280px;
  line-height: 1.55;
}
@media (max-width: 780px) {
  .cand-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cand-steps::before {
    display: none;
  }
}
.cand-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}
.cb-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.cb-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.cb-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--bg-mint);
  color: var(--green);
}
.cb-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cb-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.cb-card .cb-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--bg-soft);
  color: var(--ink-mute);
  border-radius: 6px;
  width: fit-content;
}
@media (max-width: 980px) {
  .cand-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cand-benefits {
    grid-template-columns: 1fr;
  }
}
.cand-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 0;
}
.cp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.cp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.cp-card.featured {
  border: 2px solid var(--green);
}
.cp-card.featured::before {
  content: none;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.cp-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border-radius: 99px;
  width: fit-content;
}
.cp-card.featured .cp-tag {
  background: #fff;
  color: var(--green);
}
.cp-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cp-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.cp-price .amt {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cp-price .free {
  color: var(--green);
}
.cp-price .per {
  font-size: 0.92rem;
  color: var(--ink-mute);
  font-weight: 600;
}
.cp-meta {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.cp-meta strong {
  color: var(--ink);
  font-weight: 700;
}
.cp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}
.cp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  line-height: 1.5;
}
.cp-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green);
}
.cp-list li.dim {
  color: var(--ink-mute);
}
.cp-list li.dim svg {
  color: var(--ink-mute);
}
.cp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}
.cp-features li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}
.cp-features li .ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--bg-mint);
  color: var(--green);
}
.cp-features li .lb {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.2;
}
.cp-features li .sub {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 2px;
  line-height: 1.45;
}
.cp-cta {
  margin-top: auto;
  padding-top: 18px;
}
.cp-cta .btn {
  width: 100%;
  justify-content: center;
}
.cert-priority {
  margin-top: 48px;
  background: linear-gradient(135deg, #0e1726 0%, #16365a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.cert-priority::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.25) 0%,
    transparent 70%
  );
}
.cert-priority-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cert-priority-text {
  position: relative;
  z-index: 1;
}
.cert-priority-text .lab {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.cert-priority-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cert-priority-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  line-height: 1.5;
}
.cert-priority-stat {
  position: relative;
  z-index: 1;
  text-align: right;
}
.cert-priority-stat .big {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #34d399;
}
.cert-priority-stat .sm {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-weight: 500;
}
.modules-preview {
  margin-top: 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow:
    0 24px 60px -20px rgba(14, 23, 38, 0.1),
    0 4px 12px rgba(14, 23, 38, 0.04);
  padding: 36px 36px;
}
.modules-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.modules-head h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.modules-head p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 6px;
  max-width: 440px;
}
.modules-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background: var(--bg-mint);
  color: var(--green);
  border-radius: 99px;
  white-space: nowrap;
}
.modules-count strong {
  font-weight: 800;
  font-size: 0.92rem;
}
.modules-count .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.modules-example-tag {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: rgba(46, 107, 246, 0.06);
  border: 1px dashed rgba(46, 107, 246, 0.4);
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.modules-example-tag svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 3px;
}
.modules-example-tag strong {
  color: var(--primary);
  font-weight: 700;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.module-chip {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 3px solid var(--green);
}
.module-chip .num {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
}
.module-chip .nm {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}
@media (max-width: 880px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 780px) {
  .cand-paths {
    grid-template-columns: 1fr;
  }
  .cert-priority {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 28px 24px;
    gap: 18px;
  }
  .cert-priority-stat {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}
.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 99px;
}
.mode-toggle button,
.mode-toggle a {
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.mode-toggle button:hover,
.mode-toggle a:hover {
  color: var(--ink);
}
.mode-toggle button.active,
.mode-toggle a.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.mode-toggle button.active[data-mode="candidate"],
.mode-toggle a.active[data-mode="candidate"] {
  color: var(--green);
}
[data-show-when] {
  display: none;
}
body[data-mode="business"] [data-show-when="business"] {
  display: block;
}
body[data-mode="candidate"] [data-show-when="candidate"] {
  display: block;
}
body[data-mode="business"] .nav-links[data-show-when="business"] {
  display: flex;
}
body[data-mode="candidate"] .nav-links[data-show-when="candidate"] {
  display: flex;
}
body[data-mode="business"] .nav-cta[data-show-when="business"] {
  display: inline-flex;
}
body[data-mode="candidate"] .nav-cta[data-show-when="candidate"] {
  display: inline-flex;
}
@media (max-width: 1100px) {
  body[data-mode="business"] .nav-links[data-show-when="business"],
  body[data-mode="candidate"] .nav-links[data-show-when="candidate"] {
    display: none;
  }
}
body[data-mode="candidate"] {
  background: var(--bg);
}
body[data-mode="candidate"] nav {
  background: rgba(255, 255, 255, 0.85);
}
body[data-mode="candidate"] .nav-cta {
  background: var(--green);
}
body[data-mode="candidate"] .nav-cta:hover {
  background: #0e9f6e;
}
.cand-hero {
  padding-top: 56px;
  padding-bottom: 112px;
}
.cand-hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}
.cand-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin-bottom: 18px;
}
.cand-hero h1 .acc {
  color: var(--primary);
}
.cand-hero h1 .hl {
  display: inline-block;
  position: relative;
}
.cand-hero h1 .hl::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.05em;
  height: 0.25em;
  background: rgba(16, 185, 129, 0.18);
  z-index: -1;
  border-radius: 4px;
}
.cand-hero .eyebrow {
  background: var(--bg-mint);
  color: var(--green);
}
.cand-hero .eyebrow .dot {
  background: var(--green);
}
.cand-hero .btn-primary {
  background: var(--primary);
  box-shadow: 0 4px 14px -2px rgba(10, 132, 255, 0.4);
}
.cand-hero .btn-primary:hover {
  background: var(--primary-deep);
  box-shadow: 0 8px 20px -4px rgba(10, 132, 255, 0.45);
}
.cand-hero .check {
  background: var(--bg-mint);
  color: var(--green);
}
.hero-chips {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.hero-chip-icon {
  flex-shrink: 0;
  color: var(--primary);
  display: grid;
  place-items: center;
}
.hero-chip-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.hero-chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 2px;
}
.hero-chip-text .t {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.hero-chip-text .s {
  font-size: 0.82rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.cand-hero .hero-bullets {
  margin-top: 24px;
  gap: 14px;
}
.cand-hero .hero-bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}
.cand-hero .hero-bullet .check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--primary-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cand-hero .hero-bullet .check svg {
  width: 18px;
  height: 18px;
}
.cand-hero .hero-bullet .bt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
  min-width: 0;
}
.cand-hero .hero-bullet .bt .lb {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.cand-hero .hero-bullet .bt .sb {
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.cand-hero .hero-trust {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.hero-trust-row strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-trust-row svg {
  flex-shrink: 0;
  color: var(--green);
  width: 16px;
  height: 16px;
}
.cand-illu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 32px 32px 32px;
}
.cand-illu .offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  padding: 0 4px;
}
.cand-illu .offers-header .ot {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cand-illu .offers-header .live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.cand-illu .offers-header .live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: liveDot 1.8s ease-in-out infinite;
}
@keyframes liveDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}
.offer-card::before {
  display: none;
}
.offer-new {
  position: absolute;
  top: 18px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}
.offer-new::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.cand-illu {
  position: relative;
  background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.cand-illu::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.15) 0%,
    transparent 70%
  );
}
.cand-illu::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.1) 0%,
    transparent 70%
  );
}
.offers-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-stack-head {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-stack-head .you-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
}
.offer-stack-head h4 {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
}
.offer-stack-head .role-line {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.offer-stack-head .badge-clear {
  margin-left: auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: var(--bg-mint);
  color: var(--green);
  border-radius: 8px;
}
.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  animation: offerSlide 0.8s ease backwards;
  position: relative;
}
.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(16, 185, 129, 0.4);
}
.offer-card:nth-child(2) {
  animation-delay: 0.2s;
}
.offer-card:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes offerSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.offer-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
  animation: livedot 2s ease-in-out infinite;
}
.offer-card-top {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 11px;
  align-items: center;
  padding-right: 18px;
}
.offer-co-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.94rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.offer-co-logo.c1 {
  background: #2e6bf6;
}
.offer-co-logo.c2 {
  background: #10b981;
}
.offer-co-logo.c3 {
  background: #f0a82a;
}
.offer-co-logo.c4 {
  background: #7c3aed;
}
.offer-co-meta .co-name {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
}
.offer-co-meta .co-time {
  font-size: 0.72rem;
  color: var(--ink-mute);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.offer-co-meta .co-time::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-mute);
  opacity: 0.6;
}
.offer-msg {
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.5;
}
.offer-msg .invite {
  font-weight: 700;
  color: var(--green);
}
.offer-msg strong {
  color: var(--ink);
  font-weight: 700;
}
.offer-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.offer-perks span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 3px 8px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border-radius: 5px;
  white-space: nowrap;
}
.offer-perks span.hot {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
}
.offer-more {
  text-align: center;
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border: 1px dashed var(--line);
}
.hero-profile {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: var(--shadow);
  position: relative;
}
.hp-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.hp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #0e9f6e);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.hp-id .hp-title {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hp-id .hp-role {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.hp-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--bg-mint);
  color: var(--green);
}
.hp-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.hp-skills {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hp-skills li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
}
.hp-skills .hp-name {
  font-weight: 600;
  color: var(--ink);
}
.hp-skills .hp-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 3px 9px;
  border-radius: 5px;
  white-space: nowrap;
}
.hp-skills .hp-tag.ok {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
}
.hp-skills .hp-tag.base {
  background: var(--bg-soft);
  color: var(--ink-soft);
}
.hp-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.hp-meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}
.hp-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}
.hp-employer {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hp-employer-lab {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hp-employer-lab::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--ink-mute);
}
.hp-employer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-employer li {
  position: relative;
  padding-left: 18px;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.4;
}
.hp-employer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
@media (max-width: 980px) {
  .cand-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cand-illu {
    min-height: 400px;
    padding: 28px 20px;
  }
  .hero-profile {
    max-width: 420px;
    margin: 0 auto;
  }
}
.cand-benefits-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 0;
}
.cb6-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.cb6-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.cb6-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--bg-mint);
  color: var(--green);
}
.cb6-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cb6-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .cand-benefits-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .cand-benefits-6 {
    grid-template-columns: 1fr;
  }
}
.cmp {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.cmp-row:last-child {
  border-bottom: none;
}
.cmp-row .cmp-cell {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink);
  border-right: 1px solid var(--line-soft);
}
.cmp-row .cmp-cell:last-child {
  border-right: none;
}
.cmp-row.head .cmp-cell {
  background: var(--bg-soft);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  padding: 18px 20px;
}
.cmp-row.head .cmp-cell.us {
  background: var(--bg-mint);
  color: var(--green);
}
.cmp-row .cmp-cell.label {
  font-weight: 600;
  background: var(--bg-soft);
}
.cmp-row .cmp-cell.value {
  justify-content: center;
  font-weight: 600;
}
.cmp-row .cmp-cell.us {
  background: rgba(16, 185, 129, 0.04);
}
.cmp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cmp-icon.yes {
  background: var(--bg-mint);
  color: var(--green);
}
.cmp-icon.no {
  background: #feeff0;
  color: var(--red);
}
.cmp-icon.partial {
  background: #fef3c7;
  color: #ca8a04;
}
.cmp-cell .cmp-text {
  font-size: 0.86rem;
}
.cmp-row .cmp-cell.us .cmp-text {
  font-weight: 700;
  color: var(--green);
}
@media (max-width: 780px) {
  .cmp-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .cmp-row .cmp-cell {
    padding: 14px 12px;
    font-size: 0.82rem;
    gap: 6px;
  }
  .cmp-row.head .cmp-cell {
    font-size: 0.74rem;
  }
  .cmp-icon {
    width: 20px;
    height: 20px;
  }
  .cmp-cell .cmp-text {
    display: none;
  }
}
.flow {
  background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-top: 0;
}
.flow-head {
  text-align: center;
  margin-bottom: 32px;
}
.flow-head .lab {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.flow-head h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--green);
  opacity: 0.25;
}
.flow-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.flow-step .fs-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 800;
}
.flow-step .fs-time {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.flow-step h4 {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.flow-step p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (max-width: 780px) {
  .flow {
    padding: 32px 24px;
  }
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .flow-steps::before {
    display: none;
  }
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.tm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tm-quote {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.tm-quote::before {
  content: "";
  display: block;
  width: 24px;
  height: 18px;
  margin-bottom: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='18' viewBox='0 0 24 18' fill='%2310B981'%3E%3Cpath d='M0 18V11C0 5 4 1 9 0v3c-3 1-5 4-5 7h5v8H0zm14 0V11c0-6 4-10 9-11v3c-3 1-5 4-5 7h5v8h-9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.tm-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tm-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-mint);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.94rem;
}
.tm-meta-text .tm-name {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.tm-meta-text .tm-role {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.tm-stat {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tm-stat::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
@media (max-width: 880px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}
.companies-strip {
  margin-top: 32px;
  text-align: center;
}
.companies-strip .lab {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.companies-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.companies-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.companies-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
}
.problem {
  padding: 88px 0;
  background: var(--bg-soft);
}
.problem-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.problem-head h2 .acc {
  color: var(--red);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.pr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.pr-card:hover {
  transform: translateY(-2px);
  border-color: var(--red);
}
.pr-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #feeff0;
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pr-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pr-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 780px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}
.solution-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.solution-head h2 .acc {
  color: var(--green);
}
.solution-bridge {
  max-width: 840px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-tint) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.solution-bridge .br-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.solution-bridge .br-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.solution-bridge .br-text strong {
  font-weight: 800;
}
@media (max-width: 780px) {
  .solution-bridge {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .solution-bridge .br-icon {
    margin: 0 auto;
  }
}
.expertise {
  background: var(--ink);
  color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.expertise::before {
  content: "";
  position: absolute;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.25) 0%,
    transparent 70%
  );
}
.expertise-inner {
  position: relative;
  z-index: 2;
}
.expertise-head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.expertise-head h2 {
  color: #fff;
  max-width: 540px;
}
.expertise-head h2 .acc {
  color: #7fa9ff;
}
.expertise-head .lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  padding-top: 20px;
}
.expertise-head .lead strong {
  color: #fff;
  font-weight: 700;
}
.expertise-head .eyebrow {
  background: rgba(46, 107, 246, 0.18);
  color: #7fa9ff;
}
.expertise-head .eyebrow .dot {
  background: #7fa9ff;
}
.expertise-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 48px;
}
.exp-stat {
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.exp-stat:last-child {
  border-right: none;
}
.exp-stat .num {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.exp-stat .num .plus {
  color: var(--primary);
}
.exp-stat .lb {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}
.expertise-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.expertise-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.expertise-body p strong {
  color: #fff;
  font-weight: 700;
}
.expertise-body p em {
  font-style: italic;
  color: #7fa9ff;
}
.expertise-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
}
.expertise-card .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.expertise-card .timeline-d {
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  padding-left: 22px;
  margin-left: 6px;
}
.tl-d-row {
  position: relative;
  padding: 12px 0;
}
.tl-d-row::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid #7fa9ff;
}
.tl-d-row.now::before {
  background: #7fa9ff;
}
.tl-d-row .yr {
  font-size: 0.78rem;
  font-weight: 700;
  color: #7fa9ff;
  letter-spacing: 0.04em;
}
.tl-d-row .ev {
  font-size: 0.94rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2px;
}
.expertise-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.7);
}
.expertise-foot .lb {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.expertise-foot .clients {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-weight: 600;
}
.expertise-foot .clients span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.expertise-foot .clients span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7fa9ff;
}
@media (max-width: 980px) {
  .expertise-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .exp-stat:nth-child(2) {
    border-right: none;
  }
  .exp-stat:nth-child(1),
  .exp-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 880px) {
  .expertise-head,
  .expertise-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .expertise-head .lead {
    padding-top: 0;
  }
}
.usecases-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.uc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.uc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.uc-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fff 0%, var(--bg-tint) 80%);
}
.uc-card.featured::before {
  content: "Главный сценарий";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.uc-num {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.uc-card.featured .uc-num {
  color: var(--primary);
}
.uc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.uc-card .uc-icon {
  background: var(--bg-soft);
  color: var(--ink-soft);
}
.uc-card.featured .uc-icon {
  background: var(--bg-tint);
  color: var(--primary);
}
.uc-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.uc-card .uc-desc {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.uc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}
.uc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.4;
}
.uc-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
}
.uc-card:not(.featured) .uc-list li svg {
  color: var(--ink-soft);
}
.uc-foot {
  margin-top: auto;
  padding-top: 14px;
}
.uc-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary);
}
.uc-foot a .arrow {
  transition: transform 0.15s;
}
.uc-foot a:hover .arrow {
  transform: translateX(3px);
}
@media (max-width: 980px) {
  .usecases-grid {
    grid-template-columns: 1fr;
  }
}
.cand-problem {
  padding: 88px 0;
  background: var(--bg-soft);
}
.cand-problem-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cand-problem-head h2 .acc {
  color: #e11d48;
}
.cand-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto 56px;
}
.cpr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.cpr-card:hover {
  transform: translateY(-2px);
  border-color: #e11d48;
}
.cpr-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #feeff0;
  color: #e11d48;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cpr-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cpr-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 780px) {
  .cand-problem-grid {
    grid-template-columns: 1fr;
  }
}
.cand-trust {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cand-trust::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.25) 0%,
    transparent 70%
  );
}
.cand-trust-inner {
  position: relative;
  z-index: 2;
}
.cand-trust-head {
  text-align: center;
  margin-bottom: 40px;
}
.cand-trust-head h2 {
  color: #fff;
  max-width: 680px;
  margin: 0 auto;
}
.cand-trust-head h2 .acc {
  color: #34d399;
}
.cand-trust-head .eyebrow {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
}
.cand-trust-head .eyebrow .dot {
  background: #34d399;
}
.cand-trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ct-stat {
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ct-stat:last-child {
  border-right: none;
}
.ct-stat .num {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ct-stat .num .plus {
  color: #34d399;
}
.ct-stat .lb {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}
@media (max-width: 980px) {
  .cand-trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ct-stat:nth-child(2) {
    border-right: none;
  }
  .ct-stat:nth-child(1),
  .ct-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.cand-product {
  padding: 88px 0;
  background: var(--bg);
}
.cand-product-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cand-product-showcase {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cps-img {
  background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  place-items: center;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}
.cps-img::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.2) 0%,
    transparent 70%
  );
}
.cps-card-fake {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cps-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cps-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
}
.cps-card-name {
  font-size: 0.96rem;
  font-weight: 700;
}
.cps-card-role {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.cps-card-badge {
  margin-left: auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: var(--bg-mint);
  color: var(--green);
  border-radius: 8px;
}
.cps-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.cps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}
.cps-row .l {
  color: var(--ink-mute);
  font-weight: 500;
}
.cps-row .v {
  font-weight: 700;
  color: var(--ink);
}
.cps-row .v.green {
  color: var(--green);
}
.cps-skill {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
}
.cps-skill .nm {
  font-weight: 600;
}
.cps-bar {
  grid-column: 1/-1;
  height: 5px;
  background: var(--bg-soft);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.cps-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--green);
  border-radius: 3px;
}
.cps-skill[data-v="92"] .cps-bar::after {
  width: 92%;
}
.cps-skill[data-v="84"] .cps-bar::after {
  width: 84%;
}
.cps-skill .v {
  font-weight: 700;
  color: var(--green);
  font-size: 0.78rem;
}
.cps-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cps-content p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.cps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.cps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
}
.cps-list li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 3px;
}
@media (max-width: 880px) {
  .cand-product-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cand-usecases {
  padding: 88px 0;
  background: var(--bg-soft);
}
.cuc-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cuc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.cuc-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(16, 185, 129, 0.4) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.cuc-card {
  text-align: center;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cuc-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 4px 14px -4px rgba(16, 185, 129, 0.3);
}
.cuc-time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--bg-mint);
  color: var(--green);
  border-radius: 99px;
}
.cuc-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cuc-card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  max-width: 300px;
  line-height: 1.55;
}
@media (max-width: 780px) {
  .cuc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cuc-grid::before {
    display: none;
  }
}
.quick-flow {
  position: relative;
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}
.quick-flow::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.15) 0%,
    transparent 70%
  );
}
.quick-flow::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
}
.qf-step {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  animation: qfSlide 0.8s ease backwards;
}
.qf-step:nth-child(2) {
  animation-delay: 0.2s;
}
.qf-step:nth-child(3) {
  animation-delay: 0.4s;
}
.qf-step:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes qfSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.qf-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.qf-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.92rem;
}
.qf-step.done .qf-num {
  background: var(--bg-mint);
  color: var(--green);
}
.qf-step.active .qf-num {
  background: var(--primary);
  color: #fff;
}
.qf-content .qf-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.qf-content .qf-sub {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 3px;
}
.qf-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.qf-step.done .qf-icon {
  background: var(--bg-mint);
  color: var(--green);
}
.qf-step.active .qf-icon {
  background: var(--bg-tint);
  color: var(--primary);
}
.qf-arrow {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  margin: 0 auto;
}
.qf-final {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #fff 0%, var(--bg-mint) 100%);
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px -8px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: qfSlide 0.8s ease 0.8s backwards;
}
.qf-final-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.qf-final-text .l {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
}
.qf-final-text .t {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 2px;
}
@media (max-width: 880px) {
  .quick-flow {
    min-height: auto;
    padding: 28px 22px;
  }
}
.proof-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.proof-card-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 24px;
  box-shadow:
    0 24px 60px -20px rgba(14, 23, 38, 0.18),
    0 8px 24px -8px rgba(14, 23, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  animation: proofIn 0.7s ease backwards;
}
@keyframes proofIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.proof-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--primary) 100%);
}
.pcv2-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.pcv2-avatar {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary) 0%, #5a8aff 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px -4px rgba(46, 107, 246, 0.4);
}
.pcv2-id .nm {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pcv2-id .rl {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 3px;
  font-weight: 500;
}
.pcv2-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 99px;
  background: var(--bg-mint);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pcv2-trust-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
  animation: livedot 2s ease-in-out infinite;
}
@keyframes livedot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.06);
  }
}
.pcv2-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pcv2-score-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.pcv2-score-num .big {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.pcv2-score-num .sm {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: -0.02em;
}
.pcv2-score-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pcv2-score-meta .lvl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pcv2-score-meta .lvl-v {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}
.pcv2-score-meta .lvl-v::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.pcv2-bar {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-top: 2px;
}
.pcv2-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 84%;
  background: linear-gradient(90deg, var(--primary) 0%, #5a8aff 100%);
  border-radius: 4px;
  animation: barFill 1.2s ease 0.3s backwards;
}
@keyframes barFill {
  from {
    width: 0;
  }
  to {
    width: 84%;
  }
}
.pcv2-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pcv2-stack span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 5px 10px;
  background: var(--bg-soft);
  border-radius: 7px;
  color: var(--ink-soft);
}
.pcv2-signals {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pcv2-signals .lab {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.pcv2-signal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--ink);
}
.pcv2-signal .ck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pcv2-verdict {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.pcv2-verdict-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pcv2-verdict-text .lab {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.pcv2-verdict-text .ttl {
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
  line-height: 1.3;
}
.start-mini {
  background: transparent;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.start-mini-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.start-mini-head svg {
  color: var(--primary);
}
.start-mini-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.start-mini-steps .step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.start-mini-steps .step .n {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.72rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.start-mini-steps .sep {
  color: var(--ink-mute);
  opacity: 0.5;
}
.start-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2px;
  width: fit-content;
}
.start-mini-cta::before {
  content: "→";
  font-weight: 700;
}
.start-mini-cta:hover {
  text-decoration: underline;
}
@media (max-width: 880px) {
  .proof-card-v2 {
    padding: 24px 22px;
  }
  .pcv2-score-num .big {
    font-size: 2.2rem;
  }
}
.lead-form {
  background: #fff;
  border-radius: 18px;
  padding: 32px 30px 28px;
  box-shadow:
    0 24px 60px -20px rgba(14, 23, 38, 0.18),
    0 8px 24px -8px rgba(14, 23, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  animation: formIn 0.7s ease backwards;
}
@keyframes formIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lead-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--primary) 100%);
}
.lf-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 99px;
  background: var(--bg-mint);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}
.lf-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
  animation: livedot 2s ease-in-out infinite;
}
.lf-head h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}
.lf-head p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.lf-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lf-field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.lf-field input,
.lf-field textarea {
  font-family: var(--font);
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 0.96rem;
  color: var(--ink);
  transition:
    border-color 0.15s,
    background 0.15s,
    box-shadow 0.15s;
  width: 100%;
  outline: none;
  resize: none;
}
.lf-field input::placeholder,
.lf-field textarea::placeholder {
  color: var(--ink-mute);
}
.lf-field input:hover,
.lf-field textarea:hover {
  background: #fff;
  border-color: var(--line);
}
.lf-field input:focus,
.lf-field textarea:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46, 107, 246, 0.1);
}
.lf-field textarea {
  min-height: 150px;
  line-height: 1.5;
}
.lf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 15px 22px;
  border-radius: 11px;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 6px 18px -4px rgba(16, 185, 129, 0.4);
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.2s;
  margin-top: 4px;
}
.lf-submit:hover {
  background: #0e9f6e;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(16, 185, 129, 0.45);
}
.lf-submit:active {
  transform: translateY(0);
}
.lf-submit .arrow {
  transition: transform 0.15s;
}
.lf-submit:hover .arrow {
  transform: translateX(3px);
}
.lf-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.lf-foot-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lf-foot-line svg {
  flex-shrink: 0;
  color: var(--green);
}
.lf-foot-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.lf-foot-trust .avatars {
  display: inline-flex;
}
.lf-foot-trust .avatars .av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  margin-left: -7px;
}
.lf-foot-trust .avatars .av:first-child {
  margin-left: 0;
}
.lf-foot-trust .avatars .a1 {
  background: var(--primary);
}
.lf-foot-trust .avatars .a2 {
  background: var(--green);
}
.lf-foot-trust .avatars .a3 {
  background: #7c3aed;
}
.lf-foot-trust .avatars .a4 {
  background: var(--bg-soft);
  color: var(--ink-soft);
}
.lead-form.lead-form.is-success .lf-tag,
.lead-form.is-success .lf-head,
.lead-form.is-success .lf-body,
.lead-form.is-success .lf-foot {
  display: none;
}
.lf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 8px 12px;
  animation: successIn 0.5s ease;
}
.lead-form.is-success .lf-success {
  display: flex;
}
@keyframes successIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lead-form.is-success .lf-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-mint);
  color: var(--green);
  display: grid;
  place-items: center;
  animation: successPop 0.6s cubic-bezier(0.5, 1.6, 0.4, 1);
}
@keyframes successPop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.lf-success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lf-success p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 340px;
}
.lf-success .lf-success-meta {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 880px) {
  .lead-form {
    padding: 26px 22px 22px;
  }
  .lf-head h3 {
    font-size: 1.25rem;
  }
}
.showcase {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.showcase-card {
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.showcase-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.12) 0%,
    transparent 70%
  );
}
.showcase-head {
  position: relative;
  z-index: 2;
}
.showcase-head .lab {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.showcase-head h3 {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.showcase-head p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.mockup {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -8px 24px -8px rgba(14, 23, 38, 0.12);
  margin-top: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: none;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.mockup-bar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.mockup-bar .dot.r {
  background: #ff6058;
}
.mockup-bar .dot.y {
  background: #ffbe2f;
}
.mockup-bar .dot.g {
  background: #28c942;
}
.mockup-bar .url {
  margin-left: 14px;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.7rem;
  color: var(--ink-mute);
  font-family: ui-monospace, monospace;
}
.mockup-body {
  padding: 20px;
}
.mk-profile-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.mk-avatar {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary) 0%, #5a8aff 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
}
.mk-name {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mk-role {
  font-size: 0.74rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.mk-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  background: var(--bg-mint);
  color: var(--green);
  border-radius: 6px;
}
.mk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}
.mk-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mk-stat .l {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.mk-stat .v {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.mk-stat .v.green {
  color: var(--green);
}
.mk-skill {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.78rem;
}
.mk-skill .nm {
  font-weight: 600;
  color: var(--ink);
}
.mk-skill .vv {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.74rem;
}
.mk-skill .bar {
  grid-column: 1/-1;
  height: 4px;
  background: var(--bg-soft);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.mk-skill .bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 3px;
}
.mk-skill[data-v="92"] .bar::after {
  width: 92%;
}
.mk-skill[data-v="84"] .bar::after {
  width: 84%;
}
.mk-skill[data-v="76"] .bar::after {
  width: 76%;
}
.mk-video {
  background: #0e1726;
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 14px;
  overflow: hidden;
}
.mk-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(46, 107, 246, 0.3) 0%,
    transparent 60%
  );
}
.mk-video-play {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.mk-video-play svg {
  margin-left: 3px;
}
.mk-video-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 7px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.02em;
}
.mk-transcript {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mk-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  font-size: 0.74rem;
  line-height: 1.4;
}
.mk-line .tt {
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 1px;
}
.mk-line .txt {
  color: var(--ink-soft);
}
.mk-line.q .txt {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 880px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
  }
  .showcase-card {
    padding: 24px 24px 0;
  }
}
.feat-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 24px;
}
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feat-row.reverse .feat-text {
  order: 2;
}
.feat-row.reverse .feat-visual {
  order: 1;
}
.feat-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feat-text .feat-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}
.feat-text .feat-num::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--primary);
}
.feat-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.feat-text .feat-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.feat-text .feat-lead strong {
  color: var(--ink);
  font-weight: 700;
}
.feat-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.feat-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
}
.feat-bullets li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 3px;
}
.feat-visual {
  position: relative;
}
.feat-visual .mockup-wrap {
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.feat-visual .mockup-wrap::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.12) 0%,
    transparent 70%
  );
}
.feat-visual .mockup {
  margin-top: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(14, 23, 38, 0.18);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.mk-fb-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mk-fb-block {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 16px;
  border-top: 3px solid var(--primary);
}
.mk-fb-block.green {
  border-top-color: var(--green);
  background: rgba(16, 185, 129, 0.06);
}
.mk-fb-block.yellow {
  border-top-color: #f0a82a;
  background: rgba(240, 168, 42, 0.07);
}
.mk-fb-block .l {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.mk-fb-block .t {
  font-size: 0.84rem;
  color: var(--ink);
  line-height: 1.5;
}
.mk-fb-block .t strong {
  font-weight: 700;
}
.mk-skillmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mk-skill-cell {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mk-skill-cell .nm {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}
.mk-skill-cell .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
}
.mk-skill-cell .meta .v {
  font-weight: 700;
  color: var(--primary);
}
.mk-skill-cell .meta .lvl {
  color: var(--ink-mute);
  font-weight: 600;
}
.mk-skill-cell .bar {
  height: 4px;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
}
.mk-skill-cell .bar i {
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}
.mk-skill-cell.weak .meta .v {
  color: #f0a82a;
}
.mk-skill-cell.weak .bar i {
  background: #f0a82a;
}
.mk-level-display {
  text-align: center;
  padding: 28px 16px 20px;
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
  border-radius: 10px;
}
.mk-level-display .pre {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.mk-level-display .big {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}
.mk-level-display .scale {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  color: var(--ink-mute);
}
.mk-level-display .scale span {
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--bg-soft);
  font-weight: 600;
}
.mk-level-display .scale span.active {
  background: var(--primary);
  color: #fff;
}
.mk-level-conf {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--bg-mint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--ink);
}
.mk-level-conf strong {
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 880px) {
  .feat-rows {
    gap: 48px;
  }
  .feat-row,
  .feat-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feat-row.reverse .feat-text {
    order: 0;
  }
  .feat-row.reverse .feat-visual {
    order: 0;
  }
  .feat-visual .mockup-wrap {
    padding: 24px 20px;
  }
}
.protect-notice {
  margin-top: 32px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #0e1726 0%, #16365a 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.protect-notice::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 107, 246, 0.25) 0%,
    transparent 70%
  );
}
.protect-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(46, 107, 246, 0.2);
  color: #7fa9ff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.protect-text {
  position: relative;
  z-index: 1;
}
.protect-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.protect-text p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.protect-text p strong {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 780px) {
  .protect-notice {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 24px 22px;
    gap: 14px;
  }
}
.tier-cta-note {
  margin-top: 10px;
  text-align: center;
  font-size: 0.74rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.compare-section {
  margin-top: 72px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.compare-section-head {
  text-align: center;
  margin-bottom: 32px;
}
.compare-section-head h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.compare-section-head p {
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.cmp-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cmp-row-table {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line-soft);
}
.cmp-row-table:last-child {
  border-bottom: none;
}
.cmp-row-table.head {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.cmp-row-table.section-divider {
  background: var(--bg-soft);
}
.cmp-row-table.section-divider .cmp-cell-table {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 14px 18px;
}
.cmp-cell-table {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink);
  border-right: 1px solid var(--line-soft);
}
.cmp-cell-table:last-child {
  border-right: none;
}
.cmp-cell-table.feat {
  font-weight: 500;
  color: var(--ink);
}
.cmp-cell-table.value {
  justify-content: center;
  font-weight: 600;
  font-size: 0.86rem;
}
.cmp-row-table.head .cmp-cell-table {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.cmp-row-table.head .cmp-cell-table.first {
  align-items: flex-start;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  justify-content: flex-end;
}
.cmp-tier-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cmp-tier-price {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.cmp-row-table.head .cmp-cell-table.featured {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
}
.cmp-row-table.head .cmp-cell-table.featured .cmp-tier-name {
  color: var(--primary);
}
.cmp-row-table .cmp-cell-table.col-pilot {
  background: rgba(16, 185, 129, 0.04);
}
.cmp-row-table .cmp-cell-table.col-hiring {
  background: rgba(46, 107, 246, 0.04);
}
.cmp-row-table .cmp-cell-table.col-team {
  background: rgba(124, 58, 237, 0.04);
}
.cmp-icon-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cmp-icon-small.yes {
  background: var(--bg-mint);
  color: var(--green);
}
.cmp-icon-small.no {
  background: var(--bg-soft);
  color: var(--ink-mute);
}
.cmp-icon-small.partial {
  background: #fef3c7;
  color: #ca8a04;
}
.cmp-cell-table.value .cmp-text-inline {
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 600;
}
.cmp-cell-table.value.dim {
  color: var(--ink-mute);
  font-weight: 500;
}
.cmp-cell-table .cmp-text-na {
  font-size: 0.74rem;
  color: var(--ink-mute);
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 780px) {
  .cmp-row-table {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .cmp-cell-table {
    padding: 12px 10px;
    font-size: 0.78rem;
    gap: 5px;
  }
  .cmp-row-table.head .cmp-cell-table {
    padding: 14px 10px;
  }
  .cmp-tier-name {
    font-size: 0.86rem;
  }
  .cmp-tier-price {
    font-size: 0.7rem;
  }
  .cmp-icon-small {
    width: 18px;
    height: 18px;
  }
  .cmp-icon-small svg {
    width: 10px;
    height: 10px;
  }
  .cmp-cell-table.value .cmp-text-inline {
    font-size: 0.7rem;
  }
}
.cmp-v2-wrap {
  margin-top: 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.cmp-v2-head {
  text-align: center;
  margin-bottom: 32px;
}
.cmp-v2-head .eyebrow {
  background: #feeff0;
  color: #e11d48;
}
.cmp-v2-head .eyebrow .dot {
  background: #e11d48;
}
.cmp-v2-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cmp-v2-head h2 .strike {
  position: relative;
  display: inline-block;
  color: var(--ink-mute);
}
.cmp-v2-head h2 .strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 55%;
  height: 3px;
  background: #e11d48;
  border-radius: 2px;
  transform: rotate(-2deg);
}
.cmp-v2-head p.lead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}
.cmp-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 28px -12px rgba(14, 23, 38, 0.1);
}
.cmp-v2-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line-soft);
}
.cmp-v2-row:last-child {
  border-bottom: none;
}
.cmp-v2-row.head {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border-bottom: 2px solid var(--line);
}
.cmp-v2-cell {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink);
  border-right: 1px solid var(--line-soft);
  line-height: 1.4;
}
.cmp-v2-cell:last-child {
  border-right: none;
}
.cmp-v2-cell.feat {
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
}
.cmp-v2-cell.old {
  background: #fff;
  color: var(--ink-mute);
}
.cmp-v2-cell.old .cmp-v2-mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #feeff0;
  color: #e11d48;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.cmp-v2-cell.us {
  background: rgba(16, 185, 129, 0.05);
  color: var(--ink);
  font-weight: 600;
}
.cmp-v2-cell.us .cmp-v2-mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 2px 6px -1px rgba(16, 185, 129, 0.4);
}
.cmp-v2-row.head .cmp-v2-cell {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-weight: 800;
  background: transparent;
}
.cmp-v2-row.head .cmp-v2-cell.first {
  color: var(--ink-mute);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.cmp-v2-row.head .cmp-v2-cell.head-old {
  background: #fff;
}
.cmp-v2-row.head .cmp-v2-cell.head-old .col-name {
  font-size: 1.05rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: #e11d48;
  text-decoration-thickness: 2px;
}
.cmp-v2-row.head .cmp-v2-cell.head-old .col-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e11d48;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cmp-v2-row.head .cmp-v2-cell.head-old .col-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e11d48;
}
.cmp-v2-row.head .cmp-v2-cell.head-us {
  background: linear-gradient(
    180deg,
    var(--bg-mint) 0%,
    rgba(16, 185, 129, 0.04) 100%
  );
  border-top: 3px solid var(--green);
  margin-top: -3px;
}
.cmp-v2-row.head .cmp-v2-cell.head-us .col-name {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 800;
}
.cmp-v2-row.head .cmp-v2-cell.head-us .col-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cmp-v2-row.head .cmp-v2-cell.head-us .col-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.cmp-v2-punch {
  margin-top: 32px;
  background: linear-gradient(135deg, #0e1726 0%, #16365a 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cmp-v2-punch::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.25) 0%,
    transparent 70%
  );
}
.cmp-v2-punch-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cmp-v2-punch-text {
  position: relative;
  z-index: 1;
}
.cmp-v2-punch-text .lab {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.cmp-v2-punch-text h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.cmp-v2-punch-text h3 .acc {
  color: #34d399;
}
@media (max-width: 780px) {
  .cmp-v2-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cmp-v2-cell {
    padding: 14px 12px;
    font-size: 0.78rem;
    gap: 6px;
  }
  .cmp-v2-row.head .cmp-v2-cell {
    padding: 16px 12px;
  }
  .cmp-v2-row.head .cmp-v2-cell.head-old .col-name,
  .cmp-v2-row.head .cmp-v2-cell.head-us .col-name {
    font-size: 0.86rem;
  }
  .cmp-v2-row.head .cmp-v2-cell.first {
    font-size: 0.62rem;
  }
  .cmp-v2-mark {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.74rem;
  }
  .cmp-v2-punch {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 28px 24px;
    gap: 18px;
  }
}
.lang-dropdown {
  position: relative;
  margin-right: 6px;
}
.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px 7px 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font);
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.lang-dropdown-btn:hover {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--line);
}
.lang-dropdown-btn .globe {
  flex-shrink: 0;
  color: var(--ink-mute);
}
.lang-dropdown-btn:hover .globe {
  color: var(--ink);
}
.lang-dropdown-btn .caret {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--ink-mute);
  margin-left: 1px;
}
.lang-dropdown.open .lang-dropdown-btn .caret {
  transform: rotate(180deg);
}
.lang-dropdown.open .lang-dropdown-btn {
  background: var(--bg-soft);
  color: var(--ink);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100%+6px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 5px;
  box-shadow:
    0 12px 32px -8px rgba(14, 23, 38, 0.18),
    0 4px 12px -4px rgba(14, 23, 38, 0.08);
  display: none;
  flex-direction: column;
  gap: 1px;
  z-index: 50;
}
.lang-dropdown.open .lang-dropdown-menu {
  display: flex;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: var(--font);
  text-align: left;
  transition: background 0.15s;
}
.lang-option:hover {
  background: var(--bg-soft);
}
.lang-option.active {
  background: var(--bg-tint);
  color: var(--primary);
  font-weight: 700;
}
body[data-mode="candidate"] .lang-option.active {
  background: var(--bg-mint);
  color: var(--green);
}
.lang-option .flag {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}
.lang-option .lang-code {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.lang-option.active .lang-code {
  color: inherit;
}
.tier-v2.hiring-featured {
  position: relative;
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  box-shadow:
    0 24px 48px -16px rgba(46, 107, 246, 0.2),
    0 8px 24px -8px rgba(14, 23, 38, 0.08);
  scale: 1.02;
  z-index: 2;
}
.tier-v2.hiring-featured::before {
  content: none;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.hero-guarantee {
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.tier-spacer {
  display: none;
}
.hero-guarantee::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
}
.hero-guarantee-icon {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-guarantee-text {
  position: relative;
  z-index: 1;
}
.hero-guarantee-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hero-guarantee-text span {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.tier-key-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.tier-key-stat {
  background: var(--bg-tint);
  border-radius: 10px;
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tier-key-stat .v {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.tier-key-stat .l {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.3;
}
.tier-v2.free .tier-key-stat .v {
  color: var(--green);
}
.tier-usecase {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: 8px;
  border-top: 3px solid var(--primary);
  margin-top: 4px;
}
.tier-v2.free .tier-usecase {
  border-top-color: var(--green);
}
.nav-burger {
  display: none;
  width: 40px;
  height: 35px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  transition:
    background 0.15s,
    border-color 0.15s;
  flex-shrink: 0;
}
.nav-burger:hover {
  background: var(--bg-soft);
  border-color: var(--ink-mute);
}
.nav-burger svg {
  display: block;
}
.nav-burger .nav-burger-close {
  display: none;
}
body.menu-open .nav-burger .nav-burger-open {
  display: none;
}
body.menu-open .nav-burger .nav-burger-close {
  display: block;
}
.mobile-menu {
  display: none;
  background: #fff;
  padding: 20px 22px 32px;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--line-soft);
  animation: mmFade 0.2s ease;
}
@keyframes mmFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body.menu-open .mobile-menu {
  display: flex;
}
.mm-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mm-section[data-show-when] {
  display: none;
}
body[data-mode="candidate"] .mm-section[data-show-when="candidate"] {
  display: flex;
}
body[data-mode="business"] .mm-section[data-show-when="business"] {
  display: flex;
}
.mm-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.mm-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--bg-soft);
  padding: 5px;
  border-radius: 99px;
  border: 1px solid var(--line);
}
.mm-tab {
  padding: 10px 14px;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  transition:
    background 0.2s,
    color 0.2s;
}
body[data-mode="candidate"] .mm-tab[data-mode="candidate"] {
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
body[data-mode="business"] .mm-tab[data-mode="business"] {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.mm-link {
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-soft);
  transition: background 0.15s;
}
.mm-link:hover,
.mm-link:active {
  background: var(--bg-tint);
  color: var(--primary-deep);
}
.mm-lang-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.mm-lang-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.mm-lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mm-lang-chip {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.mm-lang-chip.active {
  background: var(--primary-tint);
  color: var(--primary-deep);
  border-color: transparent;
}
.mm-footer {
  margin-top: auto;
  padding-top: 8px;
}
.mm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
}
.mm-cta-green {
  background: var(--green);
}
.mm-cta[data-show-when] {
  display: none;
}
body[data-mode="business"] .mm-cta[data-show-when="business"] {
  display: flex;
}
body[data-mode="candidate"] .mm-cta[data-show-when="candidate"] {
  display: flex;
}
@media (max-width: 1100px) {
  .nav-burger {
    display: inline-flex;
  }
}
@media (max-width: 760px) {
  .mode-toggle {
    display: none;
  }
  .nav-actions .nav-link {
    display: none;
  }
  .nav-actions .lang-dropdown {
    display: none;
  }
  .nav-actions .nav-cta {
    display: none;
  }
  body[data-mode="candidate"] .nav-cta[data-show-when="candidate"],
  body[data-mode="business"] .nav-cta[data-show-when="business"] {
    display: none;
  }
  .nav-inner {
    padding: 12px 18px;
  }
}
@media (max-width: 540px) {
  .cmp-v2 {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cmp-v2-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
  }
  .cmp-v2-row.head {
    display: none;
  }
  .cmp-v2-cell {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    padding: 12px 14px;
    font-size: 0.9rem;
    line-height: 1.4;
    gap: 10px;
  }
  .cmp-v2-cell:last-child {
    border-bottom: none;
  }
  .cmp-v2-cell.feat {
    font-size: 0.86rem;
    font-weight: 700;
    background: var(--bg-soft);
    color: var(--ink);
    padding: 10px 14px;
  }
  .cmp-v2-cell.old {
    background: #fff;
    color: var(--ink-mute);
    position: relative;
  }
  .cmp-v2-cell.us {
    background: rgba(16, 185, 129, 0.06);
    color: var(--ink);
    font-weight: 600;
  }
  .cmp-v2-mark {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.78rem;
    flex-shrink: 0;
  }
  .cmp-row-table {
    min-width: 520px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger.in > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger.in > *:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger.in > *:nth-child(3) {
  transition-delay: 0.19s;
}
.stagger.in > *:nth-child(4) {
  transition-delay: 0.26s;
}
.stagger.in > *:nth-child(5) {
  transition-delay: 0.33s;
}
.stagger.in > *:nth-child(6) {
  transition-delay: 0.4s;
}
.stagger.in > *:nth-child(7) {
  transition-delay: 0.47s;
}
::selection {
  background: var(--primary);
  color: #fff;
}
nav .logo,
nav .logo:hover,
nav .logo:focus {
  color: inherit !important;
  text-decoration: none !important;
}
nav .mode-toggle a,
nav .mode-toggle a:link,
nav .mode-toggle a:visited {
  color: var(--ink-soft) !important;
  text-decoration: none !important;
}
nav .mode-toggle a:hover {
  color: var(--ink) !important;
}
nav .mode-toggle a.active {
  color: var(--ink) !important;
}
nav .nav-link,
nav .nav-link:link,
nav .nav-link:visited {
  color: var(--ink) !important;
  text-decoration: none !important;
}
nav .nav-link:hover {
  color: var(--ink) !important;
}
nav .nav-cta,
nav .nav-cta:link,
nav .nav-cta:visited {
  color: #fff !important;
  text-decoration: none !important;
}
nav .nav-links a,
nav .nav-links a:link,
nav .nav-links a:visited {
  color: var(--ink-soft) !important;
  text-decoration: none !important;
}
nav .nav-links a:hover {
  color: var(--ink) !important;
}
nav .mobile-menu a,
nav .mobile-menu a:link,
nav .mobile-menu a:visited {
  /* color: var(--ink) !important; */
  text-decoration: none !important;
}
footer .logo,
footer .logo:hover {
  color: inherit !important;
  text-decoration: none !important;
}
.cand-hero {
  padding: 48px 0 72px;
  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(10, 132, 255, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.cand-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.9fr);
  gap: 64px;
  align-items: center;
}
.cand-hero-copy {
  min-width: 0;
}
.cand-hero .eyebrow {
  background: var(--primary-tint);
  color: var(--primary-deep);
  margin-bottom: 28px;
}
.cand-hero .eyebrow .dot {
  background: var(--primary);
}
.cand-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.cand-hero h1 .acc {
  color: var(--primary);
}
.cand-hero .lead {
  margin-top: 28px;
  max-width: 640px;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.cand-hero .lead strong {
  color: var(--ink);
  font-weight: 800;
}
.hero-proof-row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
}
.hero-proof {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.hero-proof .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-tint);
  color: var(--primary);
}
.hero-proof .t {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}
.hero-proof .s {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink-soft);
}
.cand-hero .hero-bullets {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 650px;
}
.cand-hero .hero-bullet {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: flex-start;
  background: transparent;
}
.cand-hero .hero-bullet .check {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-tint);
  color: var(--primary);
}
.cand-hero .hero-bullet .check svg {
  width: 21px;
  height: 21px;
}
.cand-hero .hero-bullet .bt {
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  display: block;
}
.cand-hero .hero-bullet:last-child .bt {
  border-bottom: none;
}
.cand-hero .hero-bullet .lb {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
}
.cand-hero .hero-bullet .sb {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.cand-hero .hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cand-hero .hero-ctas .btn {
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 13px;
  font-size: 1rem;
}
.cand-hero .hero-trust {
  margin-top: clamp(22px, 2.2vw, 34px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  flex-wrap: wrap;
  color: var(--ink-mute);
  flex-direction: row;
}
.cand-hero .hero-trust-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
  min-width: 0;
}
.cand-hero .hero-trust .avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cand-hero .hero-trust .av {
  width: clamp(34px, 3.2vw, 42px);
  height: clamp(34px, 3.2vw, 42px);
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: clamp(-12px, -1vw, -8px);
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow:
    0 2px 9px rgba(14, 23, 38, 0.1),
    0 1px 3px rgba(14, 23, 38, 0.06);
}
.cand-hero .hero-trust .av:first-child {
  margin-left: 0;
}
.cand-hero .hero-trust span.av {
  display: grid;
  place-items: center;
  background: var(--primary-tint);
  color: var(--primary);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
}
.cand-hero .hero-trust-row span {
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.35;
  color: var(--ink-mute);
}
.cand-hero .hero-trust-row strong {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.cand-hero .hero-trust-row svg {
  width: clamp(18px, 1.8vw, 22px);
  height: clamp(18px, 1.8vw, 22px);
  color: var(--primary);
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .cand-hero .hero-trust {
    gap: 18px 28px;
  }
  .cand-hero .hero-trust-row {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .cand-hero .hero-trust {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cand-hero .hero-trust-row {
    width: 100%;
    align-items: center;
  }
  .cand-hero .hero-trust-row span {
    font-size: 0.92rem;
  }
  .cand-hero .hero-trust .av {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }
  .cand-hero .hero-trust span.av {
    font-size: 1.05rem;
  }
}
@media (max-width: 420px) {
  .cand-hero .hero-trust-row {
    gap: 10px;
  }
  .cand-hero .hero-trust-row:first-child {
    align-items: flex-start;
  }
  .cand-hero .hero-trust-row:first-child > span:last-child {
    padding-top: 2px;
  }
  .cand-hero .hero-trust .av {
    width: 34px;
    height: 34px;
    margin-left: -9px;
  }
  .cand-hero .hero-trust-row span {
    font-size: 0.86rem;
  }
}
.cand-illu {
  position: relative;
  min-height: 610px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 70% 0%,
      rgba(10, 132, 255, 0.12),
      transparent 38%
    ),
    linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
  border: 1px solid rgba(10, 132, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  display: block;
  place-items: initial;
}
.cand-illu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 132, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 132, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45),
    transparent 70%
  );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 70%);
  pointer-events: none;
  background-color: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  top: 0;
  right: 0;
}
.cand-illu::after {
  display: none;
}
.cand-illu .offers-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  max-width: none;
  padding: 0;
}
.cand-illu .offers-header .ot {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cand-illu .offers-header .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.cand-illu .offers-header .live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
  animation: none;
}
.cand-illu .offers-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: none;
  width: auto;
  margin: 0;
}
.cand-illu .offer-card {
  position: relative;
  padding: 24px 26px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(228, 233, 240, 0.9);
  border-radius: 18px;
  box-shadow:
    0 18px 42px -28px rgba(14, 23, 38, 0.35),
    0 2px 7px rgba(14, 23, 38, 0.04);
}
.cand-illu .offer-card::before {
  display: none;
}
.cand-illu .offer-card .offer-new {
  position: absolute;
  top: 26px;
  right: 26px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0;
}
.cand-illu .offer-card .offer-new::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: none;
}
.cand-illu .offer-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 78px;
  grid-template-columns: initial;
}
.cand-illu .offer-co-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}
.cand-illu .offer-co-logo.c1 {
  background: linear-gradient(135deg, #2f7bff, #0a5bff);
}
.cand-illu .offer-co-logo.c2 {
  background: linear-gradient(135deg, #10b981, #059669);
}
.cand-illu .offer-co-logo.c3 {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}
.cand-illu .co-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.cand-illu .co-time {
  margin-top: 2px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cand-illu .offer-msg {
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
}
.cand-illu .offer-msg .invite {
  color: var(--primary-deep);
  font-weight: 800;
}
.cand-illu .offer-msg strong {
  font-weight: 800;
  color: var(--ink);
}
.cand-illu .offer-tags {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cand-illu .offer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 8px;
  background: var(--primary-tint);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
}
.cand-illu .offer-tags span.mute {
  background: var(--bg-soft);
  color: var(--ink-soft);
}
.cand-illu .offers-more {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  padding: 13px 18px;
  border: 1px dashed rgba(10, 132, 255, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 800;
}
@media (max-width: 880px) {
  .cand-hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cand-illu {
    min-height: auto;
  }
}
@media (max-width: 720px) {
  .cand-hero {
    padding: 34px 0 56px;
  }
  .cand-hero-inner {
    gap: 34px;
  }
  .cand-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }
  .hero-proof-row {
    grid-template-columns: 1fr;
  }
  .cand-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .cand-illu {
    padding: 20px;
    border-radius: 22px;
  }
  .cand-illu .offers-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .cand-illu .offer-card {
    padding: 20px;
  }
  .cand-illu .offer-card .offer-new {
    position: static;
    margin-bottom: 12px;
  }
  .cand-illu .offer-card-top {
    padding-right: 0;
  }
}
.cand-hero {
  padding: clamp(32px, 5vw, 64px) 0 clamp(52px, 6vw, 84px);
}
.cand-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.cand-hero h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 5.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.cand-hero .lead {
  max-width: 650px;
  margin-top: clamp(20px, 2vw, 28px);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}
.hero-proof-row {
  margin-top: clamp(24px, 2.4vw, 34px);
  max-width: 650px;
  gap: 12px;
}
.hero-proof {
  padding: 13px 15px;
}
.cand-hero .hero-bullets {
  margin-top: clamp(24px, 2.5vw, 34px);
  gap: 12px;
  max-width: 640px;
}
.cand-hero .hero-bullet {
  grid-template-columns: 40px 1fr;
  gap: 14px;
}
.cand-hero .hero-bullet .check {
  width: 40px;
  height: 40px;
}
.cand-hero .hero-bullet .bt {
  padding-bottom: 12px;
}
.cand-hero .hero-ctas {
  margin-top: clamp(26px, 3vw, 38px);
}
.cand-illu {
  min-height: auto;
  padding: clamp(22px, 2.8vw, 34px);
}
.cand-illu .offer-card {
  padding: clamp(20px, 2.2vw, 26px);
}
.cand-illu .offer-msg {
  font-size: clamp(0.92rem, 1vw, 0.98rem);
}
@media (max-width: 1280px) {
  .cand-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
    gap: 44px;
  }
  .cand-hero h1 {
    font-size: clamp(3rem, 5vw, 4.7rem);
  }
  .hero-proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1080px) {
  .cand-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .cand-hero-copy {
    max-width: 760px;
  }
  .cand-illu {
    max-width: 720px;
    width: 100%;
  }
}
@media (max-width: 720px) {
  .cand-hero {
    padding-top: 32px;
  }
  .cand-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
    line-height: 1.02;
  }
  .cand-hero .lead {
    font-size: 1rem;
  }
  .hero-proof-row {
    grid-template-columns: 1fr;
  }
  .cand-hero .hero-bullet {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .cand-hero .hero-bullet .check {
    width: 36px;
    height: 36px;
  }
  .cand-hero .hero-ctas {
    flex-direction: column;
  }
  .cand-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .cand-illu {
    padding: 18px;
    border-radius: 22px;
  }
}
.cand-hero .hero-trust {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(300px, auto) minmax(240px, auto);
  align-items: center;
  justify-content: start;
  column-gap: 64px;
  row-gap: 14px;
  color: var(--ink-mute);
  flex-direction: initial;
  gap: initial;
}
.cand-hero .hero-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.cand-hero .hero-trust-row:first-child {
  white-space: nowrap;
}
.cand-hero .hero-trust .avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cand-hero .hero-trust .av {
  width: 38px;
  height: 38px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow: 0 2px 8px rgba(14, 23, 38, 0.1);
}
.cand-hero .hero-trust .av:first-child {
  margin-left: 0;
}
.cand-hero .hero-trust span.av {
  display: grid;
  place-items: center;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
}
.cand-hero .hero-trust-row span {
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ink-mute);
}
.cand-hero .hero-trust-row strong {
  color: var(--ink);
  font-weight: 800;
}
.cand-hero .hero-trust-row svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
@media (max-width: 1400px) {
  .cand-hero .hero-trust {
    column-gap: 44px;
  }
}
@media (max-width: 1080px) {
  .cand-hero .hero-trust {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .cand-hero .hero-trust-row:first-child {
    white-space: normal;
  }
}
@media (max-width: 640px) {
  .cand-hero .hero-trust {
    margin-top: 24px;
  }
  .cand-hero .hero-trust-row {
    gap: 12px;
  }
  .cand-hero .hero-trust .av {
    width: 34px;
    height: 34px;
    margin-left: -9px;
  }
  .cand-hero .hero-trust-row span {
    font-size: 0.86rem;
  }
}
.cand-hero .hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
  max-width: 760px;
  grid-template-columns: initial;
  column-gap: initial;
  row-gap: initial;
}
.cand-hero .hero-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.cand-hero .hero-trust-row:first-child {
  flex: 0 0 auto;
  white-space: nowrap;
}
.cand-hero .hero-trust-row:last-child {
  flex: 1 1 260px;
  max-width: 320px;
}
.cand-hero .hero-trust-row:last-child span {
  max-width: 280px;
  line-height: 1.25;
}
.cand-hero .hero-trust .avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cand-hero .hero-trust .av {
  width: 38px;
  height: 38px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow: 0 2px 8px rgba(14, 23, 38, 0.1);
}
.cand-hero .hero-trust .av:first-child {
  margin-left: 0;
}
.cand-hero .hero-trust span.av {
  display: grid;
  place-items: center;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
}
.cand-hero .hero-trust-row span {
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ink-mute);
}
.cand-hero .hero-trust-row strong {
  color: var(--ink);
  font-weight: 800;
}
.cand-hero .hero-trust-row svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex: 0 0 22px;
}
@media (max-width: 1280px) {
  .cand-hero .hero-trust {
    flex-wrap: wrap;
    gap: 18px 36px;
  }
  .cand-hero .hero-trust-row:first-child {
    white-space: normal;
  }
  .cand-hero .hero-trust-row:last-child {
    flex-basis: auto;
    max-width: none;
  }
  .cand-hero .hero-trust-row:last-child span {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .cand-hero .hero-trust {
    gap: 16px;
  }
  .cand-hero .hero-trust-row {
    width: 100%;
  }
  .cand-hero .hero-trust-row:first-child {
    align-items: flex-start;
  }
  .cand-hero .hero-trust .av {
    width: 34px;
    height: 34px;
    margin-left: -9px;
  }
  .cand-hero .hero-trust-row span {
    font-size: 0.86rem;
  }
}
.cand-hero .hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: nowrap;
  max-width: 760px;
  grid-template-columns: initial;
  column-gap: initial;
  row-gap: initial;
  color: var(--ink-mute);
}
.cand-hero .hero-trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 0 0 auto;
}
.cand-hero .hero-trust-row:last-child {
  flex: 1 1 auto;
  max-width: none;
}
.cand-hero .hero-trust .avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cand-hero .hero-trust .av {
  width: 54px;
  height: 54px;
  margin-left: -14px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow:
    0 4px 10px rgba(14, 23, 38, 0.1),
    0 1px 3px rgba(14, 23, 38, 0.06);
}
.cand-hero .hero-trust .av:first-child {
  margin-left: 0;
}
.cand-hero .hero-trust span.av {
  display: grid;
  place-items: center;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
  border-color: #fff;
}
.cand-hero .ht-shield {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-mint);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(14, 23, 38, 0.06);
}
.cand-hero .ht-shield svg {
  width: 26px;
  height: 26px;
  color: inherit;
  flex: none;
}
.cand-hero .ht-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.cand-hero .ht-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.cand-hero .ht-text .sub {
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
@media (max-width: 1280px) {
  .cand-hero .hero-trust {
    gap: 32px;
  }
  .cand-hero .ht-text strong {
    white-space: normal;
  }
}
@media (max-width: 1080px) {
  .cand-hero .hero-trust {
    flex-wrap: wrap;
    gap: 22px 36px;
  }
}
@media (max-width: 640px) {
  .cand-hero .hero-trust {
    gap: 18px;
  }
  .cand-hero .hero-trust-row {
    width: 100%;
  }
  .cand-hero .hero-trust .av,
  .cand-hero .ht-shield {
    width: 46px;
    height: 46px;
  }
  .cand-hero .hero-trust .av {
    margin-left: -12px;
  }
  .cand-hero .ht-text strong {
    font-size: 0.98rem;
  }
  .cand-hero .ht-text .sub {
    font-size: 0.86rem;
  }
}
.tc-hero {
  padding: 48px 0 72px;
  background: #fff;
  overflow: hidden;
}
.tc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 56px;
  align-items: start;
}
.tc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #e8f3ff;
  color: #0877ee;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
}
.tc-hero__eyebrow > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a84ff;
  flex-shrink: 0;
}
.tc-hero__title {
  max-width: 720px;
  font-size: clamp(36px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #0e1726;
  margin: 0;
}
.tc-hero__title span {
  color: #0a84ff;
}
.tc-hero__lead {
  max-width: 650px;
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.55;
  color: #56637a;
}
.tc-hero__lead strong {
  color: #0e1726;
  font-weight: 800;
}
.tc-hero__metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 670px;
}
.tc-metric {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(14, 23, 38, 0.04);
}
.tc-metric__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e8f3ff;
  color: #0a84ff;
}
.tc-metric__icon svg {
  width: 22px;
  height: 22px;
}
.tc-metric strong {
  display: block;
  color: #0e1726;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
}
.tc-metric span {
  display: block;
  margin-top: 3px;
  color: #56637a;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
}
.tc-hero__benefits {
  margin-top: 38px;
  max-width: 690px;
}
.tc-benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed #dfe5ee;
}
.tc-benefit:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.tc-benefit__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e8f3ff;
  color: #0a84ff;
}
.tc-benefit__icon svg {
  width: 22px;
  height: 22px;
}
.tc-benefit strong {
  display: block;
  color: #0e1726;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}
.tc-benefit span {
  display: block;
  margin-top: 4px;
  color: #56637a;
  font-size: 15px;
  line-height: 1.45;
}
.tc-hero__actions {
  margin-top: 42px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.tc-btn {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 17px 31px;
  border-radius: 13px;
  font-size: 17px;
  font-weight: 800;
  transition: 0.18s ease;
  text-decoration: none;
}
.tc-btn--primary {
  min-width: 245px;
  color: #fff;
  background: #0a84ff;
  box-shadow: 0 14px 30px -14px rgba(10, 132, 255, 0.75);
}
.tc-btn--primary:hover {
  background: #006fe6;
  transform: translateY(-1px);
}
.tc-btn--secondary {
  min-width: 210px;
  color: #0e1726;
  background: #fff;
  border: 1.5px solid #dfe5ee;
}
.tc-btn--secondary:hover {
  border-color: #b7c2d2;
  transform: translateY(-1px);
}
.tc-hero__trust {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(210px, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 700px;
}
.tc-trust__item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}
.tc-trust__item p {
  margin: 0;
  color: #8a96aa;
  font-size: 15px;
  line-height: 1.3;
}
.tc-trust__item strong {
  color: #0e1726;
  font-size: 17px;
  font-weight: 800;
}
.tc-trust__item span {
  color: #8a96aa;
}
.tc-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.tc-avatars img,
.tc-avatars div {
  width: 42px;
  height: 42px;
  margin-left: -11px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(14, 23, 38, 0.12);
}
.tc-avatars img:first-child {
  margin-left: 0;
}
.tc-avatars div {
  display: grid;
  place-items: center;
  background: #e8f3ff;
  color: #0a84ff;
  font-size: 20px;
  font-weight: 800;
}
.tc-trust__shield {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f3ff;
  color: #0a84ff;
}
.tc-trust__shield svg {
  width: 22px;
  height: 22px;
}
.tc-hero__right {
  position: relative;
}
.tc-offers {
  min-height: 760px;
  padding: 44px 44px 36px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 70% 0%,
      rgba(10, 132, 255, 0.18),
      transparent 38%
    ),
    linear-gradient(180deg, #eaf4ff 0%, #f8fbff 100%);
  border: 1px solid rgba(10, 132, 255, 0.12);
}
.tc-offers__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: nowrap;
}
.tc-offers__head strong {
  color: #0e1726;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}
.tc-offers__head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #56637a;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.tc-offers__head i,
.tc-offer em i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a84ff;
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
  display: inline-block;
}
.tc-offer {
  margin-bottom: 22px;
  padding: 28px 30px;
  border: 1px solid #e4e9f0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 44px -28px rgba(14, 23, 38, 0.38);
}
.tc-offer__top {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
}
.tc-offer__logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.tc-offer__logo--blue {
  background: linear-gradient(135deg, #2f7bff, #0a5bff);
}
.tc-offer__logo--green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.tc-offer__logo--orange {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}
.tc-offer__top strong {
  display: block;
  color: #0e1726;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}
.tc-offer__top span {
  display: block;
  margin-top: 3px;
  color: #8a96aa;
  font-size: 14px;
  font-weight: 600;
}
.tc-offer em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a84ff;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.tc-offer p {
  margin-top: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf1f6;
  color: #0e1726;
  font-size: 16px;
  line-height: 1.55;
}
.tc-offer p b {
  color: #0877ee;
  font-weight: 800;
}
.tc-offer p strong {
  font-weight: 800;
}
.tc-offer__tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.tc-offer__tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: #e8f3ff;
  color: #0877ee;
  font-size: 13px;
  font-weight: 800;
}
.tc-offer__tags span + span {
  background: #f1f4f8;
  color: #56637a;
}
.tc-offers__more {
  margin-top: 26px;
  padding: 15px 18px;
  border: 1px dashed rgba(10, 132, 255, 0.32);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.55);
  color: #0877ee;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}
@media (max-width: 1336px) {
  .tc-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 40px;
  }
  .tc-hero__title {
    font-size: clamp(56px, 6vw, 78px);
  }
  .tc-metric {
    padding: 14px;
  }
  .tc-offers__head strong {
    font-size: 18px;
  }
}
@media (max-width: 880px) {
  .tc-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tc-hero__left,
  .tc-hero__right {
    max-width: 760px;
  }
}
@media (max-width: 880px) {
  .tc-hero {
    padding: 32px 0 56px;
  }
  .tc-hero__left {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .tc-hero__title {
    font-size: clamp(34px, 8vw, 52px);
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-left: auto;
    margin-right: auto;
  }
  .tc-hero__eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .tc-hero__lead {
    margin-top: 24px;
    font-size: 17px;
  }
  .tc-hero__metrics {
    grid-template-columns: 1fr;
  }
  .tc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .tc-btn {
    width: 100%;
  }
  .tc-hero__trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tc-offers {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }
  .tc-offers__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .tc-offer {
    padding: 22px;
  }
  .tc-offer__top {
    grid-template-columns: 48px 1fr;
  }
  .tc-offer em {
    grid-column: 1 / -1;
  }
  .tc-hero__metrics,
  .tc-hero__benefits {
    margin-left: auto;
    margin-right: auto;
  }
  .tc-hero__actions {
    justify-content: center;
  }
  .tc-hero__trust {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    text-align: center;
  }
  .tc-hero-trust-row,
  .hero-trust-row {
    justify-content: center;
  }
}
.tc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 48px;
  align-items: start;
}
.tc-hero__title {
  max-width: 680px;
  font-size: clamp(58px, 5.6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 800;
}
.tc-hero__lead {
  max-width: 620px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.5;
  color: #5f6b80;
}
.tc-hero__metrics {
  margin-top: 30px;
  max-width: 640px;
  gap: 12px;
}
.tc-metric {
  min-height: 78px;
  padding: 14px;
  border-radius: 14px;
}
.tc-metric__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
}
.tc-metric__icon svg {
  width: 20px;
  height: 20px;
}
.tc-metric strong {
  font-size: 14px;
}
.tc-metric span {
  font-size: 12px;
}
.tc-hero__benefits {
  margin-top: 32px;
  max-width: 620px;
}
.tc-benefit {
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.tc-benefit__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}
.tc-benefit__icon svg {
  width: 20px;
  height: 20px;
}
.tc-benefit strong {
  font-size: 16px;
}
.tc-benefit span {
  font-size: 14px;
}
.tc-hero__actions {
  margin-top: 34px;
  gap: 14px;
}
.tc-btn {
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 12px;
  font-size: 16px;
}
.tc-btn--primary {
  min-width: 220px;
}
.tc-btn--secondary {
  min-width: 190px;
}
.tc-hero__trust {
  margin-top: 30px;
  gap: 26px;
}
.tc-trust__item strong {
  font-size: 15px;
}
.tc-trust__item p {
  font-size: 13px;
}
.tc-avatars img,
.tc-avatars div {
  width: 38px;
  height: 38px;
}
.tc-trust__shield {
  width: 38px;
  height: 38px;
}
.tc-trust__shield svg {
  width: 20px;
  height: 20px;
}
.tc-offers {
  min-height: auto;
  padding: 34px;
  border-radius: 28px;
}
.tc-offers__head {
  margin-bottom: 20px;
}
.tc-offers__head strong {
  font-size: 18px;
}
.tc-offers__head span {
  font-size: 13px;
}
.tc-offer {
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: 18px;
}
.tc-offer__top {
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
}
.tc-offer__logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 18px;
}
.tc-offer__top strong {
  font-size: 16px;
}
.tc-offer__top span {
  font-size: 13px;
}
.tc-offer em {
  font-size: 12px;
}
.tc-offer p {
  margin-top: 20px;
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 1.5;
}
.tc-offer__tags {
  margin-top: 14px;
  gap: 8px;
}
.tc-offer__tags span {
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 8px;
  font-size: 12px;
}
.tc-offers__more {
  margin-top: 20px;
  padding: 13px 16px;
  font-size: 14px;
}
@media (min-width: 1600px) {
  .tc-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(540px, 0.95fr);
  }
  .tc-hero__title {
    font-size: 88px;
  }
}
@media (max-width: 1180px) {
  .tc-hero__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .tc-hero__right {
    max-width: 760px;
  }
}
@media (max-width: 720px) {
  .tc-hero__title {
    font-size: clamp(42px, 12vw, 64px);
    line-height: 0.98;
  }
  .tc-hero__lead {
    font-size: 17px;
  }
  .tc-offers {
    padding: 22px;
  }
}
:root {
  --ink: #0b1220;
  --ink-soft: #4f596d;
  --ink-mute: #5f6b7f;
  --line: #e5eaf1;
  --line-soft: #eef1f7;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-tint: #f1f5fb;
  --green: #10b981;
  --green-deep: #0e9f6e;
  --green-soft: #dcf5ea;
  --green-mid: #0f8f62;
  --blue: #0a84ff;
  --blue-deep: #006fe6;
  --blue-soft: #e1ecfe;
  --violet: #7c3aed;
  --coral: #ff6f4e;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --font: "Manrope", system-ui, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
}
.idx-wrap {
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 24px;
}
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.idx-nav-inner {
  max-width: 1336px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.idx-logo-img {
  height: 21px;
  width: 151px;
  display: block;
}
.idx-mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 99px;
  margin-right: auto;
  margin-left: 24px;
}
.idx-mode-toggle a {
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.idx-mode-toggle a:hover {
  color: var(--ink);
}
.idx-mode-toggle a.idx-active {
  background: #fff;
  color: var(--ink);
  box-shadow:
    0 1px 2px rgba(11, 18, 32, 0.06),
    0 1px 3px rgba(11, 18, 32, 0.04);
}
.idx-nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.idx-nav-links a {
  white-space: nowrap;
}
.idx-nav-links a:hover {
  color: var(--ink);
}
.idx-nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.idx-nav-link {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.idx-nav-link:hover {
  background: var(--bg-soft);
  border-color: var(--ink-mute);
}
.idx-nav-cta {
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.15s;
}
.idx-nav-cta:hover {
  background: #1a2436;
}
.idx-nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  transition:
    background 0.15s,
    border-color 0.15s;
  flex-shrink: 0;
}
.idx-nav-burger:hover {
  background: var(--bg-soft);
  border-color: var(--ink-mute);
}
.idx-nav-burger svg {
  display: block;
}
.idx-nav-burger .idx-nav-burger-close {
  display: none;
}
body.idx-menu-open .idx-nav-burger .idx-nav-burger-open {
  display: none;
}
body.idx-menu-open .idx-nav-burger .idx-nav-burger-close {
  display: block;
}
.idx-mobile-menu {
  display: none;
  background: #fff;
  padding: 20px 22px 32px;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--line-soft);
  animation: mmFade 0.2s ease;
}
body.idx-menu-open .idx-mobile-menu {
  display: flex;
}
.idx-mm-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.idx-mm-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.idx-mm-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--bg-soft);
  padding: 5px;
  border-radius: 99px;
  border: 1px solid var(--line);
}
.idx-mm-tab {
  padding: 10px 14px;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  transition: 0.2s;
}
.idx-mm-link {
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-soft);
  transition: 0.15s;
}
.idx-mm-link:hover,
.idx-mm-link:active {
  background: var(--bg-tint);
  color: var(--blue-deep);
}
.idx-mm-footer {
  margin-top: auto;
  padding-top: 8px;
}
.idx-mm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 1000px) {
  .idx-nav-burger {
    display: inline-flex;
  }
  .idx-nav-links {
    display: none;
  }
}
@media (max-width: 760px) {
  .idx-mode-toggle {
    display: none;
  }
  .idx-nav-actions .idx-nav-link {
    display: none;
  }
  .idx-nav-actions .idx-nav-cta {
    display: none;
  }
  .idx-nav-inner {
    padding: 12px 18px;
  }
}
.idx-hero {
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.idx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle 480px at 8% 8%,
      rgba(10, 132, 255, 0.06),
      transparent 60%
    ),
    radial-gradient(
      circle 480px at 92% 16%,
      rgba(16, 185, 129, 0.05),
      transparent 60%
    );
}
.idx-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
.idx-hero-left {
  min-width: 0;
}
.idx-cards {
  max-width: 960px;
  margin: 0 auto;
}
.idx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.idx-eyebrow .idx-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.idx-hero h1 {
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 900;
  max-width: 620px;
}
.idx-hero h1 .idx-acc {
  color: var(--blue);
}
.idx-hero .idx-lead {
  margin-top: 24px;
  max-width: 560px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.idx-hero .idx-lead strong {
  color: var(--ink);
  font-weight: 800;
}
.idx-metrics {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
}
.idx-metric {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.idx-metric .idx-v {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
}
.idx-metric .idx-lbl {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.3;
}
.idx-live {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  max-width: 620px;
}
.idx-live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.idx-live-head .idx-lc {
  display: flex;
  align-items: center;
  gap: 12px;
}
.idx-avs {
  display: flex;
}
.idx-avs img,
.idx-avs .idx-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow: 0 1px 4px rgba(11, 18, 32, 0.08);
}
.idx-avs img:first-child {
  margin-left: 0;
}
.idx-avs .idx-plus {
  display: grid;
  place-items: center;
  background: var(--bg-tint);
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 11px;
}
.idx-live-label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.idx-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-deep);
}
.idx-live-tag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
  animation: lp 1.5s ease-in-out infinite;
}
@keyframes lp {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.idx-live-list {
  padding: 6px 0;
}
.idx-live-row {
  display: grid;
  grid-template-columns: 8px minmax(0, 1.3fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 20px;
  border-top: 1px solid var(--line-soft);
}
.idx-live-row:first-child {
  border-top: 0;
}
.idx-live-row .idx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.idx-live-row strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.idx-live-row .idx-loc {
  font-size: 13px;
  color: var(--ink-mute);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.idx-live-row .idx-amt {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.idx-trust-bullets {
  margin-top: 22px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 620px;
}
.idx-tb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.idx-tb svg {
  width: 18px;
  height: 18px;
  color: var(--ink-mute);
}
.idx-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}
.idx-card::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 4px;

  &.idx-dev {
    background: var(--primary);
  }
}
.idx-card.idx-co::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 4px;
  background: var(--blue);
}

.idx-card.idx-dev::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 4px;
  background: var(--green);
}

.idx-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 28px 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow:
    0 18px 40px -22px rgba(11, 18, 32, 0.1),
    0 2px 8px rgba(11, 18, 32, 0.03);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.idx-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 56px -22px rgba(11, 18, 32, 0.18),
    0 4px 12px rgba(11, 18, 32, 0.06);
}

.idx-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.idx-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.idx-card.idx-dev .idx-tag {
  background: var(--green-soft);
  color: var(--green-deep);
}
.idx-card.idx-co .idx-tag {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.idx-card-ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.idx-card.idx-dev .idx-card-ic {
  background: var(--green-soft);
  color: var(--green-deep);
}
.idx-card.idx-co .idx-card-ic {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.idx-card-ic svg {
  width: 22px;
  height: 22px;
}
.idx-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.idx-card-lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.idx-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.idx-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.idx-points li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.idx-card.idx-dev .idx-points li svg {
  color: var(--green-deep);
}
.idx-card.idx-co .idx-points li svg {
  color: var(--blue-deep);
}
.idx-preview {
  margin-bottom: 20px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}
.idx-preview-offer {
  background: linear-gradient(180deg, var(--green-soft) 0%, #f0fbf6 100%);
  border: 1px solid rgba(16, 185, 129, 0.22);
}
.idx-preview-cand {
  background: #fff;
  border: 1px solid rgba(10, 132, 255, 0.22);
  box-shadow: 0 1px 3px rgba(10, 132, 255, 0.06);
}
.idx-p-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.idx-p-head span {
  font-size: 14px;
}
.idx-p-body {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
}
.idx-p-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2f7bff, #0a5bff);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.idx-p-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.idx-p-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.idx-p-line1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}
.idx-p-line1 .idx-name-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}
.idx-p-line1 strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.idx-p-line1 .idx-flag {
  font-size: 14px;
  line-height: 1;
}
.idx-p-new {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--green);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.idx-p-meta {
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-mute);
  margin-top: 1px;
}
.idx-p-amt {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin-top: 3px;
}
.idx-p-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.idx-p-tags span {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: #fff;
  color: var(--green-deep);
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.idx-p-tags span + span {
  color: var(--ink-soft);
  border-color: var(--line);
}
.idx-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  white-space: nowrap;
  flex-shrink: 0;
}
.idx-verified svg {
  width: 11px;
  height: 11px;
}
.idx-p-skill-rows {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.idx-p-skill-rows .idx-sk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.idx-p-skill-rows .idx-sk-row:last-child {
  border-bottom: 0;
}
.idx-p-skill-rows .idx-sk-row .idx-nm {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
}
.idx-p-skill-rows .idx-sk-row .idx-val {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}
.idx-p-skill-rows .idx-sk-row .idx-val.idx-ok {
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 99px;
  background: var(--blue-soft);
}
.idx-p-skill-rows .idx-sk {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.idx-p-skill-rows .idx-sk .idx-nm {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.idx-p-skill-rows .idx-sk .idx-bar {
  height: 5px;
  background: var(--blue-soft);
  border-radius: 99px;
  overflow: hidden;
}
.idx-p-skill-rows .idx-sk .idx-bar i {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 99px;
}
.idx-card-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  transition: 0.15s;
}
.idx-card.idx-dev .idx-card-cta {
  background: var(--green);
}
.idx-card.idx-dev .idx-card-cta:hover {
  background: var(--green-deep);
}
.idx-card.idx-co .idx-card-cta {
  background: var(--blue);
}
.idx-card.idx-co .idx-card-cta:hover {
  background: var(--blue-deep);
}
.idx-card-foot {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
}
.idx-logos {
  padding: 72px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.idx-logos .idx-lbl {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.idx-logos .idx-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px 24px;
}
.idx-logos .idx-row span {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  color: #9aa2b5;
  letter-spacing: -0.02em;
  flex: 0 1 auto;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .idx-logos .idx-row {
    justify-content: center;
    gap: 24px 36px;
  }
}
.idx-platform {
  padding: 88px 0;
}
.idx-platform-box {
  background: linear-gradient(180deg, #fafbfd 0%, #f4f6fa 100%);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.idx-platform-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle 400px at 12% 8%,
      rgba(10, 132, 255, 0.05),
      transparent 70%
    ),
    radial-gradient(
      circle 400px at 92% 80%,
      rgba(16, 185, 129, 0.05),
      transparent 70%
    );
}
.idx-platform-inner {
  position: relative;
  z-index: 1;
}
.idx-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.idx-section-head .idx-kicker {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.idx-section-head h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  letter-spacing: -0.035em;
  font-weight: 900;
}
.idx-steps3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.idx-step {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 6px 18px -8px rgba(11, 18, 32, 0.06);
  display: flex;
  flex-direction: column;
}
.idx-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.idx-step-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 8px;
}
.idx-step.idx-s1 .idx-step-num {
  background: var(--green-soft);
  color: var(--green-deep);
}
.idx-step.idx-s2 .idx-step-num {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.idx-step.idx-s3 .idx-step-num {
  background: #f1eafb;
  color: var(--violet);
}
.idx-step-ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.idx-step.idx-s1 .idx-step-ic {
  background: var(--green-soft);
  color: var(--green-deep);
}
.idx-step.idx-s2 .idx-step-ic {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.idx-step.idx-s3 .idx-step-ic {
  background: #f1eafb;
  color: var(--violet);
}
.idx-step-ic svg {
  width: 20px;
  height: 20px;
}
.idx-step h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.idx-step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.idx-visual {
  margin-top: auto;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--line-soft);
}
.idx-v-interview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.idx-v-window {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: #eef1f7;
  border-radius: 8px;
}
.idx-v-window span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8d2e0;
}
.idx-v-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
}
.idx-v-row .idx-vph {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #004fc7);
}
.idx-v-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.idx-v-bars i {
  height: 5px;
  border-radius: 99px;
  background: #dce7f5;
  display: block;
}
.idx-v-bars i:nth-child(1) {
  width: 90%;
}
.idx-v-bars i:nth-child(2) {
  width: 65%;
}
.idx-v-bars i:nth-child(3) {
  width: 80%;
}
.idx-v-skills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.idx-v-skill {
  display: grid;
  grid-template-columns: 90px 1fr 30px;
  gap: 8px;
  align-items: center;
  font-size: 11px;
}
.idx-v-skill .idx-l {
  color: var(--ink-soft);
  font-weight: 600;
}
.idx-v-skill .idx-t {
  height: 5px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.idx-v-skill .idx-t i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 99px;
}
.idx-v-skill .idx-v {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  font-size: 10px;
}
.idx-v-matches {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.idx-v-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  font-size: 12px;
}
.idx-v-match strong {
  font-weight: 700;
  color: var(--ink);
}
.idx-v-match .idx-m {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.idx-v-match.idx-m1 .idx-m {
  background: var(--green-soft);
  color: var(--green-deep);
}
.idx-v-match.idx-m2 .idx-m {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.idx-v-match.idx-m3 .idx-m {
  background: #ffeedd;
  color: #c24a1c;
}
.idx-method-divider {
  margin: 0 0 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.idx-method-divider::before,
.idx-method-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.idx-method-divider span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.idx-method-quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}
.idx-method-quote h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}
.idx-method-quote h3 strong {
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.idx-method-quote .idx-since {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.idx-method-quote .idx-since strong {
  font-family: var(--mono);
  color: var(--ink);
  font-weight: 700;
}
.idx-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.idx-tcard {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.idx-tcard .idx-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.idx-tcard .idx-ic svg {
  width: 22px;
  height: 22px;
}
.idx-tcard.idx-t1 .idx-ic {
  background: var(--green-soft);
  color: var(--green-deep);
}
.idx-tcard.idx-t2 .idx-ic {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.idx-tcard.idx-t3 .idx-ic {
  background: #f1eafb;
  color: var(--violet);
}
.idx-tcard.idx-t4 .idx-ic {
  background: #ffebe3;
  color: var(--coral);
}
.idx-tcard .idx-v {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.idx-tcard .idx-l {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 600;
}
.idx-tcard .idx-l strong {
  color: var(--ink);
  font-weight: 800;
}
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 48px 0;
}
.idx-footer-inner {
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
footer .idx-logo-img {
  filter: brightness(0) invert(1);
  height: 21px;
}
.idx-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer .idx-footer-links a {
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
  transition: color 0.15s;
}
footer .idx-footer-links a:hover,
footer .idx-footer-links a:focus {
  color: #fff !important;
  text-decoration: none !important;
}
@media (max-width: 1100px) {
  .idx-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .idx-steps3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .idx-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .idx-platform-box {
    padding: 48px 28px;
    border-radius: 28px;
  }
}
@media (max-width: 720px) {
  .idx-wrap {
    padding: 0 20px;
  }
  .idx-hero {
    padding: 40px 0 40px;
  }
  .idx-metrics {
    grid-template-columns: 1fr;
  }
  .idx-cards {
    grid-template-columns: 1fr;
  }
  .idx-trust-grid {
    grid-template-columns: 1fr;
  }
  .idx-logos .idx-row {
    gap: 18px 32px;
  }
  .idx-live-row {
    grid-template-columns: 8px 1fr auto;
    grid-template-rows: auto auto;
  }
  .idx-live-row .idx-loc {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
  }
  .idx-live-row .idx-amt {
    grid-column: 3;
    grid-row: 1/3;
  }
}
.idx-hero-left .idx-eyebrow {
  align-self: center;
}
.idx-hero-left h1,
.idx-hero-left .idx-lead {
  text-align: center;
}
.idx-hero-left h1 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.idx-hero-left .idx-lead {
  margin-left: auto;
  margin-right: auto;
}
.idx-metrics {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}
.idx-live {
  margin-left: auto;
  margin-right: auto;
}
.idx-trust-bullets {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media (max-width: 1100px) {
  .idx-cards {
    max-width: 720px;
  }
}
nav .idx-logo,
nav .idx-logo:hover,
nav .idx-logo:focus {
  color: inherit !important;
  text-decoration: none !important;
}
nav .idx-mode-toggle a,
nav .idx-mode-toggle a:link,
nav .idx-mode-toggle a:visited {
  color: var(--ink-soft) !important;
  text-decoration: none !important;
}
nav .idx-mode-toggle a:hover {
  color: var(--ink) !important;
}
nav .idx-mode-toggle a.idx-active {
  color: var(--ink) !important;
}
nav .idx-nav-link,
nav .idx-nav-link:link,
nav .idx-nav-link:visited {
  color: var(--ink) !important;
  text-decoration: none !important;
}
nav .idx-nav-link:hover {
  color: var(--ink) !important;
}
nav .idx-nav-cta,
nav .idx-nav-cta:link,
nav .idx-nav-cta:visited {
  color: #fff !important;
  text-decoration: none !important;
}
nav .idx-nav-links a,
nav .idx-nav-links a:link,
nav .idx-nav-links a:visited {
  color: var(--ink-soft) !important;
  text-decoration: none !important;
}
nav .idx-nav-links a:hover {
  color: var(--ink) !important;
}
nav .idx-mobile-menu a,
nav .idx-mobile-menu a:link,
nav .idx-mobile-menu a:visited {
  color: var(--ink) !important;
  text-decoration: none !important;
}
footer .idx-logo,
footer .idx-logo:hover {
  color: inherit !important;
  text-decoration: none !important;
}
.lf-field.has-error label {
  color: var(--red, #e14b4b);
}
.lf-field.has-error input,
.lf-field.has-error textarea {
  border-color: var(--red, #e14b4b);
  background: rgba(225, 75, 75, 0.04);
}
.lf-field.has-error input:focus,
.lf-field.has-error textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 75, 75, 0.15);
  border-color: var(--red, #e14b4b);
}
.lf-field .lf-error {
  display: none;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--red, #e14b4b);
  font-weight: 500;
  line-height: 1.3;
}
.lf-field.has-error .lf-error {
  display: block;
}
.lf-modal[hidden] {
  display: none;
}
.lf-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 23, 38, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.lf-modal.show .lf-modal-backdrop {
  opacity: 1;
}
.lf-modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 22px;
  padding: 44px 32px 32px;
  box-shadow:
    0 32px 70px -16px rgba(14, 23, 38, 0.4),
    0 8px 24px rgba(14, 23, 38, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.28s cubic-bezier(0.4, 1.4, 0.5, 1),
    opacity 0.22s ease;
}
.lf-modal.show .lf-modal-card {
  transform: none;
  opacity: 1;
}
.lf-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink-mute);
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.lf-modal-close:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.lf-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-mint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 2px;
}
.lf-modal-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.lf-modal-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 340px;
  margin: 0;
}
.lf-modal-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.lf-modal-ok {
  margin-top: 8px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: none;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.12s;
}
.lf-modal-ok:hover {
  background: #0e9f6e;
}
.lf-modal-ok:active {
  transform: scale(0.98);
}
body.lf-modal-open {
  overflow: hidden;
}
@media (max-width: 540px) {
  .lf-modal-card {
    padding: 36px 22px 24px;
    border-radius: 18px;
  }
  .lf-modal-card h3 {
    font-size: 1.3rem;
  }
}
.hero-trust img.av {
  object-fit: cover;
  background: var(--bg-soft);
}
.hero-trust .av-plus {
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.85rem;
}
.final-form {
  margin: 32px auto 0;
  max-width: 560px;
  width: 100%;
  background: #fff;
  box-shadow:
    0 24px 60px -20px rgba(14, 23, 38, 0.18),
    0 8px 24px -8px rgba(14, 23, 38, 0.08);
  text-align: left;
}
.final-form .lf-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.final-form label {
  /* display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px; */

  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.final-form input[type="email"],
.final-form textarea,
.final-form select {
  width: 100%;
  font-family: var(--font);
  line-height: 1.45;

  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 0.96rem;
  color: var(--ink);
  transition:
    border-color 0.15s,
    background 0.15s,
    box-shadow 0.15s;
  outline: none;
  resize: none;
}
.final-form input[type="email"]:focus,
.final-form textarea:focus,
.final-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 107, 246, 0.14);
}
.final-form textarea {
  min-height: 120px;
}
.lf-select {
  position: relative;
}
.lf-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}
.lf-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-mute);
  pointer-events: none;
}
.final-form .lf-submit {
  margin-top: 8px;
  background: var(--primary);
  box-shadow: 0 6px 18px -4px rgba(46, 107, 246, 0.4);
}
.final-form .lf-submit:hover {
  background: var(--primary-deep);
}
.lf-foot-note {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.final-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.nav-tg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 10px;
  background: #229ed9;
  color: #fff !important;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none !important;
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 6px 18px -6px rgba(34, 158, 217, 0.55);
}
.nav-tg:hover {
  background: #1e8dc2;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(34, 158, 217, 0.6);
  color: #fff !important;
}
.nav-tg svg {
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .nav-tg span {
    display: none;
  }
  .nav-tg {
    padding: 9px 11px;
  }
}
/* Reading progress bar */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 200;
  pointer-events: none;
}
.read-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--primary));
  width: 0;
  transition: width 0.1s linear;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 14px env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -8px 24px -8px rgba(14, 23, 38, 0.12);
  transform: translateY(110%);
  transition: transform 0.25s ease;
  display: none;
}
.sticky-cta.show {
  transform: translateY(0);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff !important;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none !important;
  transition:
    transform 0.12s,
    filter 0.15s;
}
.sticky-cta-btn.green {
  background: var(--green);
  box-shadow: 0 8px 20px -8px rgba(16, 185, 129, 0.5);
}
.sticky-cta-btn.blue {
  background: var(--primary);
  box-shadow: 0 8px 20px -8px rgba(46, 107, 246, 0.5);
}
.sticky-cta-btn:hover {
  filter: brightness(1.05);
}
.sticky-cta-btn:active {
  transform: scale(0.98);
}
@media (max-width: 720px) {
  .sticky-cta {
    display: block;
  }
  body.has-sticky-cta {
    padding-bottom: 72px;
  }
}

/* To-top button */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 80;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 22px -10px rgba(14, 23, 38, 0.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s,
    background 0.15s;
}
.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover {
  background: var(--bg-soft);
}
.to-top svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 720px) {
  .to-top {
    right: 14px;
    bottom: 80px;
  }
}
@media (min-width: 721px) {
  .to-top {
    bottom: 24px;
    right: 24px;
  }
}

/* Savings calculator */
.calc {
  padding: 88px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.calc-card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  box-shadow:
    0 24px 60px -20px rgba(14, 23, 38, 0.1),
    0 4px 12px rgba(14, 23, 38, 0.04);
}
.calc-head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.calc-head .eyebrow {
  margin-bottom: 14px;
}
.calc-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.calc-head p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}
.calc-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.calc-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-input label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}
.calc-input label .val {
  font-family: var(--mono, monospace);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}
.calc-input input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(
    to right,
    var(--primary) 0%,
    var(--primary) var(--p, 30%),
    var(--line) var(--p, 30%),
    var(--line) 100%
  );
  outline: none;
  cursor: pointer;
}
.calc-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 6px rgba(14, 23, 38, 0.15);
  cursor: pointer;
  transition: transform 0.12s;
}
.calc-input input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 6px rgba(14, 23, 38, 0.15);
  cursor: pointer;
}
.calc-input input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.15);
}
.calc-input .scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.calc-output {
  background: linear-gradient(160deg, #f1f5fb 0%, #e8f3ff 100%);
  border: 1px solid var(--primary-tint, #e1ecfe);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.calc-out-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-out-row .l {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.calc-out-row .v {
  font-family: var(--mono, monospace);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.calc-out-row .v.green {
  color: var(--green-deep, #0e9f6e);
}
.calc-out-row .s {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.calc-cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 11px;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.15s;
}
.calc-cta:hover {
  background: var(--primary-deep);
}
@media (max-width: 880px) {
  .calc-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .calc-card {
    padding: 32px 24px;
  }
}
@media (max-width: 880px) {
  .tc-hero__left,
  .tc-hero .tc-hero__left {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .tc-hero__left .tc-hero__title,
  .tc-hero__left .tc-hero__lead,
  .tc-hero__left .tc-hero__eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .tc-hero__metrics,
  .tc-hero__benefits {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .tc-hero__actions {
    justify-content: center !important;
  }
  .tc-hero__trust {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    justify-items: center !important;
    text-align: center !important;
  }
  .tc-hero-trust-row,
  .hero-trust-row,
  .tc-hero__trust .tc-trust__item {
    justify-content: center !important;
  }
  .tc-hero__benefits .tc-benefit {
    text-align: left;
  }
}

/* =============================================
   i18n — Language selector & Gate
   ============================================= */

/* Lang dropdown in nav */
.idx-lang {
  position: relative;
}
.idx-lang-btn {
  display: inline-flex;
  align-items: center;
  min-width: 53px;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.idx-lang-btn:hover {
  background: var(--bg-soft);
  border-color: var(--ink-mute);
}
.idx-lang-btn svg {
  flex-shrink: 0;
  display: block;
}
.idx-lang-btn > svg:first-child {
  width: 15px;
  height: 15px;
  color: var(--ink-soft);
}
.idx-lang-caret {
  width: 10px;
  height: 10px;
  color: var(--ink-mute);
  transition: transform 0.2s;
}
.idx-lang.open .idx-lang-caret {
  transform: rotate(180deg);
}
.idx-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow:
    0 18px 40px -12px rgba(14, 23, 38, 0.2),
    0 4px 12px rgba(14, 23, 38, 0.08);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 70;
}
.idx-lang.open .idx-lang-menu {
  display: flex;
}
.idx-lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.12s;
}
.idx-lang-opt:hover {
  background: var(--bg-soft);
}
.idx-lang-opt.active {
  background: var(--bg-tint);
  color: var(--primary, #0a84ff);
}
.idx-lang-opt .fl {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}
.idx-lang-opt .cd {
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .idx-lang-btn .idx-lang-cur {
    display: none;
  }
  .idx-lang-btn {
    padding: 9px 10px;
  }
}

/* Currency selector */
.idx-curr {
  position: relative;
  width: fit-content;
}
.idx-curr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.idx-curr-btn:hover {
  background: var(--bg-soft);
  border-color: var(--ink-mute);
}
.idx-curr-btn > svg:first-child {
  width: 15px;
  height: 15px;
  color: var(--ink-soft);
  flex-shrink: 0;
  display: block;
}
.idx-curr-caret {
  width: 10px;
  height: 10px;
  color: var(--ink-mute);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.idx-curr.open .idx-curr-caret {
  transform: rotate(180deg);
}
.idx-curr-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow:
    0 18px 40px -12px rgba(14, 23, 38, 0.2),
    0 4px 12px rgba(14, 23, 38, 0.08);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 70;
}
.idx-curr.open .idx-curr-menu {
  display: flex;
}
.idx-curr-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.12s;
}
.idx-curr-opt:hover {
  background: var(--bg-soft);
}
.idx-curr-opt.active {
  background: var(--bg-tint);
  color: var(--primary, #0a84ff);
}
.idx-curr-opt .sym {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  min-width: 18px;
  text-align: center;
}
.idx-curr-opt .cd {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
@media (max-width: 760px) {
  .idx-curr-btn .idx-curr-cur {
    display: none;
  }
  .idx-curr-btn {
    padding: 9px 10px;
  }
}

/* Language gate (first-visit overlay — index only) */
.lang-gate[hidden] {
  display: none;
}
.lang-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: lgFade 0.25s ease;
}
.lang-gate.closing {
  animation: lgFadeOut 0.25s ease forwards;
}
body.lang-gate-open {
  overflow: hidden;
}
.lang-gate-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 32px 70px -16px rgba(11, 18, 32, 0.4);
  text-align: center;
  animation: lgPop 0.3s cubic-bezier(0.4, 1.4, 0.5, 1);
}
.lang-gate-logo {
  height: 30px;
  width: auto;
  margin: 0 auto 24px;
  display: block;
}
.lang-gate-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
}
.lang-gate-card h2 span {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-mute);
  margin-top: 4px;
}
.lang-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lang-gate-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.12s;
}
.lang-gate-opt:hover {
  background: var(--bg-soft);
  border-color: var(--ink-mute);
  transform: translateY(-1px);
}
.lang-gate-opt .fl {
  font-size: 1.3rem;
  line-height: 1;
}
@media (max-width: 480px) {
  .lang-gate-grid {
    grid-template-columns: 1fr;
  }
  .lang-gate-card {
    padding: 32px 22px;
  }
}

@keyframes lgFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lgFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes lgPop {
  from {
    transform: translateY(16px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 99px;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}
.card-badge--blue {
  background: var(--primary);
}
.card-badge--purple {
  background: #7c3aed;
  padding: 6px 16px;
}
