:root {
    --color-primary: #2563eb;
    --color-secondary: #1e40af;
    --color-accent: #fbbf24;
    --color-success: #10b981;
    --color-danger: #ef4444;
    --color-bg: #0f172a;
    --color-surface: #1e293b;
    --color-text: #f1f5f9;
    --color-text-secondary: #cbd5e1;
    --color-border: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 2px solid var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.full {
    width: 100% !important;
    margin-top: 20px;
}
.credentials-box {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.credentials-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.credentials-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.credentials-title {
    color: #fbbf24;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.credential-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.credential-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.credential-item span {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .credentials-box {
        padding: 2rem 1.5rem;
    }
    
    .credentials-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .credentials-title {
        font-size: 1.5rem;
    }
    
    .credential-item {
        padding: 1.2rem 1rem;
    }
    
    .credential-logo {
        width: 80px;
    }
}
.press-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--color-accent);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.2);
    border-top-color: #3b82f6;
}

.review-card:hover::before {
    opacity: 1;
}

.review-logo {
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
}

.review-logo img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.review-card:hover .review-logo img {
    filter: grayscale(0%);
}

.review-source {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.review-quote {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
    border-left: 3px solid rgba(59, 130, 246, 0.3);
}

.review-date {
    color: #7f8ca4;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Адаптивность */
@media (max-width: 768px) {
    .press-reviews {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-logo {
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .review-logo img {
        max-width: 120px;
        max-height: 50px;
    }
    
    .review-source {
        font-size: 1.1rem;
    }
    
    .review-quote {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 1.2rem;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #f59e0b 100%);
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.btn-secondary {
    background: var(--color-primary);
    color: white;
}

.btn-secondary:hover {
    background: var(--color-secondary);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    max-width: none;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-block {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: left;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Адаптивность для планшетов и мобильных */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}

/* Section Styling */
section {
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto !important;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--color-text-secondary);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.comparison-table thead {
    background: var(--color-primary);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #1e3a5f;
}

.check {
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.3rem;
}

.cross {
    color: var(--color-danger);
    font-size: 1.3rem;
}

/* Bonuses Section */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bonus-card-content {
    position: relative;
    z-index: 2;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--color-accent);
}

.bonus-terms {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--color-accent);
    font-weight: bold;
}

.review-date {
    color: #7f8ca4;
    font-size: 0.85rem;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.achievement {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--color-accent);
}

.achievement-number {
    font-size: 2.5rem;
    color: var(--color-accent);
    font-weight: bold;
}

.achievement-label {
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq-container {
    margin: 3rem auto;
}

.faq-item {
    background: var(--color-surface);
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.faq-question {
    background: var(--color-primary);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-secondary);
    padding-left: 2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}


/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-top: 2px solid var(--color-primary);
    padding: 4rem 5%;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--color-accent);
    margin-left: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--color-text-secondary);
}

.compliance-info {
    font-size: 0.85rem;
    color: #7f8ca4;
    margin-top: 1rem;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 3rem 5%;
        flex-direction: column;
    }
    .hero-block {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}