@font-face {
      font-family: 'Soyuz Grotesk';
      src: url('/Fonts/Soyuz Grotesk Bold.woff') format('woff');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    :root {
      --bg: #f9f9f8;
      --surface: #ffffff;
      --ink: #282828;
      --ink-2: #6f6f72;
      --ink-3: #757575;
      --line: #e5e5e8;
      --violet: #6b52a8;
      --violet-soft: #efecf9;
      --focus: 0 0 0 3px rgba(107, 82, 168, 0.28);
      --radius: 20px;
      --nav-h: 56px;
      --safe-t: env(safe-area-inset-top, 0px);
      --safe-b: env(safe-area-inset-bottom, 0px);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.5;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -webkit-tap-highlight-color: transparent;
    }
    a { color: var(--violet); }
    :focus-visible { outline: none; box-shadow: var(--focus); border-radius: 8px; }

    .wrap { width: min(100% - 48px, 1440px); margin-inline: auto; }
    @media (max-width: 720px) { .wrap { width: min(100% - 24px, 1440px); } }

    /* ---------- Header ---------- */
    .nav {
      position: sticky;
      top: 0;
      z-index: 40;
      height: calc(var(--nav-h) + var(--safe-t));
      padding-top: var(--safe-t);
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(40, 40, 40, 0.08);
    }
    .nav-inner {
      height: var(--nav-h);
      display: flex;
      align-items: center;
      gap: 18px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .nav-inner::-webkit-scrollbar { display: none; }
    .nav-logo { flex: 0 0 auto; display: inline-flex; align-items: center; margin-right: 8px; }
    .nav-logo img { display: block; width: 104px; height: 16px; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      margin: 0;
      padding: 0;
      list-style: none;
      flex: 0 0 auto;
    }
    @media (min-width: 1180px) {
      .nav-links { margin-left: 112px; }
    }
    .nav-links a {
      text-decoration: none;
      color: #6f6f72;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.48;
      white-space: nowrap;
      padding: 8px 2px;
      min-height: 16px;
      display: inline-flex;
      align-items: center;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a.is-active { color: var(--ink); }
    .nav-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }
    .nav-icon-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      padding: 10px;
      border: 1px solid rgba(46, 46, 46, 0.3);
      border-radius: 10px;
      background: #fff;
      color: #2e2e2e;
      cursor: pointer;
      font: inherit;
      transition: border-color 0.15s ease, color 0.15s ease;
    }
    .nav-icon-btn:hover { border-color: var(--violet); color: var(--violet); }
    .nav-icon-btn svg { width: 16px; height: 16px; display: block; }
    .nav-login {
      text-decoration: none;
      color: var(--ink);
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 9px 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
    }
    .nav-login:hover { border-color: var(--violet); color: var(--violet); }
    .nav-login img { width: 20px; height: 20px; border-radius: 50%; }
    .nav-cta {
      text-decoration: none;
      color: #fff !important;
      background: #2e2e2e;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 16px;
      white-space: nowrap;
    }
    .nav-cta:hover { background: #1e1e1e; }

    /* ---------- Page layout ---------- */
    .page { padding: 24px 0 64px; }
    .layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
    @media (min-width: 1180px) {
      .layout { grid-template-columns: 220px minmax(0, 1fr); gap: 22px; }
    }

    /* ---------- Left sidebar ---------- */
    .side {
      display: none;
      flex-direction: column;
      gap: 6px;
      position: sticky;
      top: calc(var(--nav-h) + var(--safe-t) + 20px);
      max-height: calc(100vh - var(--nav-h) - var(--safe-t) - 40px);
      overflow: auto;
      padding: 2px 0;
    }
    @media (min-width: 1180px) { .side { display: flex; } }
    .side-label {
      margin: 0 16px 8px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--violet);
      line-height: 16.28px;
      min-height: 14px;
    }
    .side a {
      text-decoration: none;
      color: #2e2e2e;
      font-size: 14px;
      font-weight: 600;
      padding: 12px 16px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .side a:hover { background: #f3f3f3; }
    .side a.is-active { background: #f3f3f3; }
    .side a.is-active::after {
      content: "";
      margin-left: auto;
      width: 14px;
      height: 14px;
      flex: 0 0 auto;
      background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6536 7.16752C12.6314 7.22118 12.5994 7.26954 12.5592 7.30979L8.47585 11.3931C8.39068 11.4783 8.27867 11.5214 8.16667 11.5214C8.05467 11.5214 7.94265 11.4789 7.85748 11.3931C7.68657 11.2222 7.68657 10.9451 7.85748 10.7742L11.1941 7.43753H1.75C1.5085 7.43753 1.3125 7.24153 1.3125 7.00003C1.3125 6.75853 1.5085 6.56253 1.75 6.56253H11.1936L7.85691 3.22588C7.686 3.05497 7.686 2.77786 7.85691 2.60695C8.02783 2.43603 8.30493 2.43603 8.47585 2.60695L12.5592 6.69028C12.5994 6.73053 12.6314 6.77889 12.6536 6.83255C12.6979 6.93989 12.6979 7.06018 12.6536 7.16752Z' fill='%232E2E2E'/%3E%3C/svg%3E") no-repeat center / contain;
    }
    .side-divider { height: 1px; background: var(--line); margin: 8px 0; }

    /* ---------- Main column ---------- */
    .main { min-width: 0; display: flex; flex-direction: column; gap: 32px; }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      color: #fff;
      background: linear-gradient(94deg, #6B52A8 0%, #9B72C8 41.86%, #E0886A 100%);
      min-height: 326px;
      padding: 40px 54px;
      display: flex;
      align-items: end;
    }
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .hero::after {
      width: 480px; height: 480px;
      left: -140px; bottom: -260px;
      background: radial-gradient(closest-side, rgba(84, 55, 170, 0.5), transparent 70%);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      max-width: 640px;
    }
    .hero-eyebrow {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
    }
    .hero h1 {
      margin: 0;
      font-family: "Soyuz Grotesk", "Inter", system-ui, sans-serif;
      font-size: clamp(40px, 5vw, 62px);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.03em;
      color: #fff;
    }
    .hero p {
      margin: 0;
      max-width: 633px;
      font-size: 16px;
      line-height: 1.48;
      color: rgba(255, 255, 255, 0.8);
    }
    .hero-art {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 515px;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background: url('/pic/common/vnedresh.png') center / cover no-repeat;
    }
    @media (max-width: 900px) { .hero-art { display: none; } }
    @media (max-width: 720px) { .hero { padding: 32px 24px; min-height: 260px; } }

    /* ---------- Controls ---------- */
    .controls { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
    .controls-search {
      flex: 1 1 300px;
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      height: 44px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      padding: 0 14px;
    }
    .controls-search__icon {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
      display: block;
    }
    .controls-search input {
      flex: 1 1 auto;
      min-width: 0;
      border: 0;
      outline: none;
      background: transparent;
      font: inherit;
      font-size: 14px;
      color: var(--ink);
      padding: 0;
    }
    .controls-search input::placeholder { color: #757575; }
    .controls-select {
      position: relative;
      flex: 1 1 180px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 10px;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .controls-select select {
      appearance: none;
      -webkit-appearance: none;
      border: 0;
      outline: none;
      background: transparent;
      font: inherit;
      font-size: 14px;
      line-height: 17px;
      color: #2e2e2e;
      flex: 1 1 auto;
      min-width: 0;
      height: 44px;
      padding: 14px 40px 14px 16px;
      cursor: pointer;
    }
    .controls-select::after {
      content: "";
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 24px;
      height: 24px;
      background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
      pointer-events: none;
    }

    /* ---------- Results header ---------- */
    .results-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 32px; margin-bottom: 32px; }
    .results-head h2 { margin: 0; font-family: "Inter Tight", "Inter", sans-serif; font-size: 32px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
    .results-count { margin: 0; font-size: 14px; line-height: 1.3; color: var(--ink-2); white-space: nowrap; }

    /* ---------- Collections ---------- */
    .collections { display: flex; flex-wrap: wrap; gap: 8px; }
    .collections-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--line);
      background: var(--surface);
      border-radius: 999px;
      padding: 8px 6px 8px 16px;
      font: inherit;
      font-size: 14px;
      color: var(--ink);
      cursor: pointer;
    }
    .collections-chip:hover { border-color: var(--violet); }
    .collections-chip.is-active {
      background: var(--violet-soft);
      border-color: var(--violet);
      color: var(--violet);
    }
    .collections-chip b {
      font-weight: 400;
      color: var(--ink-2);
      background: #f3f3f3;
      border-radius: 8px;
      padding: 2px 8px;
      font-size: 13px;
    }
    .collections-chip.is-active b { background: #fff; color: var(--violet); }

    /* ---------- Cards ---------- */
    .grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

    .card {
      position: relative;
      display: block;
      width: 100%;
      min-width: 0;
      text-decoration: none;
      color: inherit;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      min-height: 250px;
      overflow: hidden;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }
    .card:hover { box-shadow: 0 14px 36px rgba(40, 40, 40, 0.1); transform: translateY(-2px); }
    .card-media {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .card-media::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: calc(100% - 80px);
      height: 100%;
      background: linear-gradient(to right, #fff 0%, #fff 34%, rgba(255, 255, 255, 0) 100%);
    }
    .card-body {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 16px;
      width: min(206px, 70%);
      min-height: 200px;
    }
    @media (max-width: 900px) {
      .grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 720px) { .card-body { width: 60%; } }
    .card-text {
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-width: 0;
    }
    .card-badge {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 8px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: #eef0f3;
      color: #46474d;
    }
    .card-badge--hr,
    .card-badge--design,
    .card-badge--partners,
    .card-badge--marketing,
    .card-badge--sales,
    .card-badge--support,
    .card-badge--1c,
    .card-badge--integration {
      background: #eef0f3;
      color: #46474d;
    }
    .card-title {
      margin: 0;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    .card-excerpt {
      margin: 0;
      font-size: 12px;
      line-height: 1.3;
      color: var(--ink-2);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-meta {
      margin: 0;
      font-size: 14px;
      line-height: 1.3;
      color: var(--ink-2);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-locked {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
      padding: 24px;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }
    .card-locked svg { color: var(--ink-2); }
    .card-locked span { font-size: 14px; font-weight: 600; color: var(--ink); }
    .card-locked small { font-size: 12px; color: var(--ink-2); }
    .card.is-locked .card-excerpt,
    .card.is-locked .card-meta { visibility: hidden; }

    /* ---------- Pagination ---------- */
    .pagination { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; padding-top: 24px; }
    .pagination-btn {
      border: 0;
      background: #f3f3f3;
      border-radius: 64px;
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--ink);
    }
    .pagination-btn:hover { background: #e7e7ea; }
    .pagination-btn:disabled { opacity: 0.4; cursor: default; }
    .pagination-btn svg { width: 20px; height: 20px; }
    .pagination-num {
      border: 0;
      background: transparent;
      color: var(--ink);
      border-radius: 8px;
      width: 52px;
      height: 52px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font: inherit;
      font-size: 20px;
      line-height: 1.2;
      font-variant-numeric: lining-nums;
      cursor: pointer;
    }
    .pagination-num.is-active { background: #f3f3f3; }
    .pagination-num:hover:not(.is-active) { background: #f3f3f3; }
    .pagination-dots { color: var(--ink-2); font-size: 20px; padding: 0 4px; }

    /* ---------- Right column (collections) ---------- */
    .right {
      display: none;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 16px;
      position: sticky;
      top: calc(var(--nav-h) + var(--safe-t) + 20px);
      width: 301px;
    }
    .right h3 { margin: 0 0 16px; font-size: 20px; font-weight: 700; line-height: 1.2; color: #282828; }
    .right .collections-chip {
      width: 100%;
      justify-content: flex-start;
      text-align: left;
      border: none;
      border-radius: 16px;
      background: #f3f3f3;
      padding: 12px 16px;
      gap: 10px;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.2;
    }
    .right .collections-chip:hover { border: none; }
    .right .collections-chip span { flex: 1 1 auto; font-size: 16px; font-weight: 500; color: #282828; line-height: 1.2; }
    .right .collections-chip b { background: #fff; border-radius: 8px; padding: 0 4px; font-size: 16px; color: #6f6f72; }
    .right .collections-chip.is-active { background: var(--violet-soft); border: none; color: var(--violet); }
    .right .collections-chip.is-active b { background: #fff; color: var(--violet); }
    @media (min-width: 1400px) {
      .grid-row { display: grid; grid-template-columns: 1fr 301px; gap: 16px; align-items: start; }
      .right { display: flex; flex-direction: column; gap: 4px; }
      .collections--top { display: none; }
    }

    /* ---------- Detail ---------- */
    .detail { display: none; }
    .detail.is-open { display: block; }
    .listing.is-hidden { display: none; }
    .detail-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--ink-2);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .detail-back:hover { color: var(--violet); }
    .detail-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: clamp(24px, 4vw, 56px);
    }
    .detail-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
    .detail-head time { font-size: 14px; color: var(--ink-2); }
    .detail h1 { margin: 0 0 10px; font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
    .detail-meta { margin: 0 0 24px; font-size: 15px; color: var(--ink-2); }
    .detail-media { margin-bottom: 28px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
    .detail-media img { width: 100%; display: block; max-height: 460px; object-fit: cover; }
    .detail-body { max-width: 760px; }
    .detail-body h2 { font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
    .detail-body h3 { font-size: 18px; font-weight: 700; margin: 0; }
    .detail-body p { margin: 0 0 14px; color: #3d3d42; line-height: 1.65; }
    .detail-body ul, .detail-body ol { margin: 0 0 14px; }
    .detail-body li { margin: 4px 0; color: #3d3d42; line-height: 1.6; }
    .detail-body a { color: var(--violet); }
    .detail-body blockquote { color: var(--ink-2); }
    .detail-body code { background: #f3f3f3; border-radius: 6px; padding: 2px 6px; font-size: 0.9em; }
    .detail-body pre { background: #1e1e22; color: #f5f5f5; border-radius: 12px; padding: 16px; overflow: auto; }
    .detail-body pre code { background: transparent; padding: 0; color: inherit; }

    .locked-panel {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: clamp(28px, 5vw, 64px);
      text-align: center;
      max-width: 560px;
      margin: 0 auto;
    }
    .locked-panel svg { color: var(--violet); margin-bottom: 16px; }
    .locked-panel h1 { margin: 0 0 10px; font-size: 26px; font-weight: 800; }
    .locked-panel p { margin: 0 0 22px; color: var(--ink-2); }
    .locked-panel .btn-google {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid #d5d8e0;
      border-radius: 999px;
      padding: 12px 22px;
      font: inherit;
      font-size: 15px;
      font-weight: 600;
      color: #3c4043;
      text-decoration: none;
      cursor: pointer;
    }
    .locked-panel .btn-google:hover { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }

    /* ---------- Empty / error ---------- */
    .empty { padding: 48px 0; text-align: center; color: var(--ink-2); }
    .error-box { margin-top: 12px; padding: 12px 16px; border-radius: 10px; background: #fdecec; color: #a33232; font-size: 14px; }

    /* ---------- Footer ---------- */
    .container {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 40px;
    }
    @media (max-width: 720px) { .container { padding: 0 20px; } }
    .footer {
      background: #111111;
      border-top: 1px solid #1E1E1E;
      padding-top: 64px;
      margin-top: 48px;
    }
    .footer a { text-decoration: none; }
    .footer__main {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 80px;
      align-items: start;
      padding-bottom: 56px;
      border-bottom: 1px solid #1E1E1E;
    }
    .footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: 400px; }
    .footer__logo { display: inline-flex; align-items: center; }
    .footer__logo img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); }
    .footer__tagline { margin: 0; font-size: 13.5px; line-height: 1.6; color: #5A5A5A; }
    .footer__dev-site { margin: 0; font-size: 13.5px; line-height: 1.6; color: #5A5A5A; }
    .footer__dev-site a { color: #9A9A9A; text-decoration: none; border-bottom: 1px solid rgba(154,154,154,0.35); }
    .footer__dev-site a:hover { color: #CFCFCF; border-bottom-color: rgba(207,207,207,0.55); }
    .footer__socials { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 8px; }
    .footer__socials-label { font-size: 13.5px; line-height: 21.6px; color: #5A5A5A; }
    .footer__social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background-color: #fff;
      -webkit-mask-image: var(--footer-social-icon);
      mask-image: var(--footer-social-icon);
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
      transition: background-color 0.15s ease;
    }
    .footer__social[aria-label="Telegram"] { --footer-social-icon: url("/pic/common/campaign/social-tg.svg"); }
    .footer__social[href*="vk.ru"] { --footer-social-icon: url("/pic/common/campaign/social-vk.svg"); }
    .footer__social[aria-label="Rutube"] { --footer-social-icon: url("/pic/common/campaign/social-rutube.svg"); }
    .footer__social:hover { background-color: #C9B8F0; }
    .footer__social img { display: none; }
    .footer__nav { display: flex; gap: 64px; }
    .footer__col { display: flex; flex-direction: column; gap: 16px; }
    .footer__col-title { margin: 0; font-size: 13px; font-weight: 600; color: #FFFFFF; letter-spacing: 0.01em; }
    .footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
    .footer__col a { font-size: 13.5px; color: #5A5A5A; transition: color 0.15s; }
    .footer__col a:hover { color: #AAAAAA; }
    .footer__bottom { padding: 24px 0; text-align: center; border-top: 1px solid #252525; }
    .footer__bottom p { margin-block-start: 1em; margin-block-end: 1em; font-size: 14px; color: #8A8A8A; font-weight: 500; letter-spacing: 0.01em; }
    @media (max-width: 720px) {
      .footer__main { grid-template-columns: 1fr; gap: 32px; }
      .footer__nav { flex-wrap: wrap; gap: 24px; }
    }
    /* === cases detail: floating TOC === */
  .detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 292px;
    gap: 32px;
    align-items: start;
  }
  body.cases-detail-mode .side { display: none; }
  body.cases-detail-mode .hero { display: none; }
  body.cases-detail-mode .layout { display: block; }
  body.cases-detail-mode .main { width: 100%; }
  body.cases-detail-mode .detail-layout { max-width: 1188px; margin-inline: auto; }
  .detail-toc {
    position: sticky;
    top: 80px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .detail-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e5e5e8;
    width: 100%;
  }
  .detail-toc__item { margin: 0; border-left: 2px solid transparent; }
  .detail-toc__item.is-active { border-left-color: #282828; }
  .detail-toc__link {
    display: block;
    padding: 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    font-variant-numeric: lining-nums tabular-nums;
    color: #757575;
    text-decoration: none;
  }
  .detail-toc__item.is-active .detail-toc__link { color: #282828; }
  .detail-layout .detail-body { max-width: none; }
  .detail-body h2 { scroll-margin-top: 96px; margin: 0; }
  @media (max-width: 980px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-toc { display: none; }
  }

  /* === case page hero === */
  .case-hero {
    position: relative;
    border: 1px solid #e5e5e8;
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    color: #1e1e22;
    padding: 32px 48px;
    min-height: 384px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 48px;
  }
  .case-hero__back {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e1e22;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 24px;
  }
  .case-hero__back:hover { color: #6b52a8; }
  .case-hero__back svg { color: #1e1e22; }
  .case-hero__text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 896px;
    max-width: 100%;
    min-height: 220px;
    justify-content: center;
  }
  .case-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
  }
  .case-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #6f6f72 !important;
    border: 1px solid #6f6f72 !important;
    border-radius: 24px;
    padding: 4px 8px !important;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
  }
  .case-hero__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #6f6f72;
    border: 1px solid #6f6f72;
    border-radius: 24px;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
  }
  .case-hero__title {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    font-family: "Soyuz Grotesk", "Inter", system-ui, sans-serif;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #282828;
    max-width: 720px;
  }
  .case-hero__subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    color: #282828;
    max-width: 633px;
  }
  .case-hero__meta {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.3;
    color: #6f6f72;
  }
  .case-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 836px;
    z-index: 1;
    pointer-events: none;
  }
  .case-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .case-hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 70%;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
  }
  @media (max-width: 860px) {
    .case-hero { padding: 28px 24px; min-height: 320px; }
    .case-hero__text { max-width: 100%; }
    .case-hero__media { width: 100%; opacity: 0.25; }
    .case-hero__media::before { width: 100%; background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%); }
  }

  /* === case body sections === */
  .detail-body--sections { max-width: none; display: flex; flex-direction: column; gap: 64px; }
  .case-section { display: flex; flex-direction: column; gap: 32px; }
  .case-section__title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter Tight", "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #282828;
    scroll-margin-top: 96px;
  }
  .case-section__num {
    flex: 0 0 auto;
    font-variant-numeric: tabular-nums;
    text-align: center;
  }
  .case-section__heading { flex: 1 1 auto; }
  .case-section__content { display: flex; flex-direction: column; gap: 32px; }

  /* === block base === */
  .block { display: flex; flex-direction: column; gap: 16px; }
  .block-eyebrow,
  .detail-body .block-eyebrow {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #757575;
  }

  /* === block: text === */
  .block-text__body { margin: 0; font-size: 18px; line-height: 1.5; color: #4b4b4b; }
  .block-text--group { gap: 4px; }
  .block-text__label {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #282828;
  }
  .block-text__body--muted { font-size: 14px; color: #6f6f72; }
  .block-text__body > :first-child,
  .block-callout__text > :first-child,
  .block-quote__text > :first-child,
  .block-step__text > :first-child,
  .block-checkmark__text > :first-child { margin-top: 0; }
  .block-text__body > :last-child,
  .block-callout__text > :last-child,
  .block-quote__text > :last-child,
  .block-step__text > :last-child,
  .block-checkmark__text > :last-child { margin-bottom: 0; }
  .block-text__body a,
  .block-callout__text a,
  .block-quote__text a,
  .block-step__text a,
  .block-checkmark__text a { color: #6b52a8; text-decoration: underline; }
  .block-text__body ul,
  .block-callout__text ul,
  .block-text__body ol,
  .block-callout__text ol { margin: 0 0 14px; }

  /* === block: callout === */
  .block-callout {
    background: #f1d7cd;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .block-callout.callout--peach,
  .block-callout--peach { background: #f1d7cd; }
  .block-callout.callout--teal,
  .block-callout--teal { background: #d9e8e9; }
  .block-callout.callout--lavender,
  .block-callout--lavender { background: #ede9f5; }
  .block-callout__text { margin: 0; font-size: 18px; line-height: 1.5; color: #4b4b4b; }
  .block-callout .block-eyebrow { color: #757575; }

  /* === block: chips === */
  .block-chips__list { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
  .block-chip {
    display: inline-flex;
    align-items: center;
    background: #f3f3f3;
    border-radius: 24px;
    padding: 4px 12px;
    font-size: 18px;
    line-height: 1.5;
    color: #4b4b4b;
  }

  /* === block: stats === */
  .block-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
  }
  .block-stat {
    background: #f1d7cd;
    border: 0;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .block-stat__value {
    font-family: "Inter Tight", "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #282828;
  }
  .block-stat__label { font-size: 18px; line-height: 1.5; color: #4b4b4b; }
  @media (max-width: 720px) { .block-stats__grid { grid-template-columns: 1fr; } }

  /* === block: bullets === */
  .block-bullets { gap: 4px; }
  .block-bullets__list {
    margin: 0;
    padding: 0 0 0 24px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    color: #4b4b4b;
    font-size: 18px;
    line-height: 1.5;
  }
  .block-bullets__list li { margin: 0 0 4px; }
  .block-bullets__list li:last-child { margin-bottom: 0; }

  /* === block: steps === */
  .block-steps__list { display: flex; flex-direction: column; gap: 8px; width: 100%; }
  .block-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #e7e1f8;
    border-left: 4px solid #6b52a8;
    border-radius: 24px;
    padding: 16px;
    width: 100%;
  }
  .block-step__num {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #efecf9;
    color: #1e1e22;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .block-step__body { display: flex; flex-direction: column; gap: 8px; flex: 1 1 auto; }
  .block-step__title { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.2; color: #1e1e22; }
  .block-step__text { margin: 0; font-size: 14px; line-height: 1.5; color: #4b4b4b; }

  /* === block: checkmarks === */
  .block-checkmarks__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .block-checkmark {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: flex-start;
  }
  .block-checkmark__icon {
    width: 24px;
    height: 24px;
    color: #6b52a8;
    flex: 0 0 auto;
  }
  .block-checkmark__body { display: flex; flex-direction: column; gap: 8px; }
  .block-checkmark__title { margin: 0; font-size: 18px; font-weight: 600; line-height: 1.2; color: #1e1e22; }
  .block-checkmark__text { margin: 0; font-size: 18px; font-weight: 400; line-height: 1.5; color: #4b4b4b; }

  /* === block: quote === */
  .block-quote {
    background: #e7e1f8;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
  }
  .block-quote__row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }
  .block-quote__icon {
    width: 32px;
    height: 32px;
    flex: none;
  }
  .block-quote__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 0;
    min-width: 0;
  }
  .block-quote__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #4b4b4b;
    font-style: normal;
  }
  .block-quote__author {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #6b52a8;
  }

  /* === block: calculator === */
  .block-calculator {
    background: #d9e8e9;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }
  .block-calc__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .block-calc__field { display: flex; flex-direction: column; gap: 6px; }
  .block-calc__label { font-size: 16px; line-height: 1.5; color: #757575; }
  .block-calc__field input {
    background: #fff;
    border: 1px solid #e5e5e8;
    border-radius: 12px;
    padding: 12px 16px;
    height: 48px;
    font: inherit;
    font-size: 20px;
    line-height: 1.2;
    color: #282828;
    outline: none;
  }
  .block-calc__field input:focus { border-color: #6b52a8; box-shadow: 0 0 0 3px rgba(107, 82, 168, 0.28); }
  .block-calc__outputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .block-calc__stat {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }
  .block-calc__value {
    font-family: "Inter Tight", "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #282828;
  }
  .block-calc__caption { font-size: 18px; line-height: 1.5; color: #4b4b4b; }
  @media (max-width: 720px) {
    .block-calc__inputs { grid-template-columns: 1fr; }
    .block-calc__outputs { grid-template-columns: 1fr; }
  }

  /* === block: cta === */
  .block-cta { display: flex; width: 100%; }
  .block-cta__btn {
    background: #6b52a8;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    transition: background 0.2s ease;
  }
  .block-cta__btn:hover { background: #584599; }
  .detail-body a.block-cta__btn { color: #fff; }
  .block-cta--lavender .block-cta__btn { background: #6b52a8; }
  .block-cta--lavender .block-cta__btn:hover { background: #584599; }
  .block-cta--peach .block-cta__btn { background: #f1814e; }
  .block-cta--peach .block-cta__btn:hover { background: #d16f3f; }
  .block-cta--teal .block-cta__btn { background: #2e8b94; }
  .block-cta--teal .block-cta__btn:hover { background: #266f76; }

  /* === block: images === */
  .block-images { width: 100%; }
  .block-images__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
  }
  .block-image {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .block-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    border: 1px solid #e5e5e8;
    background: #f7f7f8;
  }
  .block-image figcaption {
    font-size: 14px;
    line-height: 1.5;
    color: #6f6f72;
  }

  /* === block: video === */
  .block-video { width: 100%; }
  .block-video__player {
    display: block;
    width: 100%;
    border: 1px solid #e5e5e8;
    border-radius: 20px;
    overflow: hidden;
    background: #1e1e22;
    aspect-ratio: 16 / 9;
  }
  .block-video__thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid #e5e5e8;
    border-radius: 20px;
    overflow: hidden;
    background: #1e1e22;
    cursor: pointer;
    aspect-ratio: 16 / 9;
  }
  .block-video__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .block-video__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 24, 0.18);
    transition: background 0.15s ease;
  }
  .block-video__thumb:hover::after { background: rgba(20, 20, 24, 0.32); }
  .block-video__play {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(107, 82, 168, 0.92);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  }
  .block-video__play svg { width: 18px; height: 18px; display: block; margin-left: 2px; }
  .block-video__thumb:hover .block-video__play { background: #6b52a8; }
  @media (max-width: 720px) { .block-video__play { width: 52px; height: 52px; } }

  /* === video modal === */
  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 24, 0.82);
  }
  .video-modal__wrap {
    position: relative;
    display: flex;
    align-items: start;
    gap: 24px;
    width: min(920px, 100%);
  }
  .video-modal__box {
    flex: 1 1 auto;
    min-width: 0;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  }
  .video-modal__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; }
  .video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .video-modal__close {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  .video-modal__close svg { width: 38px; height: 38px; display: block; }
  .video-modal[hidden] { display: none; }
  @media (max-width: 720px) {
    .video-modal__wrap { flex-direction: column; align-items: stretch; }
    .video-modal__close { align-self: flex-end; }
  }

  /* === related cases === */
  .related-cases {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .related-cases__title {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .related-cases__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 720px) { .related-cases__grid { grid-template-columns: 1fr; } }
  .related-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-height: 260px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .related-card:hover { box-shadow: 0 14px 36px rgba(40, 40, 40, 0.1); transform: translateY(-2px); }
  .related-card__media { position: absolute; inset: 0; z-index: 0; }
  .related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .related-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fff 0%, #fff 34%, rgba(255,255,255,0) 100%);
  }
  .related-card__body {
    position: relative;
    z-index: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 58%;
    min-height: 220px;
    justify-content: space-between;
  }
  .related-card__badge { align-self: flex-start; }
  .related-card__title { margin: 0; font-size: 20px; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
  .related-card__excerpt {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .related-card__meta { margin: 0; font-size: 13px; color: var(--ink-2); }

/* ================= Предложить решение: форма ================= */
.suggest { max-width: 660px; }
.suggest-back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1e1e22;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.suggest-back:hover { color: var(--violet); }
.suggest-back svg { width: 14px; height: 14px; flex: 0 0 auto; display: block; }

.suggest-title {
  margin: 20px 0 0;
  font-family: "Soyuz Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #282828;
}

.suggest-form { margin-top: 44px; display: flex; flex-direction: column; gap: 48px; }
.suggest-group { display: flex; flex-direction: column; gap: 32px; }
.suggest-group__title { margin: 0; font-size: 20px; font-weight: 700; line-height: 1.2; color: #282828; }
.suggest-fields { display: flex; flex-direction: column; gap: 32px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 16px; font-weight: 400; line-height: 1.3; color: #757575; }
.field__control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e8;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.2;
  color: #282828;
}
.field__control::placeholder { color: #b5b5b8; }
.field__control:focus { outline: none; border-color: var(--violet); box-shadow: var(--focus); }
textarea.field__control { min-height: 104px; resize: vertical; }

.suggest-files-block { display: flex; flex-direction: column; gap: 24px; }
.suggest-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.suggest-actions .bttn { min-height: 48px; padding: 12px 16px; }
.suggest-files { display: flex; flex-direction: column; gap: 8px; }
.suggest-file { display: flex; align-items: center; gap: 8px; }
.suggest-file__name {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #f3f3f3;
  font-size: 16px;
  line-height: 1;
  color: #757575;
}
.suggest-file__name span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.suggest-file__remove {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: none;
  color: #757575;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.suggest-file__remove:hover { color: #1e1e22; }
.suggest-file__remove svg { width: 24px; height: 24px; display: block; }

.suggest-attach {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #e5e5e8;
  border-radius: 12px;
  background: #f3f3f3;
  color: #1e1e22;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.suggest-attach:hover { background: #ebebeb; }
.suggest-attach svg { width: 24px; height: 24px; flex: 0 0 auto; display: block; }
.suggest-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.suggest-submit {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  background: var(--violet);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.suggest-submit:hover { background: #5c4592; }
.suggest-submit:disabled { opacity: 0.6; cursor: default; }

.suggest-status { margin: 0; font-size: 16px; line-height: 1.4; }
.suggest-status.is-error { color: #c0392b; }
.suggest-status.is-success { color: #2e7d32; }
.suggest [hidden] { display: none !important; }
.suggest-note { margin: 32px 0 0; font-size: 18px; font-weight: 400; line-height: 1.5; color: #4b4b4b; }

@media (max-width: 1023px) {
  .suggest-form { gap: 40px; }
}
@media (max-width: 720px) {
  .suggest { max-width: none; }
  .suggest-form { margin-top: 28px; gap: 32px; }
  .suggest-group { gap: 24px; }
  .suggest-fields { gap: 24px; }
  .field__control { font-size: 16px; }
  .suggest-file__name { font-size: 14px; }
}
