/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #4a2c7a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    font-size: 28px;
    color: #ff6b9d;
}

.logo-text {
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b9d;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #4a2c7a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 27, 105, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.rocket {
    font-size: 16px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #b8b8d1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b8b8d1;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 157, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b9d;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-description {
    color: #b8b8d1;
    line-height: 1.6;
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #4a2c7a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b9d;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    text-align: center;
}

.step-item {
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-description {
    color: #b8b8d1;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #4a2c7a 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: #ff6b9d;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #ff6b9d;
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 15px 0 25px 0;
    color: #b8b8d1;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #4a2c7a 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(45, 27, 105, 0.8);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #b8b8d1;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a0b2e;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background: #ff6b9d;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #b8b8d1;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #b8b8d1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Arrows */
.scroll-arrow {
    position: fixed;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.scroll-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.scroll-arrow i {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.scroll-down {
    bottom: 30px;
}

.scroll-up {
    top: 50%;
    transform: translateY(-50%) scale(0.8);
}

.scroll-arrow.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-up.show {
    transform: translateY(-50%) scale(1);
}

/* Responsive scroll arrows */
@media (max-width: 768px) {
    .scroll-arrow {
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .scroll-arrow i {
        font-size: 16px;
    }
}

/* Loading animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animate {
    animation: countUp 0.6s ease-out;
}

/* Parallax Bubbles */
#bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.35) 0%, rgba(196, 69, 105, 0.2) 100%);
    border: 1px solid rgba(255, 107, 157, 0.5);
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
    animation: float 4s linear infinite;
    will-change: transform;
}

.bubble-1 {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 0.3s;
    animation-duration: 4s;
}

.bubble-3 {
    width: 35px;
    height: 35px;
    left: 30%;
    animation-delay: 0.6s;
    animation-duration: 2.5s;
}

.bubble-4 {
    width: 70px;
    height: 70px;
    left: 40%;
    animation-delay: 0.9s;
    animation-duration: 5s;
}

.bubble-5 {
    width: 45px;
    height: 45px;
    left: 50%;
    animation-delay: 1.2s;
    animation-duration: 3.5s;
}

.bubble-6 {
    width: 55px;
    height: 55px;
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.bubble-7 {
    width: 38px;
    height: 38px;
    left: 70%;
    animation-delay: 1.8s;
    animation-duration: 3s;
}

.bubble-8 {
    width: 65px;
    height: 65px;
    left: 80%;
    animation-delay: 2.1s;
    animation-duration: 5.5s;
}

.bubble-9 {
    width: 42px;
    height: 42px;
    left: 90%;
    animation-delay: 2.4s;
    animation-duration: 4s;
}

.bubble-10 {
    width: 50px;
    height: 50px;
    left: 5%;
    animation-delay: 2.7s;
    animation-duration: 3.5s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50px) translateX(150px) rotate(360deg);
        opacity: 0;
    }
}

/* Parallax effect for bubbles */
.bubble-1, .bubble-3, .bubble-5, .bubble-7, .bubble-9 {
    animation-timing-function: linear;
}

.bubble-2, .bubble-4, .bubble-6, .bubble-8, .bubble-10 {
    animation-timing-function: linear;
}

/* Responsive bubbles */
@media (max-width: 768px) {
    .bubble {
        opacity: 0.7;
    }
    
    .bubble-1, .bubble-3, .bubble-5, .bubble-7, .bubble-9 {
        width: 30px;
        height: 30px;
    }
    
    .bubble-2, .bubble-4, .bubble-6, .bubble-8, .bubble-10 {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .bubble {
        opacity: 0.6;
    }
    
    .bubble-1, .bubble-3, .bubble-5, .bubble-7, .bubble-9 {
        width: 25px;
        height: 25px;
    }
    
    .bubble-2, .bubble-4, .bubble-6, .bubble-8, .bubble-10 {
        width: 35px;
        height: 35px;
    }
}

/* Cobweb Effect */
#cobweb-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.cobweb {
    position: absolute;
    width: 60px;
    height: 60px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0.7;
    z-index: 3;
}

.cobweb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 107, 157, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.6);
}

.cobweb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 107, 157, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.4);
}

.cobweb:hover {
    opacity: 1;
    transform: scale(1.2);
}

.cobweb:hover::before {
    background: rgba(255, 107, 157, 0.9);
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.cobweb:hover::after {
    border-color: rgba(255, 107, 157, 0.6);
}

.cobweb.expanded {
    width: 200px;
    height: 200px;
    opacity: 0.8;
    z-index: 10;
}

.cobweb.expanded::before {
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 157, 1);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.8);
}

.cobweb.expanded::after {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 107, 157, 0.8);
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.4);
}

/* Cobweb web lines */
.cobweb.expanded .web-line {
    position: absolute;
    background: rgba(255, 107, 157, 0.6);
    transform-origin: center;
}

.cobweb.expanded .web-line-1 {
    width: 2px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}

.cobweb.expanded .web-line-2 {
    width: 2px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.cobweb.expanded .web-line-3 {
    width: 2px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.cobweb.expanded .web-line-4 {
    width: 2px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.cobweb.expanded .web-line-5 {
    width: 2px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
}

.cobweb.expanded .web-line-6 {
    width: 2px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
}

.cobweb.expanded .web-line-7 {
    width: 2px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(270deg);
}

.cobweb.expanded .web-line-8 {
    width: 2px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(315deg);
}

/* Cobweb positions */
.cobweb-1 {
    top: 20%;
    left: 15%;
}

.cobweb-2 {
    top: 60%;
    right: 20%;
}

.cobweb-3 {
    bottom: 30%;
    left: 10%;
}

.cobweb-4 {
    top: 40%;
    right: 10%;
}

.cobweb-5 {
    bottom: 20%;
    right: 15%;
}

/* Responsive cobweb */
@media (max-width: 768px) {
    .cobweb {
        width: 40px;
        height: 40px;
    }
    
    .cobweb.expanded {
        width: 150px;
        height: 150px;
    }
    
    .cobweb.expanded .web-line {
        height: 75px;
    }
}

@media (max-width: 480px) {
    .cobweb {
        width: 30px;
        height: 30px;
    }
    
    .cobweb.expanded {
        width: 120px;
        height: 120px;
    }
    
    .cobweb.expanded .web-line {
        height: 60px;
    }
}
