/* ============================================
   INFINITY STUDIO — STYLES
   ============================================ */

/* ---------- ПЕРЕМЕННЫЕ ---------- */
:root {
    --bg-color: #0B0815;
    --surface: #140A20;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: #A39BB8;
    --accent: #8A5CF5;
    --accent-hover: #A47CFF;
    --star: #fec200;
    --green: #73af00;
    --red: #bb0100;
    --gap: 20px;
    --pad: 26px;
    --radius: 22px;
}

/* ---------- СБРОС ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* ---------- ФОНОВЫЕ ПЯТНА ---------- */
.blob { position: fixed; border-radius: 50%; filter: blur(120px); z-index: 0; opacity: 0.4; pointer-events: none; }
.blob-1 { width: 500px; height: 500px; background: #5C2E91; top: -100px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: #2E5C91; bottom: -100px; right: -100px; }

/* ============================================
   ГЛАВНАЯ СЕТКА
   ============================================ */
.hero-section {
    display: grid;
    grid-template-columns: minmax(340px, 400px) 1fr;
    gap: 50px;
    width: 100%;
    max-width: 1360px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 50px 40px;
    align-items: center;
    z-index: 1;
    position: relative;
}

/* ============================================
   ЛЕВАЯ ПАНЕЛЬ
   ============================================ */
.left-panel { display: flex; flex-direction: column; gap: var(--gap); }

.logo-wrapper {
    width: 100%;
    max-width: 240px;
    filter: drop-shadow(0px 0px 25px rgba(138, 92, 245, 0.5));
}

.site-logo { width: 100%; height: auto; display: block; object-fit: contain; }

.left-panel h1 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1.1;
    background: linear-gradient(90deg, #FFFFFF, #A39BB8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 3px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
}

/* Быстрые ссылки */
.quick-links { display: flex; gap: 10px; flex-wrap: wrap; }

.quick-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quick-link:hover {
    background: rgba(138, 92, 245, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 92, 245, 0.3);
}

.amazing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #5a8800 0%, #d6a300 35%, #a80000 75%, #52061a 100%);
    box-shadow: 0 5px 18px rgba(168, 0, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.25), inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.amazing-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #73af00 0%, #fec200 35%, #bb0100 75%, #530614 100%);
    box-shadow: 0 8px 22px rgba(254, 194, 0, 0.35), 0 0 12px rgba(187, 1, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.4);
}

/* CTA блок */
.order-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: var(--pad);
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.order-block .label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 16px 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8A5CF5, #5C2E91);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(138, 92, 245, 0.4);
    width: 100%;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(138, 92, 245, 0.6);
    background: linear-gradient(135deg, #A47CFF, #8A5CF5);
}

.order-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; line-height: 1.5; }

/* ============================================
   ПРАВАЯ ПАНЕЛЬ
   ============================================ */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-height: 760px;
    height: 100%;
}

/* Карточки дизайнеров */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: rgba(138, 92, 245, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C0D33, #0B0815);
    border: 2px solid var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(138, 92, 245, 0.3);
    overflow: hidden;
}

