:root {
      --bg: #f5f6fb;
      --panel: #ffffff;
      --panel-soft: #f9fbff;
      --ink: #101827;
      --muted: #667085;
      --soft: #98a2b3;
      --line: #e4e8f2;
      --line-soft: #eef2f7;
      --blue: #2563eb;
      --blue-dark: #1d4ed8;
      --blue-soft: #eaf0ff;
      --green: #16a34a;
      --green-soft: #e9f8ef;
      --amber: #d97706;
      --amber-soft: #fff5df;
      --rose: #e11d48;
      --shadow-sm: 0 1px 2px rgba(16, 24, 39, 0.04);
      --shadow-md: 0 10px 30px rgba(37, 99, 235, 0.1);
      --shadow-lg: 0 24px 70px rgba(16, 24, 39, 0.12);
      --radius: 16px;
      --radius-sm: 12px;
      --radius-xs: 8px;
      --radius-full: 999px;
      --heading: "Montserrat", system-ui, sans-serif;
      --body: "DM Sans", system-ui, sans-serif;
      --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --bg-card: var(--panel);
      --fg: var(--ink);
      --fg-muted: var(--muted);
      --fg-light: var(--soft);
      --primary: var(--blue);
      --primary-dark: var(--blue-dark);
      --primary-fg: #ffffff;
      --border: var(--line);
      --font-heading: var(--heading);
      --font-body: var(--body);
      --shadow-primary: 0 4px 14px rgba(37, 99, 235, 0.25);
      --shadow-primary-hover: 0 8px 25px rgba(37, 99, 235, 0.35);
      --header-height: 64px;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
      background: var(--bg);
      color: var(--ink);
      font-family: var(--body);
      line-height: 1.6;
    }

    body.drawer-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .header {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 120;
      border-bottom: 1px solid rgba(229, 231, 235, 0.46);
      background: rgba(245, 246, 250, 0.58);
      box-shadow: 0 10px 32px rgba(72, 94, 170, 0.08);
      backdrop-filter: blur(22px) saturate(180%);
      -webkit-backdrop-filter: blur(22px) saturate(180%);
    }

    .header .nav-link,
    .header .btn {
      transition: none;
    }

    .header .btn:hover {
      transform: none;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--header-height);
      gap: 1.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-svg {
      width: auto;
      height: 22px;
      max-width: 160px;
      color: var(--fg);
    }

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-link {
      color: var(--muted);
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-link:hover,
    .nav-link-active {
      color: var(--ink);
    }

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

    .lang-switch,
    .mobile-lang {
      display: inline-flex;
      padding: 3px;
      border: 1px solid var(--line);
      border-radius: var(--radius-full);
      background: var(--panel);
    }

    .lang-btn {
      min-width: 40px;
      height: 30px;
      border: 0;
      border-radius: var(--radius-full);
      background: transparent;
      color: var(--soft);
      font-family: var(--heading);
      font-size: 0.72rem;
      font-weight: 800;
    }

    .lang-btn.active {
      background: var(--blue);
      color: #fff;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.625rem 1.5rem;
      border: 1px solid transparent;
      border-radius: var(--radius-full);
      background: var(--blue);
      color: #fff;
      font-family: var(--heading);
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1;
      white-space: nowrap;
      transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
    }

    .btn:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    }

    .btn-sm {
      padding: 0.5rem 1.25rem;
      font-size: 0.8125rem;
    }

    .btn.secondary {
      border-color: #bfd0ff;
      background: rgba(255, 255, 255, 0.74);
      color: var(--blue);
    }

    .btn.secondary:hover {
      background: #fff;
      color: var(--blue-dark);
    }

    .btn.telegram-cta {
      gap: 0.45rem;
      border-color: rgba(36, 161, 222, 0.28);
      background: linear-gradient(135deg, #24a1de 0%, #2f80ed 100%);
      color: #fff;
      box-shadow: 0 10px 26px rgba(36, 161, 222, 0.22);
    }

    .btn.telegram-cta:hover {
      border-color: rgba(36, 161, 222, 0.36);
      background: linear-gradient(135deg, #1c93d1 0%, #2563eb 100%);
      color: #fff;
      box-shadow: 0 14px 34px rgba(36, 161, 222, 0.28);
    }

    .btn.telegram-cta svg {
      width: 1rem;
      height: 1rem;
      flex: 0 0 auto;
    }

    .btn.dark {
      background: var(--ink);
    }

    .mobile-toggle {
      display: none;
      padding: 0.5rem;
      border: 0;
      background: none;
      color: var(--ink);
    }

    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 115;
      max-height: 0;
      overflow: hidden;
      border-top: 1px solid rgba(229, 231, 235, 0.46);
      background: rgba(245, 246, 250, 0.97);
      box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: max-height 0.3s var(--ease);
    }

    .mobile-menu.open {
      max-height: 300px;
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1rem 1.5rem 1.5rem;
    }

    .mobile-link {
      color: var(--muted);
      font-size: 0.875rem;
      font-weight: 500;
    }

    .hero {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      min-height: clamp(520px, 72vh, 720px);
      padding-top: clamp(3rem, 6vw, 5rem);
      padding-bottom: clamp(2.5rem, 5vw, 4rem);
      border-bottom: 1px solid rgba(37, 99, 235, 0.08);
      background: #ffffff;
    }

    .hero::before {
      display: none;
    }

    .hero-bg {
      position: absolute;
      inset: 0 0 -5.25rem 0;
      z-index: 0;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.82) 50%, #ffffff 100%),
        radial-gradient(ellipse 76% 42% at 24% 8%, rgba(41, 151, 255, 0.22), transparent 70%),
        radial-gradient(ellipse 62% 36% at 72% 12%, rgba(0, 113, 227, 0.16), transparent 72%),
        radial-gradient(ellipse 46% 30% at 88% 42%, rgba(161, 33, 206, 0.08), transparent 76%),
        linear-gradient(100deg, #ffffff 0%, #eef7ff 42%, #ffffff 72%, #f8f4ff 100%);
      background-size: 160% 160%;
      animation: ztHeroColorFlow 12s ease-in-out infinite alternate;
    }

    .hero-bg::before {
      content: "";
      position: absolute;
      z-index: 0;
      inset: -30%;
      background:
        radial-gradient(circle at 18% 18%, rgba(41, 151, 255, 0.26), transparent 24%),
        radial-gradient(circle at 68% 20%, rgba(0, 113, 227, 0.18), transparent 25%),
        radial-gradient(circle at 86% 66%, rgba(161, 33, 206, 0.095), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 255, 0.9));
      background-size: 150% 150%;
      opacity: 0.78;
      animation: ztHeroAuroraMoveBrand 8s ease-in-out infinite alternate;
      will-change: transform;
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.52) 62%, #ffffff 100%);
      pointer-events: none;
    }

    .hero-gradient {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse 54% 30% at 42% 6%, rgba(41, 151, 255, 0.14), transparent 72%),
        radial-gradient(ellipse 34% 25% at 84% 40%, rgba(161, 33, 206, 0.055), transparent 74%);
      opacity: 0.82;
      background-size: 150% 150%;
      animation: ztHeroGradientDriftStrong 7s ease-in-out infinite alternate;
    }

    .hero-noise {
      position: absolute;
      inset: 0;
      z-index: 2;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.02;
      mix-blend-mode: overlay;
      pointer-events: none;
    }

    @keyframes ztHeroAuroraMoveBrand {
      0% { transform: translate3d(-1.5%, -1%, 0) rotate(0deg) scale(1); }
      100% { transform: translate3d(1.5%, 1%, 0) rotate(1deg) scale(1.04); }
    }

    @keyframes ztHeroGradientDriftStrong {
      0% { transform: translate3d(-1%, 0, 0) scale(1); opacity: 0.9; }
      100% { transform: translate3d(1%, -1%, 0) scale(1.02); opacity: 1; }
    }

    @keyframes ztHeroColorFlow {
      0% { background-position: 0% 20%; }
      45% { background-position: 72% 36%; }
      100% { background-position: 100% 78%; }
    }

    .hero-grid {
      position: static;
      display: block;
      width: 100%;
      max-width: 1200px;
      min-height: auto;
      margin: 0 auto;
      padding: 0;
      text-align: center;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 960px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--blue);
      font-family: var(--heading);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--blue);
      box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
    }

    .hero-title {
      max-width: 720px;
      margin: 0 auto;
      font-family: var(--heading);
      font-size: clamp(2.1rem, 4.6vw, 3.1rem);
      line-height: 1.03;
      font-weight: 600;
      letter-spacing: -0.025em;
      text-wrap: balance;
    }

    .hero-title-main,
    .hero-title-tagline {
      display: block;
    }

    .hero-title-tagline {
      margin-top: 0.55rem;
      color: rgba(16, 24, 39, 0.66);
      font-size: clamp(1rem, 1.65vw, 1.32rem);
      font-weight: 500;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.35rem;
    }

    .hero-actions .btn {
      min-width: 240px;
      min-height: auto;
      padding: 0.8rem 1.7rem;
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1;
    }

    .hero-actions .hero-subscribe {
      min-width: 240px;
      padding: 0.8rem 1.45rem;
    }

    .hero-logo-cloud {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }

    .hero-logo {
      position: absolute;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: var(--ink);
      opacity: 0.18;
      box-shadow: none;
      filter: grayscale(1) saturate(0) contrast(0.95);
      animation-duration: 10s;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out;
      will-change: transform;
    }

    .hero-logo img,
    .hero-logo svg {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: grayscale(1) contrast(1.05);
    }

    .hero-logo-1,
    .hero-logo-6 {
      animation-name: ztLogoFloatA;
    }

    .hero-logo-2,
    .hero-logo-5 {
      animation-name: ztLogoFloatB;
      animation-duration: 12s;
    }

    .hero-logo-3,
    .hero-logo-8 {
      animation-name: ztLogoFloatC;
      animation-duration: 11s;
    }

    .hero-logo-4,
    .hero-logo-7 {
      animation-name: ztLogoFloatD;
      animation-duration: 13s;
    }

    .hero-logo-1 { width: 46px; height: 46px; top: 9%; left: 7%; opacity: 0.12; animation-delay: 0s; }
    .hero-logo-2 { width: 29px; height: 29px; top: 18%; left: 18%; opacity: 0.1; animation-delay: 1.3s; }
    .hero-logo-3 { width: 43px; height: 43px; top: 76%; left: 10%; opacity: 0.12; animation-delay: 2.2s; }
    .hero-logo-4 { width: 46px; height: 46px; top: 70%; left: 26%; opacity: 0.12; animation-delay: 0.7s; }
    .hero-logo-5 { width: 36px; height: 36px; top: 14%; right: 13%; left: auto; opacity: 0.1; animation-delay: 2.8s; }
    .hero-logo-6 { width: 42px; height: 42px; top: 62%; right: 18%; left: auto; opacity: 0.12; animation-delay: 1.8s; }
    .hero-logo-7 { width: 44px; height: 44px; top: 25%; left: 3%; opacity: 0.11; animation-delay: 3.2s; }
    .hero-logo-8 { width: 27px; height: 27px; top: 20%; right: 4%; left: auto; opacity: 0.08; animation-delay: 2.4s; }

    @keyframes ztLogoFloatA {
      0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
      28% { transform: translate3d(18px, -16px, 0) rotate(1deg); }
      62% { transform: translate3d(-12px, 14px, 0) rotate(-1deg); }
    }

    @keyframes ztLogoFloatB {
      0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
      35% { transform: translate3d(-20px, -10px, 0) rotate(-1.5deg); }
      72% { transform: translate3d(14px, 18px, 0) rotate(1deg); }
    }

    @keyframes ztLogoFloatC {
      0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
      30% { transform: translate3d(12px, 18px, 0) rotate(1.2deg); }
      68% { transform: translate3d(-18px, -14px, 0) rotate(-0.8deg); }
    }

    @keyframes ztLogoFloatD {
      0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
      40% { transform: translate3d(-14px, 16px, 0) rotate(1deg); }
      78% { transform: translate3d(20px, -12px, 0) rotate(-1deg); }
    }

    .proof-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 30px;
    }

    .proof {
      min-height: 74px;
      padding: 14px;
      border: 1px solid rgba(228, 232, 242, 0.92);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.76);
      box-shadow: var(--shadow-sm);
    }

    .proof strong {
      display: block;
      font-family: var(--heading);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .proof span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 700;
    }

    .hero-card {
      border: 1px solid rgba(228, 232, 242, 0.92);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.8);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .hero-card-head {
      padding: 18px;
      border-bottom: 1px solid var(--line-soft);
    }

    .hero-card-kicker {
      color: var(--blue);
      font-family: var(--heading);
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .hero-card-title {
      margin-top: 7px;
      font-family: var(--heading);
      font-size: 1.15rem;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .hero-list {
      display: grid;
      gap: 0;
    }

    .mini-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 14px 18px;
      border-bottom: 1px solid var(--line-soft);
    }

    .mini-row:last-child {
      border-bottom: 0;
    }

    .mini-row strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 800;
    }

    .mini-row span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .status {
      align-self: center;
      padding: 4px 9px;
      border-radius: var(--radius-full);
      background: var(--green-soft);
      color: var(--green);
      font-size: 0.68rem;
      font-weight: 500;
      line-height: 1.2;
      white-space: nowrap;
    }

    .status.soon {
      background: var(--amber-soft);
      color: var(--amber);
    }

    .section {
      padding: 68px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 26px;
    }

    .section-kicker {
      margin-bottom: 10px;
      color: var(--blue);
      font-family: var(--heading);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .section-title {
      max-width: 760px;
      font-family: var(--heading);
      font-size: clamp(1.8rem, 3vw, 2.85rem);
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -0.04em;
    }

    .section-copy {
      max-width: 560px;
      color: var(--muted);
      font-size: 1rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .step {
      min-height: 210px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow-sm);
    }

    .step-number {
      color: var(--blue);
      font-family: var(--heading);
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .step h3 {
      margin-top: 28px;
      font-family: var(--heading);
      font-size: 1.02rem;
      line-height: 1.25;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .step p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .database {
      overflow-x: hidden;
      padding: 42px 0 78px;
      background: linear-gradient(180deg, var(--bg) 0%, #eef3ff 100%);
      border-top: 1px solid rgba(228, 232, 242, 0.7);
      border-bottom: 1px solid rgba(228, 232, 242, 0.8);
    }

    .toolbar {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto auto auto auto;
      gap: 10px;
      margin-bottom: 18px;
    }

    .search {
      position: relative;
      min-width: 0;
    }

    .search input {
      width: 100%;
      height: 44px;
      padding: 0 16px 0 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius-full);
      background: var(--panel);
      color: var(--ink);
      font-family: var(--body);
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1;
      outline: none;
      box-shadow: var(--shadow-sm);
    }

    .search input:focus,
    .select:focus {
      border-color: #a9c0ff;
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    }

    .search::before {
      content: "";
      position: absolute;
      left: 17px;
      top: 50%;
      width: 14px;
      height: 14px;
      border: 2px solid var(--soft);
      border-radius: 50%;
      transform: translateY(-56%);
    }

    .search::after {
      content: "";
      position: absolute;
      left: 28px;
      top: 28px;
      width: 8px;
      height: 2px;
      border-radius: var(--radius-full);
      background: var(--soft);
      transform: rotate(45deg);
    }

    .select {
      height: 44px;
      min-width: 132px;
      padding: 0 38px 0 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius-full);
      background: var(--panel);
      color: var(--ink);
      font-family: var(--body);
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1;
      outline: none;
      box-shadow: var(--shadow-sm);
      appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, var(--ink) 50%),
        linear-gradient(135deg, var(--ink) 50%, transparent 50%);
      background-position:
        calc(100% - 21px) 50%,
        calc(100% - 15px) 50%;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    .quick-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: -8px 0 18px;
    }

    .quick-filter {
      min-height: 32px;
      padding: 0 11px;
      border: 1px solid var(--line);
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.78);
      color: var(--muted);
      font-size: 0.8125rem;
      font-weight: 600;
      box-shadow: var(--shadow-sm);
    }

    .quick-filter.active {
      border-color: var(--blue);
      background: var(--blue);
      color: #fff;
    }

    .catalog-layout {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    .sidebar {
      position: sticky;
      top: 20px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow-sm);
    }

    .sidebar-head {
      min-height: 70px;
      padding: 14px 14px 12px;
      border-bottom: 1px solid var(--line-soft);
    }

    .sidebar-title,
    .result-title {
      font-family: var(--heading);
      font-size: 0.9375rem;
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.025em;
    }

    .sidebar-sub {
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.76rem;
      line-height: 1.4;
    }

    .category-list {
      max-height: calc(100vh - 200px);
      overflow: auto;
      padding: 8px;
    }

    .category-button {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      min-height: 34px;
      padding: 6px 10px;
      border: 0;
      border-radius: 10px;
      background: transparent;
      color: var(--ink);
      text-align: left;
    }

    .category-button:hover,
    .category-button.active {
      background: var(--blue-soft);
      color: var(--blue);
    }

    .category-name {
      overflow: hidden;
      font-family: var(--body);
      font-size: 0.8125rem;
      font-weight: 560;
      line-height: 1.2;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .category-button.active .category-name {
      font-weight: 650;
    }

    .category-count {
      min-width: 28px;
      padding: 2px 8px;
      border-radius: var(--radius-full);
      background: rgba(16, 24, 39, 0.06);
      color: var(--muted);
      font-size: 0.75rem;
      font-weight: 700;
      text-align: center;
    }

    .category-button.active .category-count {
      background: var(--blue);
      color: #fff;
    }

    .result-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 70px;
      padding: 14px 0 12px;
      margin-bottom: 12px;
    }

    .result-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }

    .category-share[hidden],
    .category-subscribe[hidden] {
      display: none;
    }

    .result-meta {
      margin-top: 5px;
      color: var(--muted);
      font-size: 0.76rem;
      line-height: 1.35;
    }

    .active-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      min-height: 30px;
      margin-bottom: 12px;
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid rgba(37, 99, 235, 0.14);
      border-radius: var(--radius-full);
      background: rgba(37, 99, 235, 0.07);
      color: var(--blue);
      font-size: 0.8125rem;
      font-weight: 600;
    }

    .filter-chip button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      margin-right: -4px;
      border: 0;
      border-radius: var(--radius-full);
      background: rgba(37, 99, 235, 0.12);
      color: currentColor;
      font-family: var(--body);
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1;
    }

    .filter-chip button:hover {
      background: rgba(37, 99, 235, 0.2);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .candidate-card {
      display: flex;
      flex-direction: column;
      min-height: 270px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
    }

    .candidate-card:hover {
      transform: translateY(-2px);
      border-color: rgba(37, 99, 235, 0.24);
      box-shadow: var(--shadow-lg);
    }

    .candidate-card-top {
      display: flex;
      flex-direction: column;
      min-height: 181px;
      padding: 17px 17px 14px;
      border-bottom: 1px solid var(--line-soft);
    }

    .candidate-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 28px;
    }

    .candidate-code {
      display: inline-flex;
      align-items: center;
      color: var(--blue);
      font-family: var(--body);
      font-size: 0.625rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .candidate-title {
      min-height: 2.54em;
      margin-top: 8px;
      font-family: var(--heading);
      font-size: 1rem;
      line-height: 1.27;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .candidate-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 11px;
    }

    .candidate-summary-slot {
      display: flex;
      align-items: flex-start;
      min-height: 63px;
      margin-top: 10px;
    }

    .candidate-summary-slot.is-empty {
      pointer-events: none;
    }

    .candidate-comments {
      display: -webkit-box;
      margin: 0;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 400;
      line-height: 1.45;
      letter-spacing: 0;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 0 8px;
      border-radius: var(--radius-full);
      background: #f2f5fb;
      color: #42526e;
      font-size: 0.75rem;
      font-weight: 500;
    }

    .tag.blue {
      background: rgba(37, 99, 235, 0.09);
      color: var(--blue);
    }

    .facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 11px;
      padding: 15px 17px;
    }

    .fact span {
      display: block;
      color: var(--soft);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .fact strong {
      display: block;
      overflow: hidden;
      margin-top: 2px;
      color: var(--ink);
      font-size: 0.8125rem;
      font-weight: 600;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .candidate-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: auto;
      padding: 13px 17px 17px;
      border-top: 1px solid var(--line-soft);
    }

    .card-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      border: 1px solid var(--line);
      border-radius: var(--radius-full);
      background: #fff;
      color: var(--ink);
      font-family: var(--body);
      font-size: 0.8125rem;
      font-weight: 600;
      white-space: nowrap;
    }

    .card-button.primary {
      border-color: var(--blue);
      background: var(--blue);
      color: #fff;
    }

    .card-button.copied,
    .btn.copied {
      border-color: rgba(34, 197, 94, 0.28);
      background: rgba(34, 197, 94, 0.12);
      color: #15803d;
      animation: copyPulse 0.42s ease-out;
    }

    .card-button.primary.copied {
      background: #16a34a;
      color: #fff;
    }

    @keyframes copyPulse {
      0% { transform: scale(1); }
      38% { transform: scale(1.035); }
      100% { transform: scale(1); }
    }

    .empty-state {
      grid-column: 1 / -1;
      padding: 34px 20px;
      border: 1px dashed #c7d2e4;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.72);
      color: var(--muted);
      text-align: center;
      font-size: 0.9375rem;
      font-weight: 500;
      line-height: 1.5;
    }

    .load-more-row {
      display: flex;
      justify-content: center;
      padding: 22px 0 4px;
    }

    .load-more-row[hidden] {
      display: none;
    }

    .load-more-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 22px;
      border: 1px solid rgba(37, 99, 235, 0.22);
      border-radius: var(--radius-full);
      background: #fff;
      color: var(--blue);
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
      font-family: var(--heading);
      font-size: 0.875rem;
      font-weight: 700;
      transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }

    .load-more-button:hover {
      transform: translateY(-1px);
      border-color: rgba(37, 99, 235, 0.4);
      background: var(--blue-soft);
      box-shadow: 0 16px 34px rgba(37, 99, 235, 0.12);
    }

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

    .trust-block {
      min-height: 250px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow-sm);
    }

    .trust-block h3 {
      font-family: var(--heading);
      font-size: 1.24rem;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .trust-block p {
      margin-top: 12px;
      color: var(--muted);
    }

    .check-list {
      display: grid;
      gap: 10px;
      margin-top: 18px;
      list-style: none;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 24px minmax(0, 1fr);
      gap: 10px;
      color: var(--ink);
      font-size: 0.94rem;
      font-weight: 700;
    }

    .check-list li::before {
      content: "";
      width: 19px;
      height: 19px;
      margin-top: 2px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.52);
    }

    .cta {
      padding: 44px 0;
    }

    .cta-box {
      position: relative;
      display: grid;
      justify-items: center;
      gap: 18px;
      overflow: hidden;
      min-height: 190px;
      padding: clamp(1.65rem, 3.2vw, 2.4rem) clamp(1.25rem, 4vw, 3rem);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 2rem;
      background:
        radial-gradient(circle at 74% 24%, rgba(64, 115, 255, 0.52) 0, transparent 34%),
        radial-gradient(circle at 32% 92%, rgba(87, 65, 190, 0.32) 0, transparent 38%),
        linear-gradient(135deg, #101827 0%, #17213b 44%, #24418f 100%);
      color: #fff;
      text-align: center;
      box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
    }

    .cta-box::before,
    .cta-box::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
    }

    .cta-box::before {
      right: -12%;
      top: -22%;
      width: 420px;
      height: 420px;
      background: rgba(37, 99, 235, 0.26);
      filter: blur(28px);
    }

    .cta-box::after {
      left: 18%;
      bottom: -28%;
      width: 380px;
      height: 380px;
      background: rgba(15, 23, 42, 0.32);
      filter: blur(34px);
    }

    .cta-box > * {
      position: relative;
      z-index: 1;
    }

    .cta-box h2 {
      max-width: 820px;
      margin: 0 auto;
      font-family: var(--heading);
      font-size: clamp(1.35rem, 3vw, 2.25rem);
      line-height: 1.12;
      font-weight: 600;
      letter-spacing: -0.035em;
      text-wrap: balance;
    }

    .cta-box p {
      max-width: 720px;
      margin: 10px auto 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.9375rem;
      line-height: 1.5;
      text-wrap: balance;
    }

    .cta-box .btn {
      min-width: 230px;
      min-height: 46px;
      justify-content: center;
      background: #fff;
      color: var(--ink);
      font-size: 0.875rem;
      font-weight: 700;
      box-shadow: 0 18px 40px rgba(255, 255, 255, 0.14);
    }

    .cta-box .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 52px rgba(255, 255, 255, 0.2);
    }

    .footer {
      position: relative;
      padding: 4rem 0 0;
      overflow: hidden;
      border-top: 1px solid var(--border);
      background: var(--bg);
      color: var(--fg-muted);
    }

    .footer::before {
      display: none;
    }

    .footer-grid {
      position: relative;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2rem;
      align-items: start;
      padding-bottom: 2rem;
    }

    .footer-brand {
      max-width: 280px;
    }

    .footer-logo {
      width: auto;
      height: 18px;
      max-width: 160px;
      color: var(--ink);
    }

    .footer-tagline {
      margin-top: 0.9rem;
      color: var(--fg);
      font-family: var(--heading);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .footer-socials {
      display: flex;
      gap: 0.625rem;
      margin-top: 1.35rem;
    }

    .footer-social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--panel);
      color: var(--ink);
      box-shadow: none;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .footer-social svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

    .footer-social:hover {
      border-color: var(--blue);
      background: var(--panel);
      color: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    }

    .footer h4 {
      margin-bottom: 1rem;
      color: var(--ink);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .footer ul {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer a {
      color: var(--muted);
      font-size: 0.8125rem;
      transition: color 0.2s;
    }

    .footer a:hover {
      color: var(--blue);
    }

    .footer-bottom {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 64px;
      border-top: 1px solid rgba(37, 99, 235, 0.1);
      padding: 1rem 0 1.15rem;
      text-align: center;
      color: var(--muted);
      font-size: 0.8125rem;
    }

    .footer-bottom p {
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.45;
      color: var(--fg-muted);
    }

    .drawer {
      position: fixed;
      inset: 0;
      z-index: 220;
      display: none;
    }

    .drawer.open {
      display: block;
    }

    .drawer-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(16, 24, 39, 0.38);
    }

    .drawer-panel {
      position: absolute;
      top: 14px;
      right: 14px;
      bottom: 14px;
      width: min(720px, calc(100% - 28px));
      overflow: auto;
      border-radius: 22px;
      background: var(--panel);
      box-shadow: 0 30px 90px rgba(16, 24, 39, 0.28);
      scroll-margin-top: 0;
    }

    .drawer-head {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 22px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
    }

    .drawer-title {
      margin-top: 6px;
      font-family: var(--heading);
      font-size: 1.32rem;
      line-height: 1.18;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .drawer-close {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius-full);
      background: #fff;
      color: var(--muted);
      font-size: 1.5rem;
      line-height: 1;
    }

    .drawer-body {
      padding: 20px 22px 24px;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
      margin-bottom: 20px;
    }

    .detail {
      min-width: 0;
      padding: 11px 12px;
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-sm);
      background: var(--panel-soft);
    }

    .detail span {
      display: block;
      color: var(--soft);
      font-family: var(--body);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.075em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .detail strong {
      display: block;
      overflow-wrap: anywhere;
      margin-top: 6px;
      color: var(--ink);
      font-family: var(--body);
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.32;
    }

    .drawer-section-title {
      margin: 18px 0 8px;
      font-family: var(--heading);
      font-size: 0.9375rem;
      font-weight: 700;
    }

    .drawer-text {
      color: var(--muted);
      font-size: 0.9375rem;
      font-weight: 400;
      line-height: 1.55;
      white-space: pre-line;
    }

    .drawer-comments {
      max-width: 68ch;
    }

    .drawer-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .drawer-actions-top {
      margin: 0 0 18px;
    }

    .note {
      margin-top: 18px;
      padding: 14px;
      border: 1px solid rgba(37, 99, 235, 0.14);
      border-radius: var(--radius-sm);
      background: rgba(37, 99, 235, 0.05);
      color: var(--muted);
      font-size: 0.86rem;
    }

    @media (max-width: 1100px) {
      .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 960px) {
      .hero-grid,
      .catalog-layout,
      .trust-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        min-height: 500px;
        padding: 74px 0 62px;
      }

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

      .toolbar .search {
        grid-column: 1 / -1;
      }

      .sidebar {
        position: static;
      }

      .category-list {
        display: flex;
        max-height: none;
        overflow-x: auto;
        padding: 8px;
      }

      .category-button {
        flex: 0 0 auto;
        width: auto;
        min-width: 178px;
      }
    }

    @media (max-width: 768px) {
      :root {
        --header-height: 56px;
      }

      .container {
        width: min(100% - 28px, 1180px);
      }

      .header-inner {
        height: 56px !important;
        min-height: 56px !important;
      }

      .header {
        border-bottom: 1px solid rgba(190, 201, 238, 0.5) !important;
        background: rgba(245, 246, 250, 0.64) !important;
        box-shadow: 0 10px 32px rgba(72, 94, 170, 0.1) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
      }

      .header .logo-svg:not(.footer-logo) {
        width: auto !important;
        height: 17px !important;
        max-width: 120px !important;
      }

      .nav-desktop {
        display: none !important;
      }

      .nav-right {
        display: none !important;
      }

      .nav-right .lang-switch,
      .nav-right .nav-cta {
        display: none !important;
      }

      .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
      }

      .mobile-menu {
        display: block;
      }

      .mobile-menu {
        max-height: 0;
        background: rgba(245, 246, 250, 0.78) !important;
        backdrop-filter: blur(28px) saturate(185%) !important;
        -webkit-backdrop-filter: blur(28px) saturate(185%) !important;
      }

      .mobile-menu.open {
        max-height: calc(100vh - var(--header-height));
        border-bottom: 1px solid rgba(190, 201, 238, 0.62) !important;
        background: linear-gradient(180deg, rgba(250, 252, 255, 0.97), rgba(244, 247, 255, 0.95)) !important;
        box-shadow:
          0 18px 48px rgba(72, 94, 170, 0.18),
          inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
        backdrop-filter: blur(38px) saturate(195%) !important;
        -webkit-backdrop-filter: blur(38px) saturate(195%) !important;
      }

      .mobile-menu.open .mobile-nav {
        background: rgba(250, 252, 255, 0.72) !important;
        border-top-color: rgba(190, 201, 238, 0.5) !important;
        backdrop-filter: blur(22px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
      }

      .mobile-menu .lang-switch,
      .mobile-menu .mobile-lang,
      .mobile-menu .mobile-lang-switch {
        display: inline-flex !important;
        align-items: center !important;
        align-self: flex-start !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: max-content !important;
        margin: 0.75rem 0 0.25rem !important;
        padding: 3px !important;
        gap: 0 !important;
        background: rgba(255, 255, 255, 0.7) !important;
        border: 1px solid rgba(190, 201, 238, 0.64) !important;
        border-radius: 999px !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
        backdrop-filter: blur(14px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(14px) saturate(150%) !important;
      }

      .mobile-menu .lang-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        min-width: 46px !important;
        height: 34px !important;
        padding: 0 0.85rem !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: transparent !important;
        color: #6b7280 !important;
        font-size: 0.75rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: 0.02em !important;
        box-shadow: none !important;
      }

      .mobile-menu .lang-btn.active {
        background: #2563eb !important;
        color: #fff !important;
        box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24) !important;
      }

      .mobile-nav {
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        padding-bottom: 1.75rem;
      }

      .hero {
        min-height: 300px;
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
      }

      .hero-grid {
        min-height: auto;
        padding: 0;
      }

      .hero-logo-cloud {
        inset: 0;
        height: auto;
        overflow: visible;
        z-index: 1;
      }

      .hero-title {
        max-width: 340px;
        font-size: clamp(1.18rem, 6vw, 1.62rem);
        line-height: 1.12;
        transform: none;
      }

      .hero-title-tagline {
        margin-top: 0.32rem;
        font-size: clamp(0.78rem, 3.1vw, 0.92rem);
        line-height: 1.28;
      }

      .hero-actions {
        margin-top: 1rem;
      }

      .hero-actions {
        display: grid;
      }

      .hero-actions .btn {
        width: min(100%, 220px);
        min-width: 0;
        min-height: 38px;
        padding: 0.62rem 1rem;
        font-size: 0.76rem;
        font-weight: 600;
      }

      .hero-actions .hero-subscribe {
        width: min(100%, 220px);
        padding: 0.62rem 1rem;
        font-size: 0.76rem;
      }

      .steps,
      .cards,
      .detail-grid {
        grid-template-columns: 1fr;
      }

      .database {
        padding: 28px 0 56px;
      }

      .quick-filters {
        display: none;
      }

      .toolbar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 12px;
      }

      .search {
        grid-column: 1 / -1;
      }

      .search input {
        height: 38px;
        padding: 0 14px 0 42px;
        font-size: 16px;
      }

      .search input::placeholder {
        font-size: 0.875rem;
      }

      .search::before {
        left: 16px;
        width: 13px;
        height: 13px;
      }

      .search::after {
        left: 26px;
        top: 25px;
      }

      .hero-logo {
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 0;
        opacity: 0.12;
        animation-duration: 8.6s;
        animation-timing-function: ease-in-out;
      }

      .hero-logo-1 { width: 34px; height: 34px; top: 18%; left: 8%; opacity: 0.15; animation-duration: 7.4s; }
      .hero-logo-2 { display: flex; width: 27px; height: 27px; top: 76%; right: 8%; left: auto; opacity: 0.12; animation-duration: 8.2s; }
      .hero-logo-3 { width: 29px; height: 29px; top: 78%; left: 12%; opacity: 0.1; }
      .hero-logo-4 { display: flex; width: 30px; height: 30px; top: 80%; left: 36%; opacity: 0.11; animation-duration: 8.6s; }
      .hero-logo-5 { width: 31px; height: 31px; top: 10%; right: 11%; left: auto; opacity: 0.13; }
      .hero-logo-6 { width: 34px; height: 34px; top: 78%; right: 24%; left: auto; opacity: 0.11; }
      .hero-logo-7 { display: flex; width: 32px; height: 32px; top: 34%; left: 7%; right: auto; opacity: 0.11; animation-duration: 8.8s; }
      .hero-logo-8 { width: 28px; height: 28px; top: 46%; left: auto; right: 6%; opacity: 0.11; animation-duration: 8.2s; }

      .section-title {
        font-size: clamp(1.45rem, 7vw, 2.05rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
      }

      .section,
      .cta {
        padding: 46px 0;
      }

      .section-head,
      .result-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .select {
        min-width: 0;
        width: 100%;
        height: 38px;
        padding: 0 24px 0 10px;
        font-size: 0.8125rem;
      }

      .catalog-layout {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .sidebar {
        position: relative;
        top: auto;
        overflow: visible;
        width: 100%;
        min-width: 0;
        margin: 0 0 2px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
      }

      .sidebar-head {
        display: block;
        padding: 2px 0 11px;
        border-bottom: 0;
      }

      .sidebar-title {
        font-size: 0.9375rem;
        line-height: 1.18;
      }

      .sidebar-sub {
        display: none;
      }

      .category-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
        max-height: none;
        overflow: visible;
        padding: 0;
      }

      .category-button {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
        min-width: 0;
        min-height: 34px;
        padding: 6px 9px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: var(--shadow-sm);
      }

      .category-button.active {
        border-color: var(--blue);
        background: var(--blue);
        color: #fff;
      }

      .category-name {
        max-width: none;
        overflow: hidden;
        font-family: var(--body);
        font-size: 0.8125rem;
        font-weight: 560;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .category-count {
        min-width: 22px;
        padding: 1px 6px;
        background: rgba(16, 24, 39, 0.06);
        font-size: 0.75rem;
      }

      .category-button.active .category-count {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
      }

      .result-head {
        gap: 12px;
        min-height: auto;
        padding: 0;
        margin-bottom: 12px;
      }

      .result-title {
        font-size: 0.9375rem;
        line-height: 1.18;
      }

      .result-meta {
        margin-top: 4px;
        font-size: 0.8125rem;
      }

      .result-actions {
        width: 100%;
      }

      .result-head .btn {
        width: 100%;
        min-height: 40px;
        font-size: 0.875rem;
      }

      .cards {
        gap: 10px;
      }

      .candidate-card {
        min-height: 0;
        border-radius: 14px;
      }

      .candidate-card:hover {
        transform: none;
      }

      .candidate-card-top {
        min-height: 158px;
        padding: 11px 12px 10px;
      }

      .candidate-line {
        align-items: center;
        gap: 8px;
        min-height: 24px;
      }

      .candidate-code {
        font-size: 0.625rem;
        line-height: 1;
      }

      .status {
        display: inline-flex;
        align-items: center;
        padding: 3px 7px;
        font-size: 0.6875rem;
        line-height: 1.2;
      }

      .candidate-title {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 6px;
        font-size: 0.9375rem;
        line-height: 1.2;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
      }

      .candidate-tags {
        gap: 5px;
        margin-top: 8px;
      }

      .candidate-summary-slot {
        min-height: 52px;
        margin-top: 8px;
      }

      .candidate-comments {
        font-size: 0.75rem;
        line-height: 1.38;
      }

      .candidate-tags .tag:nth-child(n+5) {
        display: none;
      }

      .tag {
        min-height: 20px;
        padding: 0 7px;
        font-size: 0.6875rem;
      }

      .facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px 9px;
        padding: 9px 12px 8px;
      }

      .fact span {
        font-size: 0.625rem;
        letter-spacing: 0.045em;
      }

      .fact strong {
        margin-top: 1px;
        font-size: 0.75rem;
        font-weight: 600;
      }

      .candidate-actions,
      .drawer-actions {
        display: grid;
      }

      .candidate-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        padding: 9px 12px 11px;
      }

      .card-button {
        min-height: 32px;
        font-size: 0.8125rem;
      }

      .drawer-actions {
        grid-template-columns: 1fr;
      }

      .drawer-actions-top {
        grid-template-columns: 1fr 1fr;
      }

      .drawer-actions-top .btn:first-child {
        grid-column: 1 / -1;
      }

      .drawer-panel {
        inset: auto 0 0 0;
        width: 100%;
        max-height: calc(100vh - 26px);
        border-radius: 22px 22px 0 0;
      }

      .drawer-title {
        font-size: 1.125rem;
      }

      .cta-box {
        min-height: 220px;
        padding: 1.75rem 1.25rem;
        border-radius: 1.25rem;
      }

      .cta-box h2 {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
        line-height: 1.12;
      }

      .cta-box p {
        margin-top: 10px;
        font-size: 0.875rem;
      }

      .cta-box .btn {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        font-size: 0.875rem;
      }

      .footer {
        padding: 2.5rem 0 0;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 480px) {
      .category-list {
        gap: 7px;
      }

      .category-button {
        min-height: 32px;
        padding: 6px 8px;
      }

      .category-name {
        font-size: 0.8125rem;
      }

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