/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4aa;
    --primary-dark: #00b895;
    --primary-light: #00f5c8;
    --secondary-color: #667eea;
    --text-dark: #1a1a2e;
    --text-light: #4a5568;
    --bg-light: #1a202c;
    --bg-white: #2d3748;
    --bg-card: #374151;
    --bg-page: #111827;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00d4aa 0%, #00f5c8 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: var(--bg-page);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    text-align: center;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 212, 170, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: #f1f5f9;
    margin-bottom: 16px;
    font-size: 28px;
}

.modal-content p {
    color: #cbd5e1;
    margin-bottom: 32px;
    font-size: 16px;
}

.modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Header */
.header {
    background: rgba(29, 35, 48, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.2);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.6;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.15) 0%, transparent 50%);
}

/* Анимированные фишки */
.hero-chip {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.3) 0%, rgba(0, 245, 200, 0.2) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.4),
                0 0 60px rgba(0, 212, 170, 0.2),
                inset 0 0 20px rgba(0, 212, 170, 0.1);
    animation: float 20s infinite ease-in-out, pulse 3s infinite ease-in-out;
    backdrop-filter: blur(2px);
}

.hero-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
    animation: spin 10s linear infinite;
}

.hero-chip::after {
    content: '💎';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 212, 170, 0.6);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
}

.hero-chip:nth-child(2n)::after {
    content: '♠';
    font-size: 20px;
}

.hero-chip:nth-child(3n)::after {
    content: '♣';
    font-size: 22px;
}

.hero-chip:nth-child(5n)::after {
    content: '♦';
    font-size: 18px;
}

.hero-chip:nth-child(4)::after {
    content: '🎰';
    font-size: 24px;
}

.hero-chip:nth-child(7)::after {
    content: '🎲';
    font-size: 22px;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Маленькие частицы */
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.6);
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
    animation: drift 15s infinite ease-in-out;
}

.hero-particle:nth-child(11) {
    top: 25%;
    left: 30%;
    animation-duration: 12s;
    animation-delay: -2s;
}

.hero-particle:nth-child(12) {
    top: 45%;
    left: 70%;
    animation-duration: 14s;
    animation-delay: -5s;
}

.hero-particle:nth-child(13) {
    top: 65%;
    left: 40%;
    animation-duration: 16s;
    animation-delay: -8s;
}

.hero-particle:nth-child(14) {
    top: 35%;
    left: 85%;
    animation-duration: 13s;
    animation-delay: -3s;
}

.hero-particle:nth-child(15) {
    top: 80%;
    left: 20%;
    animation-duration: 15s;
    animation-delay: -10s;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(100px, -100px);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
}

.hero-chip:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.hero-chip:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 15%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.hero-chip:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 80%;
    animation-duration: 25s;
    animation-delay: -10s;
}

.hero-chip:nth-child(4) {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 75%;
    animation-duration: 20s;
    animation-delay: -15s;
}

.hero-chip:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 40%;
    left: 50%;
    animation-duration: 23s;
    animation-delay: -7s;
}

.hero-chip:nth-child(6) {
    width: 55px;
    height: 55px;
    top: 85%;
    left: 30%;
    animation-duration: 19s;
    animation-delay: -12s;
}

.hero-chip:nth-child(7) {
    width: 75px;
    height: 75px;
    top: 15%;
    left: 45%;
    animation-duration: 21s;
    animation-delay: -3s;
}

.hero-chip:nth-child(8) {
    width: 65px;
    height: 65px;
    top: 55%;
    left: 85%;
    animation-duration: 24s;
    animation-delay: -8s;
}

.hero-chip:nth-child(9) {
    width: 85px;
    height: 85px;
    top: 30%;
    left: 20%;
    animation-duration: 26s;
    animation-delay: -14s;
}

.hero-chip:nth-child(10) {
    width: 95px;
    height: 95px;
    top: 75%;
    left: 60%;
    animation-duration: 22s;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 40px) rotate(270deg) scale(1.15);
        opacity: 0.5;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.4),
                    0 0 60px rgba(0, 212, 170, 0.2),
                    inset 0 0 20px rgba(0, 212, 170, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 212, 170, 0.6),
                    0 0 100px rgba(0, 212, 170, 0.3),
                    inset 0 0 30px rgba(0, 212, 170, 0.2);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

/* Criteria Section */
.criteria {
    padding: 80px 0;
    background: var(--bg-page);
}

.criteria h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #f1f5f9;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.criteria-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 170, 0.2);
}

.criteria-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.criteria-icon {
    margin-bottom: 20px;
}

.criteria-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #f1f5f9;
}

.criteria-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Centers Section */
.centers {
    padding: 80px 0;
    background: #0f172a;
}

.centers h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #f1f5f9;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 60px;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.center-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 170, 0.2);
}

.center-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
}

.center-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.center-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient-2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.center-badge.popular {
    background: var(--gradient-1);
}

.center-badge.new {
    background: var(--gradient-3);
}

.center-header {
    margin-bottom: 24px;
}

.center-logo {
    margin-bottom: 16px;
}

.center-logo img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: contain;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    padding: 12px;
    background: #1e293b;
}

.center-logo img:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.center-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    color: #ffa500;
    font-size: 18px;
}