.team-card .team-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.team-card h3 { font-size: 1rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.team-card .real-name { color: var(--text-muted); font-size: 0.78rem; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.team-card .team-role {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   БЛОК ОТЗЫВОВ (без внешнего контейнера)
   ============================================ */
.reviews-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-height: 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.reviews-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-title .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.write-review-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.write-review-btn:hover {
    border-color: var(--accent);
    background: rgba(138, 92, 245, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(138, 92, 245, 0.2);
}

/* Фильтр */
.reviews-filter {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.filter-btn:hover { color: var(--text-main); border-color: rgba(138, 92, 245, 0.4); }

.filter-btn.active {
    background: rgba(138, 92, 245, 0.15);
    border-color: var(--accent);
    color: var(--text-main);
}

.filter-btn .count {
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-muted);
    font-size: 0.62rem;
    padding: 1px 6px;
    border-radius: 6px;
    font-weight: 700;
}

.filter-btn.active .count {
    background: rgba(138, 92, 245, 0.4);
    color: #fff;
}

/* Список отзывов */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}

.reviews-list::-webkit-scrollbar { width: 5px; }
.reviews-list::-webkit-scrollbar-track { background: transparent; }
.reviews-list::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 3px; }
.reviews-list::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Карточка отзыва — лёгкая, без агрессивного hover */
.review-row {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 13px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.25s ease;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-row:hover {
    border-color: rgba(138, 92, 245, 0.3);
    background: rgba(138, 92, 245, 0.04);
}

.row-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A5CF5, #5C2E91);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    border: 2px solid rgba(138, 92, 245, 0.25);
    flex-shrink: 0;
}

.review-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.row-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-wrap: wrap;
}

.row-name {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.row-role {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.75;
    white-space: nowrap;
}

.row-stars {
    display: flex;
    gap: 1px;
    font-size: 0.76rem;
    color: var(--star);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.row-stars .empty { color: #3a2d52; }

.row-text {
    color: #c2b7d6;
    font-size: 0.82rem;
    line-height: 1.55;
    font-weight: 300;
    word-wrap: break-word;
}

/* Бейджи */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.63rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.verified-badge.verified {
    background: rgba(115, 175, 0, 0.15);
    color: #b3ff5c;
    border: 1px solid rgba(115, 175, 0, 0.3);
}

.verified-badge.unverified {
    background: rgba(187, 1, 0, 0.12);
    color: #ff9a9a;
    border: 1px solid rgba(187, 1, 0, 0.25);
}

.empty-reviews, .loading-reviews {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 300;
}

/* ============================================
   МОДАЛКИ
   ============================================ */
.admin-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
}

.admin-toggle:hover {
    background: rgba(138, 92, 245, 0.2);
    border-color: var(--accent);
    color: var(--text-main);
    transform: rotate(45deg) scale(1.05);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.modal.active { display: flex; }

.modal-content {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.admin-wide { max-width: 750px; }

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover { color: var(--text-main); }
.modal-content h2 { font-size: 1.5rem; margin-bottom: 22px; font-weight: 800; }

/* Формы */
.login-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group + .form-group { margin-top: 15px; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group .optional {
    text-transform: none;
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.75rem;
}

.form-input, .form-textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 13px 17px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.93rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(138, 92, 245, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Outfit', sans-serif;
}

/* Кнопки */
.btn-primary {
    background: linear-gradient(135deg, #8A5CF5, #5C2E91);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 92, 245, 0.4);
    background: linear-gradient(135deg, #A47CFF, #8A5CF5);
}

.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-danger {
    background: rgba(187, 1, 0, 0.2);
    color: #ff7a7a;
    border: 1px solid rgba(187, 1, 0, 0.4);
    padding: 11px 18px;
    border-radius: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover { background: rgba(187, 1, 0, 0.4); color: #fff; }

.btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    padding: 11px 18px;
    border-radius: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--text-main);
    border-color: var(--accent);
    background: rgba(138, 92, 245, 0.1);
}

.admin-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.admin-subtitle { font-size: 1rem; margin-bottom: 15px; color: var(--text-muted); }
.admin-reviews-list { margin-top: 25px; display: flex; flex-direction: column; gap: 10px; }

.admin-review-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-review-item.verified-item { border-left: 3px solid var(--green); }

.admin-review-item-info { flex: 1; overflow: hidden; min-width: 150px; }
.admin-review-item-info strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.admin-review-item-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-item-actions { display: flex; gap: 8px; flex-shrink: 0; }

.verify-toggle-btn {
    border: 1px solid var(--glass-border);
    background: transparent;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: var(--text-muted);
}

.verify-toggle-btn:hover { border-color: var(--accent); color: var(--text-main); }
.verify-toggle-btn.on {
    background: rgba(115, 175, 0, 0.2);
    border-color: rgba(115, 175, 0, 0.5);
    color: #b3ff5c;
}

.delete-btn {
    background: rgba(187, 1, 0, 0.2);
    border: 1px solid rgba(187, 1, 0, 0.4);
    color: #ff7a7a;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

.delete-btn:hover { background: rgba(187, 1, 0, 0.5); color: #fff; }

.admin-divider { border: none; border-top: 1px solid var(--glass-border); margin: 22px 0; }

/* Рейтинг */
.rating-input {
    display: flex;
    gap: 8px;
    font-size: 1.7rem;
    color: #3a2d52;
    cursor: pointer;
    user-select: none;
}

.rating-input span { transition: color 0.2s; }
.rating-input span.active { color: var(--star); }
.rating-input span:hover { color: var(--star); }

.error-message { color: #ff7a7a; font-size: 0.85rem; margin-top: 8px; display: none; }

.client-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.55;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.checkbox-group:hover { border-color: rgba(138, 92, 245, 0.4); }
.checkbox-group input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
    cursor: pointer;
}
.checkbox-group label { cursor: pointer; font-size: 0.88rem; color: var(--text-main); font-weight: 500; }

.already-reviewed { text-align: center; padding: 30px 20px; }
.already-reviewed .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(138, 92, 245, 0.5));
}
.already-reviewed h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.already-reviewed p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* Тост */
.toast {
    position: fixed;
    top: 25px;
    right: 25px;
    background: #1C0D33;
    border: 1px solid var(--accent);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    z-index: 2000;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 380px;
}

.toast.show { transform: translateX(0); }
.toast.error { border-color: #bb0100; background: #2a0a0a; }

/* ============================================
   COOKIE
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    max-width: 400px;
    background: rgba(20, 10, 32, 0.92);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px 22px;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: cookieSlideIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes cookieSlideIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-banner.hidden {
    animation: cookieSlideOut 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes cookieSlideOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(40px); }
}

.cookie-header { display: flex; align-items: center; gap: 12px; }

.cookie-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A5CF5, #5C2E91);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cookie-title { font-size: 1rem; font-weight: 700; }
.cookie-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; font-weight: 300; }
.cookie-text a { color: var(--accent); text-decoration: none; font-weight: 600; cursor: pointer; }
.cookie-text a:hover { color: var(--accent-hover); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

.cookie-btn-accept {
    flex: 1;
    background: linear-gradient(135deg, #8A5CF5, #5C2E91);
    color: #fff;
    border: none;
    padding: 11px 18px;
    border-radius: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 92, 245, 0.4);
}

.cookie-btn-more {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    padding: 11px 18px;
    border-radius: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-more:hover { color: var(--text-main); border-color: var(--accent); }

.cookie-info-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }
.cookie-info-text p { margin-bottom: 15px; }
.cookie-info-text strong { color: var(--text-main); font-weight: 600; }
.cookie-info-text ul { list-style: none; padding: 0; margin-bottom: 15px; }
.cookie-info-text li { padding: 8px 0 8px 25px; position: relative; font-size: 0.85rem; }
.cookie-info-text li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.7rem;
    top: 12px;
}

/* ============================================
   АДАПТИВ
   ============================================ */
@media (max-width: 1200px) {
    .hero-section { gap: 30px; padding: 40px 30px; }
    .left-panel h1 { font-size: 1.9rem; }
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 60px 24px;
        gap: 40px;
        align-items: start;
    }
    .right-panel { max-height: none; }
    .reviews-list { max-height: 500px; }
}

@media (max-width: 700px) {
    .team-grid { grid-template-columns: 1fr; }

    .reviews-header { flex-direction: column; align-items: stretch; }
    .write-review-btn { justify-content: center; }

    .reviews-filter { justify-content: center; }

    .review-row {
        grid-template-columns: 38px 1fr;
        padding: 12px 14px;
    }
    .row-avatar { width: 38px; height: 38px; font-size: 0.78rem; }
    .row-name { max-width: none; }

    .modal-content { padding: 28px 20px; }
    .toast { left: 16px; right: 16px; transform: translateY(-200px); max-width: none; }
    .toast.show { transform: translateY(0); }

    .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; padding: 18px; }
    .cookie-btn-more { display: none; }

    .left-panel h1 { font-size: 1.7rem; }
}