:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --secondary: #991b1b;
    --accent: #ff3333;
    --text: #fafafa;
    --text-light: #b0b0b0;
    --text-muted: #808080;
    --bg: #000000;
    --bg-alt: #1a1a1a;
    --bg-card: #0d0d0d;
    --border: #2a2a2a;
    --border-light: #333333;
    --success: #dc2626;
    --warning: #dc2626;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.7), 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 4px 20px rgba(220, 38, 38, 0.3), 0 2px 8px rgba(220, 38, 38, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

a:hover {
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

@media (min-width: 769px) {
    .nav-list {
        position: static;
        transform: none;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border: none;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    outline: none;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(220, 38, 38, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-anchor {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 24px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-anchor:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    opacity: 1;
}

.hero-anchor svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-item .icon {
    width: 32px;
    height: 32px;
    opacity: 0.9;
    color: var(--text);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4), 0 3px 10px rgba(220, 38, 38, 0.3);
    opacity: 1;
}

.btn-secondary {
    background: rgba(220, 38, 38, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: var(--primary-light);
    opacity: 1;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-offer {
    width: 100%;
    margin-top: 16px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    font-size: 14px;
}

.btn-link:hover {
    color: var(--primary-light);
    opacity: 1;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.offer-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.offer-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-alt);
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: var(--shadow-red);
}

.offer-badge.hot {
    background: var(--accent);
}

.offer-badge.new {
    background: var(--primary-light);
}

.offer-content {
    padding: 24px;
}

.offer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.offer-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.icon-small {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.offer-bonus {
    background: var(--bg-alt);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid var(--border);
}

.bonus-amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.bonus-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-text {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.cta-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.page-hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: var(--bg-card);
    border-radius: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-red);
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offer-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.offer-item-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-alt);
}

.offer-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-item-content {
    display: flex;
    flex-direction: column;
}

.offer-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.offer-item-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.offer-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.rating-text {
    margin-left: 8px;
    font-weight: 600;
    color: var(--text);
}

.offer-item-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.offer-item-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-alt);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text);
    border: 1px solid var(--border);
}

.icon-tiny {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.offer-item-bonus {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    color: white;
    box-shadow: var(--shadow-red);
}

.bonus-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.bonus-value {
    font-size: 24px;
    font-weight: 700;
}

.bonus-max {
    font-size: 18px;
    opacity: 0.9;
}

.bonus-extra {
    font-size: 14px;
    opacity: 0.85;
}

.offer-item-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: auto;
}

.offer-details {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.details-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.details-content ul {
    list-style: none;
    padding-left: 0;
}

.details-content li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

.details-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    border-radius: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.value-text {
    color: var(--text-light);
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--shadow-red);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.step-text {
    color: var(--text-light);
    line-height: 1.6;
}

.footer {
    background: var(--bg-alt);
    color: var(--text);
    padding: 60px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-text {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--text-light);
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-orgs {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-orgs a {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-orgs a:hover {
    opacity: 1;
}

.footer-orgs img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid var(--border);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list .nav-link {
        display: block;
        padding: 12px 0;
        width: 100%;
    }

    .hero-anchors {
        gap: 12px;
        margin-top: 32px;
    }

    .hero-anchor {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-anchor svg {
        width: 16px;
        height: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-item {
        grid-template-columns: 1fr;
    }

    .offer-item-image {
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.age-modal {
    text-align: center;
    padding: 40px 32px;
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header svg {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin: 0 auto 16px;
    display: block;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

.modal-body {
    margin-bottom: 32px;
}

.modal-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 16px;
}

.modal-warning {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 14px !important;
    padding: 12px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary);
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-actions .btn {
    min-width: 160px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 32px 24px;
    }

    .age-modal {
        padding: 32px 24px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}

.help-orgs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.help-org-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.help-org-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.help-org-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.help-org-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.help-org-card ul {
    margin-left: 20px;
    list-style: none;
}

.help-org-card li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.help-org-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.help-org-card strong {
    color: var(--text);
    font-weight: 600;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.policy-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 8px;
}

.policy-section li::marker {
    color: var(--primary);
}

.policy-link {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.2s;
}

.policy-link:hover {
    color: var(--primary-light);
    opacity: 1;
}

@media (max-width: 768px) {
    .policy-section h2 {
        font-size: 24px;
    }

    .policy-section h3 {
        font-size: 18px;
    }

    .policy-section {
        margin-bottom: 36px;
    }
}

.how-it-works {
    background: var(--bg-alt);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.step-number-large {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: var(--shadow-red);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 20px auto 24px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.step-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.step-card-text {
    color: var(--text-light);
    line-height: 1.7;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.bonus-types {
    background: var(--bg);
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}

.tab-btn {
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tabs-content {
    position: relative;
    min-height: 300px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.tab-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.tab-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.tab-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tab-text ul {
    margin-left: 24px;
    margin-top: 16px;
}

.tab-text li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.tab-text li::marker {
    color: var(--primary);
}

.stats-section {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-card) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.testimonials-section {
    background: var(--bg-alt);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 100%;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.author-location {
    font-size: 14px;
    color: var(--text-light);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--bg-card);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 40px;
    }

    .tab-content-wrapper {
        flex-direction: column;
    }

    .tab-icon {
        width: 64px;
        height: 64px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-value {
        font-size: 36px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