.center-rating span {
    color: #94a3b8;
    font-size: 14px;
}

.center-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.center-features {
    margin-bottom: 24px;
}

.feature {
    padding: 8px 0;
    color: #cbd5e1;
    font-size: 15px;
}

.center-bonus {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 245, 200, 0.1) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.center-bonus strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.center-bonus p {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-page);
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #f1f5f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 170, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #f1f5f9;
}

.service-card p {
    color: #cbd5e1;
    font-size: 15px;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #0f172a;
}

.trust h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #f1f5f9;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.trust-item p {
    color: #cbd5e1;
    font-size: 16px;
}

.trust-note {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid rgba(0, 212, 170, 0.2);
}

.trust-note p {
    margin-bottom: 12px;
    color: #cbd5e1;
}

.trust-note p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-page);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #f1f5f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 170, 0.2);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f1f5f9;
}

.faq-item p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 42px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f1f5f9 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact p {
    font-size: 18px;
    margin-bottom: 48px;
    color: #94a3b8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(0, 212, 170, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 170, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 18px 20px;
    border-radius: 14px;
    border: 2px solid rgba(0, 212, 170, 0.2);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    color: #e2e8f0;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: rgba(0, 212, 170, 0.4);
    background: rgba(15, 23, 42, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.15);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1), 
                0 8px 24px rgba(0, 212, 170, 0.2);
    transform: translateY(-2px);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300d4aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.contact-form select option {
    background: #1e293b;
    color: #e2e8f0;
    padding: 12px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
}

.contact-form button[type="submit"] {
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.contact-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form button[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form button[type="submit"]:active {
    transform: scale(0.98);
}

/* Responsible Section */
.responsible {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    color: white;
}

.responsible-content {
    text-align: center;
}

.responsible h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.responsible-item {
    text-align: center;
}

.responsible-item svg {
    margin-bottom: 20px;
    opacity: 0.9;
}

.responsible-item p {
    font-size: 16px;
    opacity: 0.9;
}

.responsible-note {
    font-size: 14px;
    opacity: 0.7;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #cbd5e1;
    padding: 2.5rem 0 1.5rem;
    box-shadow: 0 -6px 32px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    position: relative;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
}

.footer-logo-link {
    display: inline-block;
    flex-shrink: 0;
    padding: 12px 24px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    background: rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

.footer-logo-link svg {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(1.02);
}

.footer-disclaimer {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    flex: 1;
    min-width: 260px;
}

.footer-nav-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
}

.footer-nav-row a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-row a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-nav-row a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
}

.footer-nav-row a:hover::after {
    width: 100%;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem 3rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    color: #f1f5f9;
    opacity: 0.95;
}

.footer-badge-logo {
    padding: 0.5rem 0.85rem;
    transition: all 0.3s ease;
}

.footer-badge-logo:hover {
    transform: translateY(-3px);
}

.footer-badge-logo img {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    filter: brightness(0.95) drop-shadow(0 0 8px rgba(0, 212, 170, 0.3));
    transition: all 0.3s ease;
}

.footer-badge-logo:hover img {
    filter: brightness(1.1) drop-shadow(0 0 12px rgba(0, 212, 170, 0.6));
}

.footer-warning {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    max-width: 900px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-copy-left,
.footer-copy-right {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        min-width: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .footer-nav-row {
        gap: 0.5rem 1rem;
    }
    
    .footer-badges {
        align-items: center;
        gap: 0.6rem 0.75rem;
    }
    
    .footer-badge {
        max-width: 280px;
    }
    
    .footer-badge-logo img {
        height: 36px;
        max-width: 140px;
    }
}

@media (max-width: 600px) {
    .footer-nav-row a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1.25rem;
    }
    
    .footer-logo-link {
        padding: 8px 16px;
    }
    
    .footer-logo-link svg {
        height: 32px;
    }
    
    .footer-badge {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .footer-badge-logo img {
        height: 32px;
        max-width: 120px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(29, 35, 48, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 100px 40px 40px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        align-items: flex-start;
        gap: 24px;
        border-left: 1px solid rgba(0, 212, 170, 0.2);
        z-index: 1000;
    }

    .nav.active {
        display: flex;
        right: 0;
    }

    .nav a {
        font-size: 18px;
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .contact h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .criteria-grid,
    .centers-grid,
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .criteria,
    .centers,
    .services,
    .trust,
    .faq,
    .contact,
    .responsible {
        padding: 60px 0;
    }

    .criteria h2,
    .centers h2,
    .services h2,
    .trust h2,
    .faq h2,
    .contact h2,
    .responsible h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    /* Уменьшить фишки на планшетах */
    .hero-chip {
        transform: scale(0.7);
    }
    
    .hero-chip:nth-child(9),
    .hero-chip:nth-child(10) {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
    
    /* Еще меньше фишек на мобильных */
    .hero-chip {
        transform: scale(0.5);
    }
    
    .hero-chip:nth-child(6),
    .hero-chip:nth-child(7),
    .hero-chip:nth-child(8) {
        display: none;
    }

    .logo {
        font-size: 20px;
    }

    .modal-content {
        padding: 24px;
        margin: 20px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons button {
        width: 100%;
    }
}