/* ══════════════════════════════════════════════════════════
   pages.css — стили информационных страниц
   about, contacts, delivery, payment, privacy, terms
   ══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a0e 60%, #8b2e00 100%);
    color: white;
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,43,0.2);
    border: 1px solid rgba(255,107,43,0.4);
    color: #ff8c5a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.about-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.about-hero h1 span { color: #ff6b2b; }
.about-hero-lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin-bottom: 36px;
}
.about-hero-stats { display: flex; gap: 40px; }
.hero-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #ff6b2b;
    line-height: 1;
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-hero-flame {
    font-size: 120px;
    line-height: 1;
    opacity: 0.15;
    user-select: none;
    position: absolute;
    right: 0;
    top: -20px;
}
.about-breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: #888;
    border-bottom: 1px solid #e8e8e8;
    background: white;
}
.about-breadcrumb a { color: #888; text-decoration: none; }
.about-breadcrumb a:hover { color: #f25e5e; }
.about-breadcrumb span { margin: 0 6px; }
.about-body { padding: 56px 0 80px; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}
.about-section { margin-bottom: 52px; }
.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f25e5e;
    margin-bottom: 12px;
}
.about-section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #f25e5e;
    border-radius: 1px;
}
.about-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.about-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}
.about-section p:last-child { margin-bottom: 0; }
.about-principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.principle-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.principle-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: #f2b8a0;
}
.principle-ico { font-size: 28px; line-height: 1; flex-shrink: 0; }
.principle-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 4px; }
.principle-desc { font-size: 13px; color: #666; line-height: 1.5; }
.about-mission {
    background: linear-gradient(135deg, #fff5f0 0%, #fff9f7 100%);
    border: 1px solid #fde0d0;
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 52px;
    position: relative;
    overflow: hidden;
}
.about-mission::after {
    content: '🔥';
    position: absolute;
    right: 32px;
    bottom: -10px;
    font-size: 80px;
    opacity: 0.08;
    user-select: none;
}
.about-mission .about-section-label { margin-bottom: 12px; }
.about-mission h2 { font-size: 24px; font-weight: 800; color: #111; margin-bottom: 20px; }
.mission-items { display: flex; flex-direction: column; gap: 12px; }
.mission-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}
.mission-item-trigger { font-weight: 700; color: #c0392b; white-space: nowrap; flex-shrink: 0; }
.mission-cta {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #fccfbe;
    font-size: 16px;
    font-weight: 700;
    color: #c0392b;
}
.about-spec-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    transition: border-color 0.2s;
}
.spec-item:hover { border-color: #f2b8a0; }
.spec-item::before {
    content: '▸';
    color: #f25e5e;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}
.about-sidebar { position: static; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: white; border: 1px solid #eee; border-radius: 14px; overflow: hidden; }
.sidebar-card-head { background: #111; color: white; padding: 18px 22px; font-size: 14px; font-weight: 700; letter-spacing: 0.3px; }
.sidebar-card-head.fire { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.sidebar-card-body { padding: 22px; }
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row:first-child { padding-top: 0; }
.contact-ico {
    font-size: 18px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #fef0ec;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-info-val { font-size: 14px; font-weight: 600; color: #111; }
.contact-info-val a { color: #111; text-decoration: none; }
.contact-info-val a:hover { color: #f25e5e; }
.contact-info-sub { font-size: 12px; color: #888; margin-top: 1px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td { padding: 6px 0; font-size: 14px; }
.hours-table tr td:first-child { color: #666; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; color: #111; }
.hours-table tr.off td { color: #bbb; }
.hours-table tr.off td:last-child { color: #bbb; font-weight: 400; }
.about-locations { display: flex; flex-direction: column; gap: 12px; }
.location-item { background: #f9f9f9; border-radius: 10px; padding: 14px; font-size: 13px; }
.location-type { font-size: 11px; font-weight: 700; color: #f25e5e; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.location-addr { color: #333; line-height: 1.4; }
.location-addr a { color: #333; text-decoration: none; border-bottom: 1px dashed #ccc; }
.location-addr a:hover { color: #f25e5e; border-color: #f25e5e; }
.btn-call-back {
    display: block;
    background: #f25e5e;
    color: white;
    text-align: center;
    padding: 13px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
    margin-top: 4px;
}
.btn-call-back:hover { background: #d11313; }
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-sidebar { position: static; }
    .about-hero-stats { gap: 24px; }
    .about-hero-flame { display: none; }
    .about-principles { grid-template-columns: 1fr; }
    .about-mission { padding: 28px 24px; }
}
@media (max-width: 560px) {
    .about-hero { padding: 48px 0 40px; }
    .about-hero h1 { font-size: 28px; }
    .about-hero-stats { flex-wrap: wrap; gap: 20px; }
}


/* ─────────────────────────────────────────────────────────
   CONTACTS PAGE
   ───────────────────────────────────────────────────────── */
