/* ===== НЕСТАНДАРТНЫЙ ДИЗАЙН - ПЕРЕЗАГРУЗКА ===== */
:root {
    --primary: #FF4D8D;
    --secondary: #00D4FF;
    --accent: #FFD166;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --gray: #6C757D;
    --gradient: linear-gradient(135deg, #FF4D8D 0%, #00D4FF 100%);
    --gradient-reverse: linear-gradient(135deg, #00D4FF 0%, #FF4D8D 100%);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(26, 26, 46, 0.8);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== УНИКАЛЬНОЕ МЕНЮ ===== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 30px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.logo:hover::after {
    transform: translateX(0);
}

.logo-icon {
    margin-right: 12px;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(255, 77, 141, 0.3));
}

.nav-links {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.menu-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.menu-text {
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.menu-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover .menu-icon {
    transform: translateY(-5px) rotate(10deg);
    color: var(--secondary);
}

.nav-link:hover .menu-text {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link:hover .menu-line {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active .menu-line {
    transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
    display: none;
    background: var(--gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 77, 141, 0.3);
}

/* ===== НЕСТАНДАРТНАЯ ГЕРОЙ-СЕКЦИЯ ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/gradient-hero.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: blur(6px) brightness(0.8);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0 120px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 2rem auto 4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transition: transform 0.6s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 77, 141, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 77, 141, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 10px 0;
}

.btn-text:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.btn-small {
    padding: 12px 25px;
    font-size: 0.95rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 5rem;
    padding: 30px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    min-width: 200px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-weight: 500;
}

/* ===== УНИКАЛЬНАЯ СЕКЦИЯ ОТЗЫВОВ ===== */
.reviews-section {
    padding: 150px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 0;
}

.reviews-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-reverse);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '✦';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.review-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: var(--gradient);
    padding: 3px;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-author h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.review-author p {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

.review-rating {
    display: flex;
    margin-left: auto;
    gap: 3px;
}

.review-rating .star {
    width: 22px;
    height: 22px;
    color: #E5E7EB;
    transition: all 0.3s ease;
}

.review-rating .star.filled {
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(255, 209, 102, 0.3));
}

.review-content {
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.review-content p {
    color: var(--dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

.review-date i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.reviews-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== POPUP STYLES ===== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup.active {
    visibility: visible;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.popup-content {
    position: relative;
    z-index: 2;
    background-color: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.popup.active .popup-content {
    transform: translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #4f46e5;
    color: white;
}

.popup-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: white;
}

.popup-close {
    background: none;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.popup-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 90px);
}

/* Вакансии в popup */
.vacancy-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vacancy-item {
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.vacancy-item:hover {
    border-color: #c7d2fe;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.vacancy-header h4 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: #2d3748;
}

.vacancy-badge {
    background-color: #e0e7ff;
    color: #4f46e5;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vacancy-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vacancy-details p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.vacancy-description {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Контакты в popup - социальные ссылки */
.contact-social {
    text-align: center;
    padding: 20px 0;
}

.contact-social h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 700;
}

.contact-description {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.social-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #34aadc 100%);
    color: white;
}

.social-link.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 20px 40px rgba(0, 136, 204, 0.2);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.social-link.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

.social-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.social-icon i {
    width: 32px;
    height: 32px;
}

.social-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.social-content h5 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.social-content p {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 400;
}

.social-action {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-link:hover .social-action {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.social-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.social-badge i {
    width: 18px;
    height: 18px;
}

/* Адаптивность для социальных ссылок */
@media (max-width: 768px) {
    .social-link {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .social-icon {
        margin-right: 0;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
    }
    
    .social-icon i {
        width: 28px;
        height: 28px;
    }
    
    .social-content {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .social-badge {
        align-self: center;
    }
}

/* ===== МИНИМАЛИСТИЧНЫЙ ФУТЕР ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.footer-bottom p span {
    color: var(--secondary);
    font-weight: 600;
}

/* ===== ОТВЕТСТВЕННЫЙ ДИЗАЙН ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .header {
        top: 10px;
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: var(--glass-dark);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
        gap: 20px;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
        gap: 15px;
    }
    
    .menu-line {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        padding: 20px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .review-rating {
        margin-left: 0;
    }
}
.review-popup { position: fixed; inset:0; background: rgba(0,0,0,0.7); display:none; align-items:center; justify-content:center; z-index:9999;}
.review-popup.active { display:flex; }
.review-popup-content { background:#fff; padding:30px; width:420px; border-radius:12px; position:relative; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { transform: translateY(30px); opacity:0; } to { transform: translateY(0); opacity:1; } }
.close-popup { position:absolute; top:10px; right:15px; font-size:22px; cursor:pointer; }

.review-popup-content label { margin-top:15px; display:block; font-weight:500; }
.review-popup-content select, .review-popup-content textarea { width:100%; margin-top:5px; padding:10px; border-radius:8px; border:1px solid #ddd; }
.review-popup-content textarea { min-height:100px; resize:vertical; }

/* Звезды */
.rating-stars { display:flex; gap:5px; margin-top:10px; cursor:pointer; }
.rating-stars i { width:28px; height:28px; color:#ccc; transition:0.2s; }
.rating-stars i.active, .rating-stars i.hover { color:#facc15; }
.rating-stars i,
.rating-stars svg {
    width: 28px;
    height: 28px;
    color: #ccc;
    transition: color 0.2s;
    cursor: pointer;
}

.rating-stars i.active,
.rating-stars svg.active,
.rating-stars i.hover,
.rating-stars svg.hover {
    color: #facc15;
}