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

        :root {
            --bg: transparent;
            --surface: #ffffff;
            --border: #e2e5eb;
            --accent: #5b8aca;
            --accent2: #3a6db5;
            --text: #111827;
            --muted: #6b7280;
            --toc-w: 45%;
        }

        body {
            font-family: 'Golos Text', sans-serif;
            color: var(--text);
            min-height: 100vh;
        }
        section {
            padding: 30px 0 !important;
        }
        #faq {
            width: 100%;
        }

        .faq-inner {
            display: flex;
            min-height: 100vh;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .faq-toc {
            position: sticky;
            top: 0;
            height: 100vh;
            width: var(--toc-w);
            flex-shrink: 0;
            padding: 0 48px 0 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid var(--border);
            background: transparent;
            overflow: hidden;
        }

        .toc-eyebrow {
            font-family: 'Unbounded', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .toc-title {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(28px, 3vw, 42px);
            font-weight: 700;
            line-height: 1.1;
            color: var(--text);
            margin-bottom: 12px;
        }

        .toc-title span {
            display: block;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .toc-subtitle {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 48px;
            max-width: 320px;
        }

        .toc-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .toc-list li {
            counter-increment: toc;
        }

        .toc-list a {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 12px 16px;
            border-radius: 8px;
            text-decoration: none;
            color: var(--muted);
            font-size: 13.5px;
            line-height: 1.45;
            transition: all 0.2s ease;
            position: relative;
            border: 1px solid transparent;
        }

        .toc-list a:hover {
            color: var(--text);
            background: rgba(0, 0, 0, 0.04);
            border-color: var(--border);
        }

        .toc-list a.active {
            color: var(--accent);
            background: rgba(91, 138, 202, 0.08);
            border-color: rgba(91, 138, 202, 0.25);
        }

        .toc-list a.active .toc-num {
            background: var(--accent);
            color: #fff;
        }

        .toc-num {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 4px;
            background: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Unbounded', sans-serif;
            font-size: 9px;
            font-weight: 600;
            color: var(--muted);
            margin-top: 1px;
            transition: all 0.2s ease;
        }

        .faq-content {
            flex: 1;
            padding: 60px 0 80px 64px;
            overflow-y: auto;
        }

        .faq-item {
            padding-bottom: 64px;
            margin-bottom: 64px;
            border-bottom: 1px solid var(--border);
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.5s forwards;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-item:nth-child(1) {
            animation-delay: 0.05s;
        }
        .faq-item:nth-child(2) {
            animation-delay: 0.1s;
        }
        .faq-item:nth-child(3) {
            animation-delay: 0.15s;
        }
        .faq-item:nth-child(4) {
            animation-delay: 0.2s;
        }
        .faq-item:nth-child(5) {
            animation-delay: 0.25s;
        }
        .faq-item:nth-child(6) {
            animation-delay: 0.3s;
        }
        .faq-item:nth-child(7) {
            animation-delay: 0.35s;
        }

        .faq-item-header {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 20px;
        }

        .faq-index {
            flex-shrink: 0;
            font-family: 'Unbounded', sans-serif;
            font-size: 11px;
            font-weight: 600;
            color: var(--accent);
            opacity: 0.6;
            margin-top: 4px;
            letter-spacing: 0.05em;
        }

        .faq-question {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(15px, 1.4vw, 18px);
            font-weight: 600;
            line-height: 1.4;
            color: var(--text);
        }

        .faq-answer {
            font-size: 15px;
            line-height: 1.75;
            color: #4b5563;
            padding-left: 40px;
        }

        .faq-answer strong {
            color: var(--text);
            font-weight: 500;
        }

        .faq-answer .highlight {
            display: inline-block;
            background: rgba(91, 138, 202, 0.1);
            border: 1px solid rgba(91, 138, 202, 0.25);
            color: var(--accent);
            padding: 1px 8px;
            border-radius: 4px;
            font-size: 13.5px;
            font-weight: 500;
            margin: 0 2px;
        }

        .reading-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            width: 0;
            z-index: 999;
            transition: width 0.1s linear;
        }

        .faq-content::-webkit-scrollbar {
            width: 4px;
        }
        .faq-content::-webkit-scrollbar-track {
            background: transparent;
        }
        .faq-content::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 2px;
        }

        @media(max-width: 768px) {
            .faq-inner {
                flex-direction: column;
                padding: 0 16px;
            }
            .faq-toc {
                position: relative;
                width: 100%;
                height: auto;
                padding: 40px 0;
            }
            .faq-content {
                padding: 40px 0;
            }
        }


/* закупки */
 .purchases-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 40px 80px;
  }

  .purchases-head {
    margin-bottom: 56px;
  }

  .purchases-eyebrow {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #5b8aca;
    opacity: 0.75;
    margin-bottom: 16px;
  }

  .purchases-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
  }

  .purchases-title span {
    background: linear-gradient(90deg, #5b8aca, #3a6db5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .purchases-section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    color: #111827;
    margin-bottom: 0;
    padding-bottom: 14px;
    border-bottom: 2px solid #5b8aca;
    display: inline-block;
  }

  .purchases-group {
    margin-bottom: 48px;
  }

  .purchases-group:last-child {
    margin-bottom: 0;
  }

  .purchases-list {
    list-style: none;
    margin-top: 0;
  }

  .purchase-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e5eb;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.4s forwards;
    text-decoration: none;
    color: inherit;
  }

  .purchase-item:first-child {
    border-top: 1px solid #e2e5eb;
  }

  .purchase-item:nth-child(1) { animation-delay: 0.05s; }
  .purchase-item:nth-child(2) { animation-delay: 0.1s; }
  .purchase-item:nth-child(3) { animation-delay: 0.15s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .purchase-item-icon {
    flex-shrink: 0;
    color: #5b8aca;
    opacity: 0.6;
    transition: opacity 0.2s;
  }

  .purchase-item:hover .purchase-item-icon {
    opacity: 1;
  }

  .purchase-item-body {
    flex: 1;
    min-width: 0;
  }

  .purchase-item-name {
    font-size: 14.5px;
    font-weight: 500;
    color: #111827;
    line-height: 1.45;
    transition: color 0.15s;
  }

  .purchase-item:hover .purchase-item-name {
    color: #5b8aca;
  }

  .purchase-item-meta {
    font-size: 12.5px;
    color: #9ca3af;
    margin-top: 3px;
  }

  .purchase-item-badge {
    flex-shrink: 0;
    font-size: 11.5px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .purchase-item-arrow {
    flex-shrink: 0;
    color: #d1d5db;
    transition: color 0.15s, transform 0.15s;
  }

  .purchase-item:hover .purchase-item-arrow {
    color: #5b8aca;
    transform: translateX(3px);
  }

  @media (max-width: 600px) {
    .purchases-wrap { padding: 40px 16px 60px; }
    .purchase-item-badge { display: none; }
  }


  .reading-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    width: 0;
    z-index: 999;
    transition: width 0.1s linear;
  }

  .privacy-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px 80px;
  }

  /* Section */
  .prv-section {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s forwards;
  }

  .prv-section:last-child { border-bottom: none; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .prv-section:nth-child(1)  { animation-delay: 0.04s; }
  .prv-section:nth-child(2)  { animation-delay: 0.08s; }
  .prv-section:nth-child(3)  { animation-delay: 0.12s; }
  .prv-section:nth-child(4)  { animation-delay: 0.16s; }
  .prv-section:nth-child(5)  { animation-delay: 0.20s; }
  .prv-section:nth-child(6)  { animation-delay: 0.24s; }
  .prv-section:nth-child(7)  { animation-delay: 0.28s; }
  .prv-section:nth-child(8)  { animation-delay: 0.32s; }
  .prv-section:nth-child(9)  { animation-delay: 0.36s; }
  .prv-section:nth-child(10) { animation-delay: 0.40s; }
  .prv-section:nth-child(11) { animation-delay: 0.44s; }
  .prv-section:nth-child(12) { animation-delay: 0.48s; }

  .prv-section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }

  .prv-index {
    flex-shrink: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.55;
    margin-top: 5px;
    letter-spacing: 0.05em;
  }

  .prv-section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
  }

  .prv-body {
    font-size: 14.5px;
    line-height: 1.78;
    color: #4b5563;
  }

  .prv-body p { margin-bottom: 12px; }
  .prv-body p:last-child { margin-bottom: 0; }
  .prv-body strong { color: var(--text); font-weight: 600; }

  .prv-body a, .prv-para a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(91,138,202,0.35);
    transition: border-color 0.15s;
  }
  .prv-body a:hover, .prv-para a:hover { border-color: var(--accent); }

  .prv-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
  }

  .prv-para {
    font-size: 14.5px;
    line-height: 1.75;
    color: #4b5563;
    padding: 12px 14px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
  }

  .prv-para:hover {
    background: rgba(0,0,0,0.025);
    border-left-color: var(--border);
  }

  .prv-para strong { color: var(--text); font-weight: 600; }

  .prv-sub {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 12px;
  }

  .prv-sub-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
  }

  .prv-sub-item::before {
    content: "—";
    color: var(--accent);
    opacity: 0.55;
    flex-shrink: 0;
  }

  /* Purpose table */
  .purpose-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .purpose-table tr { border-bottom: 1px solid var(--border); }
  .purpose-table tr:last-child { border-bottom: none; }

  .purpose-table th {
    background: rgba(91,138,202,0.07);
    color: var(--accent);
    font-family: 'Unbounded', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
    width: 190px;
    vertical-align: top;
    border-right: 1px solid var(--border);
  }

  .purpose-table td {
    padding: 12px 16px;
    color: #4b5563;
    line-height: 1.7;
    vertical-align: top;
  }

  .purpose-table tr:first-child th,
  .purpose-table tr:first-child td {
    background: linear-gradient(90deg, rgba(91,138,202,0.1), rgba(58,109,181,0.06));
  }

  .purpose-table tr:first-child td {
    font-weight: 500;
    color: var(--text);
    font-size: 14.5px;
  }

  .purpose-table ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
  .purpose-table ul li { display: flex; gap: 8px; align-items: baseline; }
  .purpose-table ul li::before {
    content: "—";
    color: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
  }

  @media (max-width: 600px) {
    .privacy-content { padding: 40px 16px 60px; }
  }


  /*ПОЛИТИКА ОБРАБОТКИ ПЕРСОНАЛЬНЫХ ДАННЫХ*/
  .reading-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    width: 0;
    z-index: 999;
    transition: width 0.1s linear;
  }

  .privacy-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px 80px;
  }

  /* Section */
  .prv-section {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s forwards;
  }

  .prv-section:last-child { border-bottom: none; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .prv-section:nth-child(1)  { animation-delay: 0.04s; }
  .prv-section:nth-child(2)  { animation-delay: 0.08s; }
  .prv-section:nth-child(3)  { animation-delay: 0.12s; }
  .prv-section:nth-child(4)  { animation-delay: 0.16s; }
  .prv-section:nth-child(5)  { animation-delay: 0.20s; }
  .prv-section:nth-child(6)  { animation-delay: 0.24s; }
  .prv-section:nth-child(7)  { animation-delay: 0.28s; }
  .prv-section:nth-child(8)  { animation-delay: 0.32s; }
  .prv-section:nth-child(9)  { animation-delay: 0.36s; }
  .prv-section:nth-child(10) { animation-delay: 0.40s; }
  .prv-section:nth-child(11) { animation-delay: 0.44s; }
  .prv-section:nth-child(12) { animation-delay: 0.48s; }

  .prv-section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }

  .prv-index {
    flex-shrink: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.55;
    margin-top: 5px;
    letter-spacing: 0.05em;
  }

  .prv-section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
  }

  .prv-body {
    font-size: 14.5px;
    line-height: 1.78;
    color: #4b5563;
  }

  .prv-body p { margin-bottom: 12px; }
  .prv-body p:last-child { margin-bottom: 0; }
  .prv-body strong { color: var(--text); font-weight: 600; }

  .prv-body a, .prv-para a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(91,138,202,0.35);
    transition: border-color 0.15s;
  }
  .prv-body a:hover, .prv-para a:hover { border-color: var(--accent); }

  .prv-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
  }

  .prv-para {
    font-size: 14.5px;
    line-height: 1.75;
    color: #4b5563;
    padding: 12px 14px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
  }

  .prv-para:hover {
    background: rgba(0,0,0,0.025);
    border-left-color: var(--border);
  }

  .prv-para strong { color: var(--text); font-weight: 600; }

  .prv-sub {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 12px;
  }

  .prv-sub-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
  }

  .prv-sub-item::before {
    content: "—";
    color: var(--accent);
    opacity: 0.55;
    flex-shrink: 0;
  }

  /* Purpose table */
  .purpose-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .purpose-table tr { border-bottom: 1px solid var(--border); }
  .purpose-table tr:last-child { border-bottom: none; }

  .purpose-table th {
    background: rgba(91,138,202,0.07);
    color: var(--accent);
    font-family: 'Unbounded', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
    width: 190px;
    vertical-align: top;
    border-right: 1px solid var(--border);
  }

  .purpose-table td {
    padding: 12px 16px;
    color: #4b5563;
    line-height: 1.7;
    vertical-align: top;
  }

  .purpose-table tr:first-child th,
  .purpose-table tr:first-child td {
    background: linear-gradient(90deg, rgba(91,138,202,0.1), rgba(58,109,181,0.06));
  }

  .purpose-table tr:first-child td {
    font-weight: 500;
    color: var(--text);
    font-size: 14.5px;
  }

  .purpose-table ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
  .purpose-table ul li { display: flex; gap: 8px; align-items: baseline; }
  .purpose-table ul li::before {
    content: "—";
    color: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
  }

  @media (max-width: 600px) {
    .privacy-content { padding: 40px 16px 60px; }
  }



.purchase-item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