.contacts-hero {
    background: linear-gradient(135deg, #1c0a00 0%, #3d1a00 50%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 48px;
    position: relative;
    overflow: hidden;
}
.contacts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 40%, rgba(251,146,60,0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 70%, rgba(234,88,12,0.07) 0%, transparent 45%);
}
.contacts-hero-inner { position: relative; }
.contacts-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251,146,60,0.15);
    border: 1px solid rgba(251,146,60,0.3);
    color: #fb923c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.contacts-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.contacts-hero h1 span { color: #fb923c; }
.contacts-hero-lead {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin-bottom: 32px;
}
.contacts-hero-quick { display: flex; gap: 12px; flex-wrap: wrap; }
.contacts-hero-quick-item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.contacts-hero-quick-item:hover {
    background: rgba(251,146,60,0.15);
    border-color: rgba(251,146,60,0.35);
    color: #fb923c;
}
.contacts-hero-quick-item span { font-size: 18px; }
.contacts-breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: #888;
    border-bottom: 1px solid #e8e8e8;
    background: white;
}
.contacts-breadcrumb a { color: #888; text-decoration: none; }
.contacts-breadcrumb a:hover { color: #f25e5e; }
.contacts-breadcrumb span { margin: 0 6px; }
.contacts-body { padding: 52px 0 80px; }
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.c-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ea580c;
    margin-bottom: 10px;
}
.c-section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #ea580c;
    border-radius: 1px;
}
.c-section-title { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 22px; letter-spacing: -0.4px; }
.contacts-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.cinfo-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.cinfo-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); border-color: #fed7aa; }
.cinfo-ico {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}
.cinfo-label { font-size: 11px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.cinfo-value { font-size: 15px; font-weight: 700; color: #111; line-height: 1.4; }
.cinfo-value a { color: #111; text-decoration: none; }
.cinfo-value a:hover { color: #ea580c; }
.cinfo-sub { font-size: 12px; color: #888; margin-top: 3px; }
.cinfo-card.messengers .cinfo-value { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.messenger-btn:hover { background: #fff7ed; border-color: #fed7aa; color: #ea580c; }
.contact-form-wrap {
    background: white;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 0;
}
.contact-form-wrap .c-section-label { margin-bottom: 6px; }
.contact-form-wrap .c-section-title { margin-bottom: 8px; font-size: 20px; }
.contact-form-sub { font-size: 14px; color: #666; margin-bottom: 24px; line-height: 1.5; }
.cf-row { margin-bottom: 16px; }
.cf-row label { display: block; font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.cf-row input,
.cf-row textarea,
.cf-row select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #222;
    background: #fafafa;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
}
.cf-row input:focus,
.cf-row textarea:focus,
.cf-row select:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 3px rgba(251,146,60,0.12);
    background: white;
}
.cf-row textarea { resize: vertical; min-height: 110px; }
.cf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    cursor: pointer;
}
.cf-agree input[type="checkbox"] { width: 17px; height: 17px; margin-top: 1px; accent-color: #ea580c; flex-shrink: 0; }
.cf-agree a { color: #ea580c; }
.btn-cf-submit {
    width: 100%;
    background: linear-gradient(135deg, #c2410c, #ea580c);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    font-family: inherit;
}
.btn-cf-submit:hover { opacity: 0.92; }
.btn-cf-submit:active { transform: scale(0.98); }
.contacts-sidebar { position: static; }
.cs-card { background: white; border: 1px solid #eee; border-radius: 16px; overflow: hidden; }
.cs-card-head { padding: 16px 22px; font-size: 14px; font-weight: 700; color: white; background: #111; }
.cs-card-head.orange { background: linear-gradient(135deg, #c2410c, #ea580c); }
.cs-card-body { padding: 22px; }
.cs-location { padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.cs-location:first-child { padding-top: 0; }
.cs-location:last-child { border-bottom: none; padding-bottom: 0; }
.cs-loc-type { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: #ea580c; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.cs-loc-addr { font-size: 14px; color: #333; line-height: 1.5; margin-bottom: 8px; }
.cs-loc-links { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-loc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #ea580c;
    text-decoration: none;
    border: 1px solid #fed7aa;
    background: #fff7ed;
    border-radius: 6px;
    padding: 4px 10px;
    transition: background 0.15s;
}
.cs-loc-link:hover { background: #ffedd5; }
.cs-loc-coords { font-size: 11px; color: #aaa; margin-top: 5px; font-family: monospace; }
.cs-hours { display: flex; flex-direction: column; gap: 2px; }
.cs-hour-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid #f8f8f8; font-size: 14px; }
.cs-hour-row:last-child { border-bottom: none; }
.cs-hour-day { color: #555; }
.cs-hour-time { font-weight: 700; color: #111; }
.cs-hour-row.off .cs-hour-day { color: #bbb; }
.cs-hour-row.off .cs-hour-time { color: #bbb; font-weight: 400; }
.cs-open-now {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.cs-open-dot {
    width: 7px;
    height: 7px;
    background: #16a34a;
    border-radius: 50%;
    animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@media (max-width: 960px) {
    .contacts-grid { grid-template-columns: 1fr; }
    .contacts-sidebar { position: static; }
    .contacts-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .contacts-hero { padding: 44px 0 36px; }
    .contacts-hero-quick { gap: 8px; }
    .contacts-hero-quick-item { font-size: 13px; padding: 8px 12px; }
    .cf-row-2 { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 22px 18px; }
}


/* ─────────────────────────────────────────────────────────
   DELIVERY PAGE
   ───────────────────────────────────────────────────────── */
.delivery-hero {
    background: linear-gradient(135deg, #0f2027 0%, #1a3a4a 50%, #0d3b2e 100%);
    color: white;
    padding: 64px 0 52px;
    position: relative;
    overflow: hidden;
}
.delivery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(29,185,84,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(0,120,200,0.08) 0%, transparent 50%);
}
.delivery-hero-inner { position: relative; }
.delivery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(29,185,84,0.15);
    border: 1px solid rgba(29,185,84,0.35);
    color: #4ddb8a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.delivery-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.delivery-hero h1 span { color: #4ddb8a; }
.delivery-hero-lead { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 36px; }
.delivery-hero-facts { display: flex; gap: 32px; flex-wrap: wrap; }
.delivery-hero-fact { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); }
.delivery-hero-fact-ico { font-size: 20px; }
.delivery-breadcrumb { padding: 14px 0; font-size: 13px; color: #888; border-bottom: 1px solid #e8e8e8; background: white; }
.delivery-breadcrumb a { color: #888; text-decoration: none; }
.delivery-breadcrumb a:hover { color: #f25e5e; }
.delivery-breadcrumb span { margin: 0 6px; }
.delivery-body { padding: 52px 0 80px; }
.delivery-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f25e5e;
    margin-bottom: 12px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: #f25e5e; border-radius: 1px; }
.section-title { font-size: 26px; font-weight: 800; color: #111; margin-bottom: 28px; letter-spacing: -0.5px; line-height: 1.2; }
.delivery-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.delivery-card { background: white; border: 1px solid #e8e8e8; border-radius: 16px; overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
.delivery-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); border-color: #d0e8d8; }
.delivery-card-header { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-bottom: 1px solid #f0f0f0; }
.delivery-card-ico { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.ico-courier { background: #e8f5ff; }
.ico-truck   { background: #fff3e0; }
.ico-crane   { background: #fce4ec; }
.ico-tc      { background: #e8f5e9; }
.delivery-card-title { font-size: 17px; font-weight: 800; color: #111; margin-bottom: 2px; }
.delivery-card-sub { font-size: 13px; color: #888; }
.delivery-card-body { padding: 20px 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.delivery-card-body.wide { grid-template-columns: 1fr; }
.dc-param-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 4px; }
.dc-param-val { font-size: 14px; font-weight: 600; color: #111; }
.dc-param-note { font-size: 12px; color: #777; margin-top: 2px; line-height: 1.4; }
.dc-badge { display: inline-block; background: #f0faf3; color: #2e7d4f; border: 1px solid #c3e6cb; border-radius: 6px; font-size: 12px; font-weight: 700; padding: 2px 8px; }
.tc-partners { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 12px; }
.tc-partner { background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 700; color: #333; }
.delivery-steps { margin-top: 12px; display: flex; flex-direction: column; gap: 0; }
.delivery-step { display: flex; align-items: flex-start; gap: 16px; position: relative; }
.delivery-step:not(:last-child)::after { content: ''; position: absolute; left: 16px; top: 36px; bottom: -4px; width: 2px; background: #e8e8e8; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: #111; color: white; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; position: relative; z-index: 1; }
.step-content { padding: 4px 0 20px; }
.step-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 3px; }
.step-desc { font-size: 13px; color: #666; line-height: 1.5; }
.delivery-cta-block { background: linear-gradient(135deg, #e8f5e9, #f1f8f3); border: 1px solid #c8e6c9; border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.delivery-cta-text h3 { font-size: 18px; font-weight: 800; color: #1b5e20; margin-bottom: 6px; }
.delivery-cta-text p { font-size: 14px; color: #388e3c; line-height: 1.5; }
.btn-delivery-cta { display: inline-flex; align-items: center; gap: 8px; background: #2e7d32; color: white; padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background 0.15s; flex-shrink: 0; }
.btn-delivery-cta:hover { background: #1b5e20; }
.delivery-sidebar { position: static; }
.dside-card { background: white; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; }
.dside-head { background: #111; color: white; padding: 16px 20px; font-size: 14px; font-weight: 700; }
.dside-head.green { background: linear-gradient(135deg, #2e7d32, #388e3c); }
.dside-body { padding: 20px; }
.dside-tip { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; color: #444; line-height: 1.5; }
.dside-tip:last-child { border-bottom: none; padding-bottom: 0; }
.dside-tip:first-child { padding-top: 0; }
.dside-tip-ico { font-size: 18px; flex-shrink: 0; }
.dside-contact { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.dside-contact:last-of-type { border-bottom: none; }
.dside-contact:first-child { padding-top: 0; }
.dside-contact-ico { width: 30px; height: 30px; background: #f0faf3; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.dside-contact-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1px; }
.dside-contact-val { font-size: 13px; font-weight: 600; color: #111; }
.dside-contact-val a { color: #111; text-decoration: none; }
.dside-contact-val a:hover { color: #f25e5e; }
.btn-callback-green { display: block; background: #2e7d32; color: white; text-align: center; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; margin-top: 12px; transition: background 0.15s; }
.btn-callback-green:hover { background: #1b5e20; }
@media (max-width: 900px) {
    .delivery-grid { grid-template-columns: 1fr; }
    .delivery-sidebar { position: static; }
    .delivery-hero-facts { gap: 16px; }
    .delivery-card-body { grid-template-columns: 1fr 1fr; }
    .delivery-cta-block { flex-direction: column; }
}
@media (max-width: 560px) {
    .delivery-hero { padding: 44px 0 36px; }
    .delivery-card-body { grid-template-columns: 1fr; }
    .delivery-card-header { padding: 16px 18px; }
    .delivery-card-body { padding: 16px 18px; }
}


/* ─────────────────────────────────────────────────────────
   PAYMENT PAGE
   ───────────────────────────────────────────────────────── */
.payment-hero {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1a4a 50%, #1a2e1a 100%);
    color: white;
    padding: 60px 0 48px;
    position: relative;
    overflow: hidden;
}
.payment-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(147,51,234,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(34,197,94,0.08) 0%, transparent 50%);
}
.payment-hero-inner { position: relative; }
.payment-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(147,51,234,0.15); border: 1px solid rgba(147,51,234,0.35); color: #c084fc; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.payment-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.payment-hero h1 span { color: #a78bfa; }
.payment-hero-lead { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 32px; }
.payment-hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.ph-badge { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 8px 14px; font-size: 13px; color: rgba(255,255,255,0.85); }
.payment-breadcrumb { padding: 14px 0; font-size: 13px; color: #888; border-bottom: 1px solid #e8e8e8; background: white; }
.payment-breadcrumb a { color: #888; text-decoration: none; }
.payment-breadcrumb a:hover { color: #f25e5e; }
.payment-breadcrumb span { margin: 0 6px; }
.payment-body { padding: 52px 0 80px; }
.payment-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.pay-section { margin-bottom: 48px; }
.pay-section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #7c3aed; margin-bottom: 12px; }
.pay-section-label::before { content: ''; display: block; width: 20px; height: 2px; background: #7c3aed; border-radius: 1px; }
.pay-section-title { font-size: 24px; font-weight: 800; color: #111; margin-bottom: 20px; letter-spacing: -0.5px; }
.pay-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pay-card { background: white; border: 1px solid #e8e8e8; border-radius: 16px; padding: 24px; transition: box-shadow 0.2s, border-color 0.2s; }
.pay-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); border-color: #c4b5fd; }
.pay-card.full { grid-column: 1 / -1; }
.pay-card-ico { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; }
.ico-purple { background: #f5f3ff; }
.ico-blue   { background: #eff6ff; }
.ico-green  { background: #f0fdf4; }
.ico-orange { background: #fff7ed; }
.ico-red    { background: #fef2f2; }
.pay-card-title { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 8px; }
.pay-card-desc { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 14px; }
.pay-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-tag { background: #f5f5f5; border: 1px solid #e5e5e5; border-radius: 6px; padding: 3px 9px; font-size: 12px; font-weight: 600; color: #444; }
.pay-tag.purple { background: #f5f3ff; border-color: #ddd6fe; color: #6d28d9; }
.pay-tag.green  { background: #f0fdf4; border-color: #bbf7d0; color: #16a34a; }
.pay-tag.blue   { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.pay-card-note { margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f0; font-size: 12px; color: #888; line-height: 1.5; display: flex; align-items: flex-start; gap: 6px; }
.pay-card-note::before { content: 'ℹ'; font-size: 13px; color: #a78bfa; flex-shrink: 0; margin-top: -1px; }
.bank-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 0; }
.bank-tab { background: white; border: 1px solid #e8e8e8; border-radius: 14px; padding: 20px; transition: box-shadow 0.2s, border-color 0.2s; }
.bank-tab:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-color: #c4b5fd; }
.bank-tab-ico { font-size: 28px; margin-bottom: 10px; }
.bank-tab-title { font-size: 14px; font-weight: 800; color: #111; margin-bottom: 8px; }
.bank-tab-items { display: flex; flex-direction: column; gap: 5px; }
.bank-tab-item { font-size: 13px; color: #555; display: flex; align-items: center; gap: 6px; line-height: 1.4; }
.bank-tab-item::before { content: '✓'; color: #7c3aed; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.bank-tab-note { margin-top: 10px; font-size: 12px; color: #999; line-height: 1.4; }
.requisites-block { background: #faf9ff; border: 1px solid #e0d9ff; border-radius: 14px; padding: 20px 24px; margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.req-text { font-size: 14px; color: #444; line-height: 1.5; }
.req-text strong { color: #111; }
.btn-req { display: inline-flex; align-items: center; gap: 7px; background: #7c3aed; color: white; padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background 0.15s; flex-shrink: 0; }
.btn-req:hover { background: #5b21b6; }
.security-block { background: linear-gradient(135deg, #0f172a, #1e293b); border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.security-ico { font-size: 48px; flex-shrink: 0; }
.security-items { display: flex; gap: 28px; flex-wrap: wrap; flex: 1; }
.security-item { display: flex; align-items: flex-start; gap: 10px; }
.security-item-ico { font-size: 20px; flex-shrink: 0; }
.security-item-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 2px; }
.security-item-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.refund-block { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 14px; padding: 24px 28px; display: flex; align-items: flex-start; gap: 16px; }
.refund-ico { font-size: 32px; flex-shrink: 0; }
.refund-title { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 6px; }
.refund-desc { font-size: 14px; color: #555; line-height: 1.6; }
.payment-sidebar { position: static; }
.pside-card { background: white; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; }
.pside-head { padding: 16px 20px; font-size: 14px; font-weight: 700; color: white; background: #111; }
.pside-head.purple { background: linear-gradient(135deg, #6d28d9, #7c3aed); }
.pside-body { padding: 20px; }
.pside-step { display: flex; align-items: flex-start; gap: 12px; position: relative; }
.pside-step:not(:last-child) { padding-bottom: 16px; }
.pside-step:not(:last-child)::after { content: ''; position: absolute; left: 14px; top: 30px; bottom: 0; width: 2px; background: #f0f0f0; }
.pside-step-num { width: 28px; height: 28px; border-radius: 50%; background: #7c3aed; color: white; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.pside-step-title { font-size: 13px; font-weight: 700; color: #111; margin-bottom: 2px; padding-top: 4px; }
.pside-step-desc { font-size: 12px; color: #777; line-height: 1.4; }
.pside-contact { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f5f5f5; }
.pside-contact:first-child { padding-top: 0; }
.pside-contact:last-of-type { border-bottom: none; }
.pside-contact-ico { width: 28px; height: 28px; border-radius: 7px; background: #f5f3ff; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.pside-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1px; }
.pside-val { font-size: 13px; font-weight: 600; color: #111; }
.pside-val a { color: #111; text-decoration: none; }
.pside-val a:hover { color: #7c3aed; }
.btn-callback-purple { display: block; background: #7c3aed; color: white; text-align: center; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; margin-top: 12px; transition: background 0.15s; }
.btn-callback-purple:hover { background: #5b21b6; }
@media (max-width: 960px) {
    .payment-grid { grid-template-columns: 1fr; }
    .payment-sidebar { position: static; }
    .bank-tabs { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .pay-cards { grid-template-columns: 1fr; }
    .pay-card.full { grid-column: 1; }
    .security-block { padding: 20px; }
    .security-items { gap: 16px; }
    .payment-hero { padding: 44px 0 36px; }
    .payment-hero-badges { gap: 8px; }
    .requisites-block { flex-direction: column; }
}


/* ─────────────────────────────────────────────────────────
   PRIVACY PAGE
   ───────────────────────────────────────────────────────── */
.privacy-hero {
    background: linear-gradient(135deg, #052e16 0%, #064e3b 55%, #0f172a 100%);
    color: white;
    padding: 56px 0 44px;
    position: relative;
    overflow: hidden;
}
.privacy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 35%, rgba(16,185,129,0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 75%, rgba(5,150,105,0.07) 0%, transparent 45%);
}
.privacy-hero-inner { position: relative; }
.privacy-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; }
.privacy-hero h1 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.8px; }
.privacy-hero-lead { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.65; margin-bottom: 28px; }
.privacy-hero-shields { display: flex; gap: 12px; flex-wrap: wrap; }
.privacy-shield { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 9px 15px; font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; }
.privacy-shield span { font-size: 17px; }
.privacy-breadcrumb { padding: 14px 0; font-size: 13px; color: #888; border-bottom: 1px solid #e8e8e8; background: white; }
.privacy-breadcrumb a { color: #888; text-decoration: none; }
.privacy-breadcrumb a:hover { color: #f25e5e; }
.privacy-breadcrumb span { margin: 0 6px; }
.privacy-body { padding: 48px 0 80px; background: #f9f9f9; }
.privacy-grid { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.privacy-toc { position: sticky; top: 20px; background: white; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; }
.privacy-toc-head { background: #064e3b; color: white; padding: 14px 18px; font-size: 13px; font-weight: 700; }
.privacy-toc-list { padding: 6px 0; }
.privacy-toc-item { display: flex; align-items: center; gap: 9px; padding: 8px 18px; font-size: 13px; color: #444; text-decoration: none; transition: background 0.12s, color 0.12s; border-left: 3px solid transparent; line-height: 1.35; }
.privacy-toc-item:hover, .privacy-toc-item.active { background: #ecfdf5; color: #065f46; border-left-color: #10b981; }
.privacy-toc-ico { font-size: 15px; flex-shrink: 0; }
.privacy-toc-divider { height: 1px; background: #f0f0f0; margin: 4px 0; }
.privacy-toc-cert { padding: 14px 18px; border-top: 1px solid #f0f0f0; font-size: 12px; color: #777; line-height: 1.5; }
.privacy-toc-cert strong { color: #065f46; display: block; margin-bottom: 3px; }
.privacy-content { display: flex; flex-direction: column; gap: 20px; }
.priv-card { background: white; border: 1px solid #e8e8e8; border-radius: 16px; overflow: hidden; }
.priv-card-head { display: flex; align-items: center; gap: 14px; padding: 20px 28px; border-bottom: 1px solid #f0f0f0; background: #fafafa; }
.priv-card-ico { width: 44px; height: 44px; border-radius: 12px; background: #ecfdf5; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.priv-card-title { font-size: 17px; font-weight: 800; color: #111; letter-spacing: -0.3px; }
.priv-card-body { padding: 24px 28px; }
.priv-para { font-size: 14px; color: #333; line-height: 1.75; margin-bottom: 16px; }
.priv-para:last-child { margin-bottom: 0; }
.priv-list { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.priv-list-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #333; line-height: 1.6; }
.priv-list-item::before { content: '✓'; color: #10b981; font-size: 12px; font-weight: 800; flex-shrink: 0; margin-top: 3px; width: 14px; }
.priv-list-item.cross::before { content: '✗'; color: #ef4444; }
.priv-highlight { border-radius: 10px; padding: 14px 18px; font-size: 14px; line-height: 1.65; margin: 14px 0; display: flex; gap: 12px; align-items: flex-start; }
.priv-highlight.green { background: #ecfdf5; border: 1px solid #a7f3d0; color: #064e3b; }
.priv-highlight.blue { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e3a5f; }
.priv-highlight.yellow { background: #fffbeb; border: 1px solid #fde68a; color: #78350f; }
.priv-highlight-ico { font-size: 20px; flex-shrink: 0; margin-top: -1px; }
.pci-badge { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #0f172a, #1e3a5f); color: white; border-radius: 12px; padding: 14px 20px; margin: 14px 0; width: 100%; }
.pci-badge-ico { font-size: 28px; flex-shrink: 0; }
.pci-badge-text { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.85); }
.pci-badge-text strong { display: block; font-size: 14px; color: white; margin-bottom: 2px; }
.payment-flow { display: flex; flex-direction: column; gap: 0; margin: 10px 0; }
.pf-step { display: flex; align-items: flex-start; gap: 14px; position: relative; padding-bottom: 18px; }
.pf-step:last-child { padding-bottom: 0; }
.pf-step:not(:last-child)::after { content: ''; position: absolute; left: 17px; top: 36px; bottom: 0; width: 2px; background: #d1fae5; }
.pf-num { width: 36px; height: 36px; border-radius: 50%; background: #10b981; color: white; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.pf-title { font-size: 14px; font-weight: 700; color: #111; padding-top: 7px; }
.pf-desc { font-size: 13px; color: #666; margin-top: 2px; line-height: 1.5; }
.priv-divider { height: 1px; background: #f0f0f0; margin: 20px 0; }
.priv-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 10px 0; }
.priv-table th { background: #ecfdf5; color: #065f46; font-weight: 700; padding: 9px 14px; text-align: left; border: 1px solid #a7f3d0; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.priv-table td { padding: 9px 14px; border: 1px solid #eee; color: #333; line-height: 1.5; vertical-align: top; }
.priv-table tr:nth-child(even) td { background: #f9fdf9; }
.privacy-footer-card { background: linear-gradient(135deg, #052e16, #064e3b); border-radius: 16px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.privacy-footer-text { font-size: 13px; color: rgba(255,255,255,0.55); }
.privacy-footer-text strong { color: white; display: block; font-size: 14px; margin-bottom: 4px; }
.privacy-footer-links { display: flex; gap: 10px; flex-wrap: wrap; }
.privacy-footer-link { font-size: 13px; font-weight: 600; color: #6ee7b7; text-decoration: none; border: 1px solid rgba(110,231,183,0.25); padding: 6px 14px; border-radius: 7px; transition: background 0.15s; }
.privacy-footer-link:hover { background: rgba(110,231,183,0.1); }
@media (max-width: 860px) {
    .privacy-grid { grid-template-columns: 1fr; }
    .privacy-toc { position: static; }
}
@media (max-width: 600px) {
    .privacy-hero { padding: 44px 0 36px; }
    .priv-card-body { padding: 18px; }
    .priv-card-head { padding: 16px 18px; }
    .privacy-footer-card { flex-direction: column; align-items: flex-start; }
}


/* ─────────────────────────────────────────────────────────
   TERMS PAGE
   ───────────────────────────────────────────────────────── */
.terms-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2027 100%);
    color: white;
    padding: 56px 0 44px;
    position: relative;
    overflow: hidden;
}
.terms-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(99,102,241,0.08) 0%, transparent 60%); }
.terms-hero-inner { position: relative; }
.terms-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); color: #a5b4fc; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; }
.terms-hero h1 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.8px; }
.terms-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.5); }
.terms-hero-meta span { display: flex; align-items: center; gap: 6px; }
.terms-breadcrumb { padding: 14px 0; font-size: 13px; color: #888; border-bottom: 1px solid #e8e8e8; background: white; }
.terms-breadcrumb a { color: #888; text-decoration: none; }
.terms-breadcrumb a:hover { color: #f25e5e; }
.terms-breadcrumb span { margin: 0 6px; }
.terms-body { padding: 48px 0 80px; background: #f9f9f9; }
.terms-grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.terms-toc { position: sticky; top: 20px; background: white; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; }
.terms-toc-head { background: #0f172a; color: white; padding: 14px 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }
.terms-toc-list { padding: 8px 0; }
.terms-toc-item { display: flex; align-items: flex-start; gap: 8px; padding: 7px 18px; font-size: 13px; color: #444; text-decoration: none; line-height: 1.4; transition: background 0.12s, color 0.12s; border-left: 3px solid transparent; }
.terms-toc-item:hover, .terms-toc-item.active { background: #f5f3ff; color: #5b21b6; border-left-color: #7c3aed; }
.terms-toc-num { font-size: 11px; font-weight: 700; color: #bbb; flex-shrink: 0; padding-top: 1px; min-width: 18px; }
.terms-toc-item:hover .terms-toc-num, .terms-toc-item.active .terms-toc-num { color: #7c3aed; }
.terms-toc-divider { height: 1px; background: #f0f0f0; margin: 4px 0; }
.terms-toc-contact { padding: 14px 18px; border-top: 1px solid #f0f0f0; font-size: 12px; color: #666; }
.terms-toc-contact a { display: block; font-weight: 700; color: #111; text-decoration: none; margin-top: 4px; }
.terms-toc-contact a:hover { color: #7c3aed; }
.terms-content { background: white; border: 1px solid #e8e8e8; border-radius: 16px; overflow: hidden; }
.terms-doc-header { padding: 28px 36px; border-bottom: 1px solid #f0f0f0; background: #fafafa; }
.terms-seller-info { display: flex; gap: 28px; flex-wrap: wrap; }
.terms-seller-item { font-size: 13px; color: #555; line-height: 1.5; }
.terms-seller-item strong { color: #111; display: block; margin-bottom: 1px; }
.terms-glossary { padding: 24px 36px; border-bottom: 2px solid #f0f0f0; background: #fdfcff; }
.terms-glossary-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #888; margin-bottom: 14px; }
.terms-glossary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.terms-glossary-item { font-size: 13px; line-height: 1.5; color: #444; }
.terms-glossary-item strong { color: #5b21b6; }
.terms-section { padding: 28px 36px; border-bottom: 1px solid #f3f3f3; }
.terms-section:last-child { border-bottom: none; }
.terms-section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; cursor: pointer; }
.terms-section-num { width: 36px; height: 36px; border-radius: 10px; background: #f5f3ff; color: #7c3aed; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.terms-section-title { font-size: 17px; font-weight: 800; color: #111; letter-spacing: -0.3px; }
.terms-items { display: flex; flex-direction: column; gap: 10px; }
.terms-item { display: grid; grid-template-columns: 52px 1fr; gap: 0 10px; font-size: 14px; line-height: 1.65; color: #333; }
.terms-item-num { font-size: 12px; font-weight: 700; color: #bbb; padding-top: 2px; text-align: right; padding-right: 4px; }
.terms-subitem { display: grid; grid-template-columns: 64px 1fr; gap: 0 10px; font-size: 13px; line-height: 1.6; color: #555; margin-top: 6px; margin-left: 52px; }
.terms-subitem-num { font-size: 11px; font-weight: 600; color: #ccc; text-align: right; padding-right: 4px; padding-top: 2px; }
.terms-highlight { background: #fffbeb; border: 1px solid #fde68a; border-left: 4px solid #f59e0b; border-radius: 0 8px 8px 0; padding: 12px 16px; font-size: 13px; color: #78350f; line-height: 1.6; margin-top: 8px; margin-left: 52px; }
.terms-highlight.info { background: #eff6ff; border-color: #bfdbfe; border-left-color: #3b82f6; color: #1e3a5f; }
.terms-highlight.danger { background: #fef2f2; border-color: #fecaca; border-left-color: #ef4444; color: #7f1d1d; }
.terms-list { margin-left: 52px; margin-top: 6px; padding-left: 16px; }
.terms-list li { font-size: 13px; color: #444; line-height: 1.6; margin-bottom: 4px; }
.terms-list li::marker { color: #7c3aed; }
.terms-sub-section { margin-top: 16px; padding-top: 14px; border-top: 1px dashed #eee; }
.terms-sub-section-title { font-size: 13px; font-weight: 800; color: #333; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; margin-left: 52px; display: flex; align-items: center; gap: 7px; }
.terms-sub-section-title::before { content: ''; display: block; width: 14px; height: 2px; background: #7c3aed; border-radius: 1px; }
.terms-table { width: calc(100% - 52px); margin-left: 52px; margin-top: 8px; border-collapse: collapse; font-size: 13px; }
.terms-table th { background: #f5f3ff; color: #5b21b6; font-weight: 700; padding: 8px 12px; text-align: left; border: 1px solid #e0d9ff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.terms-table td { padding: 8px 12px; border: 1px solid #eee; color: #333; vertical-align: top; line-height: 1.5; }
.terms-table tr:nth-child(even) td { background: #fafaf8; }
.terms-footer-block { padding: 24px 36px; background: #0f172a; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.terms-footer-text { font-size: 13px; color: rgba(255,255,255,0.55); }
.terms-footer-text strong { color: rgba(255,255,255,0.85); display: block; margin-bottom: 2px; }
.terms-footer-links { display: flex; gap: 12px; }
.terms-footer-link { font-size: 13px; font-weight: 600; color: #a5b4fc; text-decoration: none; border: 1px solid rgba(165,180,252,0.25); padding: 6px 14px; border-radius: 7px; transition: background 0.15s; }
.terms-footer-link:hover { background: rgba(165,180,252,0.1); }
@media (max-width: 900px) {
    .terms-grid { grid-template-columns: 1fr; }
    .terms-toc { position: static; }
    .terms-glossary-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .terms-section { padding: 22px 18px; }
    .terms-doc-header { padding: 18px; }
    .terms-glossary { padding: 18px; }
    .terms-item { grid-template-columns: 44px 1fr; }
    .terms-subitem { margin-left: 44px; grid-template-columns: 56px 1fr; }
    .terms-highlight { margin-left: 44px; }
    .terms-list { margin-left: 44px; }
    .terms-sub-section-title { margin-left: 44px; }
    .terms-table { width: calc(100% - 44px); margin-left: 44px; }
    .terms-footer-block { flex-direction: column; align-items: flex-start; }
}
