* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000000;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background grid effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 8s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Glow effect from top center */
.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(43, 93, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-section {
    position: relative;
    z-index: 1;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: radial-gradient(circle at center, #2b5dff78 0%, #000000 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Promo Banner */
.promo-banner {
    background: rgba(43, 93, 255, 0.099);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-tag {
    background: rgba(43, 93, 255, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg,#ffffff,#2B5DFF, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}


.sub-headline {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2B5DFF 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 30px rgba(43, 93, 255, 0.4);
    animation: pulse-glow 2s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 30px rgba(43, 93, 255, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(43, 93, 255, 0.6);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2B5DFF 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 50px rgba(43, 93, 255, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.arrow {
    font-size: 1.2rem;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline {
        font-size: 3rem;
    }
    
    .sub-headline {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 2.8rem;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .promo-banner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: radial-gradient(circle at center, #2b5dff78 0%, #000000 100%);
    padding: 4rem 2rem;
    position: relative;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-btn {
    background: rgba(43, 93, 255, 0.099);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-btn:hover {
    background: rgba(43, 93, 255, 0.2);
    transform: translateY(-2px);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 34px;
    padding: 4px;
    background: linear-gradient(135deg, #2B5DFF, #000000);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: #1f1f1f;
}

.feature-card:hover::before {
    background: linear-gradient(135deg, #2B5DFF, #000000, #2B5DFF);
    background-size: 200% 200%;
    animation: gradientMove 2s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.feature-card.featured {
    box-shadow: 0 0 20px rgba(43, 93, 255, 0.3);
    background: #1a1a1a;
}

.feature-card.featured::before {
    background: linear-gradient(135deg, #2B5DFF, #000000);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #2B5DFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-description {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: radial-gradient(circle at center, #2b5dff78 0%, #000000 100%);
    padding: 4rem 2rem;
    position: relative;
}

.process-btn {
    background: rgba(43, 93, 255, 0.099);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-btn:hover {
    background: rgba(43, 93, 255, 0.2);
    transform: translateY(-2px);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2B5DFF, #000000, #2B5DFF);
    background-size: 200% 100%;
    animation: lineMove 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes lineMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.step-item {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 1;
}

.step-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, #2B5DFF, #000000);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-8px);
    background: #1f1f1f;
}

.step-item:hover::before {
    background: linear-gradient(135deg, #2B5DFF, #000000, #2B5DFF);
    background-size: 200% 200%;
    animation: gradientMove 2s ease-in-out infinite;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B5DFF;
    margin-bottom: 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #2B5DFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(43, 93, 255, 0.4);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.step-description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for How It Works */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 3rem 1rem;
    }
    
    .step-item {
        padding: 1.25rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Real Results Section */
.real-results-section {
    background: #000000;
    padding: 4rem 2rem;
    position: relative;
    margin-bottom: 2rem;
}

.results-btn {
    background: rgba(43, 93, 255, 0.099);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-btn:hover {
    background: rgba(43, 93, 255, 0.2);
    transform: translateY(-2px);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: radial-gradient(circle at center, #2b5dff78 0%, #000000 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
}

.result-card {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, #2B5DFF, #000000);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    background: #1f1f1f;
}

.result-card:hover::before {
    background: linear-gradient(135deg, #2B5DFF, #000000, #2B5DFF);
    background-size: 200% 200%;
    animation: gradientMove 2s ease-in-out infinite;
}

.result-icon {
    width: 60px;
    height: 60px;
    background: #2B5DFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.result-card:hover .result-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(43, 93, 255, 0.4);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #2B5DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.result-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* About Us Section */
.about-us-section {
    background: radial-gradient(circle at center, #2b5dff78 0%, #000000 100%);
    padding: 4rem 2rem;
    position: relative;
    margin-top: 2rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
}

.mission-card,
.vision-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #2B5DFF, #000000);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: left;
}

.mission-card p,
.vision-card p {
    color: #94a3b8;
    line-height: 1.6;
    text-align: left;
}


.about-stats {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 1.5rem;
    width: 320px;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #2B5DFF, #000000);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2B5DFF;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Design for Real Results and About Us */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 1;
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .real-results-section,
    .about-us-section {
        padding: 3rem 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        margin: 0;
    }
}

/* FAQ Section */
.faq-section {
    background: radial-gradient(circle at center, #2b5dff78 0%, #000000 100%);
    padding: 4rem 2rem;
    position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.question-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.question-item {
    background: #1a1a1a;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    position: relative;
    background-clip: padding-box;
}

.question-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, #2B5DFF, #000000);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
    transition: all 0.3s ease;
}

.question-item:hover {
    background: #1f1f1f;
    transform: translateX(4px);
}

.question-item.active {
    background: #1a1a1a;
    box-shadow: 0 0 10px rgba(43, 93, 255, 0.2);
}

.question-item.active::before {
    background: linear-gradient(135deg, #2B5DFF, #000000, #2B5DFF);
    background-size: 200% 200%;
    animation: gradientMove 2s ease-in-out infinite;
}

.question-item i {
    font-size: 0.875rem;
    color: #2B5DFF;
    transition: transform 0.3s ease;
}

.question-item.active i {
    transform: rotate(180deg);
}

.faq-answer {
    background: #1a1a1a;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-clip: padding-box;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #2B5DFF, #000000);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.answer-content {
    color: white;
    line-height: 1.6;
    font-size: 1rem;
}

.answer-content p {
    margin: 0;
}

.answer-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2B5DFF;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #1e4ed8;
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 0.875rem;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-title {
        font-size: 2.3rem;
    }
    
    .faq-answer {
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .question-item {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .faq-answer {
        padding: 1.5rem;
    }
}

/* CTA Section */
.cta-wrapper {
    background: #000000;
    padding: 0;
}

.cta-section {
    background: #0a0e27;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 16px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-highlight {
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #2B5DFF 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(43, 93, 255, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    animation: pulse-glow 2s infinite;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2B5DFF 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 50px rgba(43, 93, 255, 0.6);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: radial-gradient(circle at center, #2b5dff78 0%, #000000 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.marquee {
    position: absolute;
    left: 0;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    top: 0;
}

.marquee-1 {
    top: 0;
    animation: marqueeLeft 30s linear infinite;
}

.marquee-2 {
    top: 200px;
    animation: marqueeRight 35s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 0.75rem;
    min-width: 100px;
    max-width: 300px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    flex-shrink: 0;
    text-align: left;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #2B5DFF, #000000);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.testimonial-content {
    color: white;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: #e5e7eb;
    font-style: italic;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.author-info span {
    font-size: 0.875rem;
    color: #94a3b8;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.8rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        min-width: 90px;
        padding: 0.625rem;
    }
    
    .marquee-2 {
        top: 250px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        min-width: 80px;
        padding: 0.5rem;
    }
    
    .testimonials-wrapper {
        height: 400px;
    }
    
    .marquee-1 {
        animation: marqueeLeft 20s linear infinite;
    }
    
    .marquee-2 {
        top: 220px;
        animation: marqueeRight 25s linear infinite;
    }
}

/* Entrance Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes staggerIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-Synchronized Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform; /* Optimize for scroll animations */
}

/* Initial states for different animation types */
.animate-on-scroll.fade-in-left {
    transform: translateX(-30px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(30px);
}

.animate-on-scroll.scale-in {
    transform: scale(0.8);
}

.animate-on-scroll.slide-in-up {
    transform: translateY(50px);
}

/* Smooth transitions for hero elements only */
.hero-section .animate-on-scroll {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.stagger-in {
    animation: staggerIn 0.8s ease-out forwards;
}

/* Staggered animations for grid items */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Floating Telegram Icon */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.telegram-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

.telegram-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6);
}

.telegram-link i {
    font-size: 24px;
    color: white;
    z-index: 1;
    position: relative;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsiveness for floating icon */
@media (max-width: 768px) {
    .floating-telegram {
        bottom: 20px;
        right: 20px;
    }
    
    .telegram-link {
        width: 50px;
        height: 50px;
    }
    
    .telegram-link i {
        font-size: 20px;
    }
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(43, 93, 255, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #2B5DFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2B5DFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: #ef4444 !important;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(43, 93, 255, 0.3);
    position: relative;
}

.close {
    color: #9ca3af;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2B5DFF;
}

.modal h2 {
    color: #2B5DFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal h3 {
    color: white;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.modal p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal strong {
    color: #2B5DFF;
}

/* Mobile Footer Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    background: #000000;
    min-height: 100vh;
    padding: 2rem 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(43, 93, 255, 0.3);
}

.legal-header h1 {
    color: #2B5DFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.last-updated {
    color: #9ca3af;
    font-size: 0.9rem;
    font-style: italic;
}

.legal-content {
    color: #d1d5db;
    line-height: 1.8;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: #2B5DFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(43, 93, 255, 0.2);
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.legal-content a {
    color: #2B5DFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #60a5fa;
}

.disclaimer-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.disclaimer-box p {
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 1rem;
}

.disclaimer-box ul {
    color: #ef4444;
    margin: 0;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(43, 93, 255, 0.3);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2B5DFF;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 1px solid #2B5DFF;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #2B5DFF;
    color: white;
    transform: translateY(-2px);
}

/* Section CTAs */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.section-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Mobile Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 1rem 0;
    }
    
    .legal-container {
        padding: 0 1rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .disclaimer-box {
        padding: 1rem;
    }
    
    .section-cta {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
}
