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

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: #000000;
    min-height: 100vh;
    color: white;
    position: relative;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glass-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.3rem 2.5rem;
    max-width: 85%;
    width: 1000px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo span {
    display: none;
}

.cta-button {
    background: white;
    color: #000;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

main {
    position: relative;
    z-index: 1;
    min-height: 200vh;
    overflow-x: hidden;
}

.hero {
    padding: 10rem 6rem 2rem;
    position: relative;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
}

.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mockup::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 20%;
    transform: translate(-20%, -50%);
    width: 450px;
    height: 550px;
    background: radial-gradient(ellipse at center, rgba(138, 92, 246, 0.4) 0%, rgba(169, 142, 250, 0.3) 30%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero-mockup img {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 8rem 2rem 2rem;
    }

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

    .hero-mockup::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-mockup img {
        max-height: 500px;
    }
}

.badge {
    display: inline-block;
    color: #a78bfa;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
    background: transparent;
    border: none;
    overflow: hidden;
    opacity: 0;
    animation: badgeAppear 1.2s ease-out 0.3s forwards;
}

.badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    aspect-ratio: 1;
    background: conic-gradient(
        from 0deg,
        rgba(167, 139, 250, 0.15),
        rgba(167, 139, 250, 0.15),
        rgba(167, 139, 250, 0.15),
        rgba(139, 92, 246, 0.9),
        rgba(167, 139, 250, 0.15),
        rgba(167, 139, 250, 0.15),
        rgba(167, 139, 250, 0.15)
    );
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateBorder 4s linear infinite;
    z-index: -2;
}

.badge::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: 50px;
    background: rgba(10, 5, 25, 0.9);
    z-index: -1;
}

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

@keyframes badgeAppear {
    0% {
        opacity: 0;
        transform: scale(0.3);
        filter: blur(10px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    75% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ebe6f7 0%, #979699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(169, 142, 250, 0.5));
    position: relative;
    z-index: 10;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    text-decoration: none;
}

.download-button:hover {
    transform: translateY(-3px);
    background: #f0f0f0;
}

/* Mobile hint - only visible on mobile */
.mobile-hint {
    display: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    line-height: 1.5;
    max-width: 320px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .mobile-hint {
        display: block;
    }
}

.download-button svg {
    width: 20px;
    height: 20px;
}

.apple-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Stats Section */
.stats-section {
    padding: 2rem 2rem 4rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.stats-intro {
    max-width: 900px;
    margin: 0 auto;
}

.stats-intro h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

/* Scroll Lock Container */
.scroll-lock-container {
    position: relative;
    min-height: auto;
    padding: 3rem 2rem 5rem;
}

.scroll-lock-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Body scroll lock */
html.scroll-locked,
html.scroll-locked body {
    overflow: hidden;
}

/* Scroll Reveal Text Effect */
.scroll-reveal-text {
    color: rgba(255, 255, 255, 0.2);
}

.scroll-reveal-text .word {
    display: inline;
    transition: color 0.15s ease;
    color: rgba(255, 255, 255, 0.2);
}

.scroll-reveal-text .word.revealed {
    color: rgba(255, 255, 255, 1);
}

.stats-box {
    background: linear-gradient(135deg, rgba(24, 24, 30, 0.8) 0%, rgba(16, 16, 20, 0.8) 100%);
    border: 0.7px solid transparent;
    border-radius: 40px;
    padding: 2.5rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.stats-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 0.7px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stats-box.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.stat-number {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(200, 200, 200, 0.9);
    line-height: 1.4;
}

/* Recovery Journey Section */
.recovery-section {
    padding: 8rem 2rem 6rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ebe6f7 0%, #979699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(10, 7, 22, 0.6);
    border: 1px solid rgba(50, 30, 85, 0.25);
    border-radius: 22px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(60, 40, 100, 0.4);
    background: rgba(15, 10, 28, 0.8);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: rgba(180, 180, 180, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: rgba(200, 200, 200, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: rgba(255, 255, 255, 1);
}

/* App Showcase Section */
.app-showcase {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.app-showcase h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ebe6f7 0%, #979699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.showcase-card {
    background: rgba(10, 7, 22, 0.6);
    border: 1px solid rgba(50, 30, 85, 0.25);
    border-radius: 22px;
    padding: 2rem;
    text-align: left;
}

.showcase-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.showcase-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.showcase-card p {
    color: rgba(180, 180, 180, 0.9);
    line-height: 1.6;
}

.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.mockup-img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.how-it-works h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ebe6f7 0%, #979699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.feature-showcase-item.reverse {
    direction: rtl;
}

.feature-showcase-item.reverse > * {
    direction: ltr;
}

.feature-showcase-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-showcase-mockup.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-showcase-mockup::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(138, 92, 246, 0.35) 0%, rgba(169, 142, 250, 0.25) 30%, transparent 70%);
    filter: blur(70px);
    z-index: -1;
    pointer-events: none;
}

.feature-showcase-mockup img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
}

.feature-showcase-text {
    text-align: left;
}

.feature-showcase-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.3;
}

.feature-showcase-text p {
    color: rgba(180, 180, 180, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .feature-showcase-item,
    .feature-showcase-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .feature-showcase-text {
        text-align: left;
    }

    .feature-showcase-text h3,
    .feature-showcase-text p {
        text-align: left;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(10, 7, 22, 0.6);
    border: 1px solid rgba(50, 30, 85, 0.25);
    border-radius: 22px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(200, 200, 200, 0.9);
}

.testimonials-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ebe6f7 0%, #979699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.testimonial-card {
    flex: 0 0 280px;
    max-width: 280px;
    min-width: 280px;
}

.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
    flex: 0 0 280px;
    max-width: 280px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card,
    .testimonials-grid .testimonial-card:nth-child(4),
    .testimonials-grid .testimonial-card:nth-child(5) {
        flex: 0 0 auto;
        max-width: 280px;
        min-width: 0;
        width: 100%;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(24, 24, 30, 0.8) 0%, rgba(16, 16, 20, 0.8) 100%);
    border: none;
    border-radius: 22px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 0.7px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

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

.testimonial-card p {
    color: rgba(180, 180, 180, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Achievements Section */
.achievements-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

.achievements-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ebe6f7 0%, #979699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbs-container {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    margin-bottom: 1rem;
    position: relative;
}

.orbs-container::before,
.orbs-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.orbs-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.orbs-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.orbs-scroll {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollOrbs 25s linear infinite;
    will-change: transform;
}

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

.orb-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
}

.orb-item::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    filter: blur(25px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

.orb-item[data-gradient="origin"]::before {
    background: radial-gradient(circle, #d5c2ed 0%, #6e6e80 100%);
}

.orb-item[data-gradient="ashborn"]::before {
    background: radial-gradient(circle, #ff9a41 0%, #ff7e34 100%);
}

.orb-item[data-gradient="lumenfall"]::before {
    background: radial-gradient(circle, #ad41ff 0%, #347bff 100%);
}

.orb-item[data-gradient="soulspire"]::before {
    background: radial-gradient(circle, #41fff9 0%, #34ffc2 100%);
}

.orb-item[data-gradient="stormveil"]::before {
    background: radial-gradient(circle, #4e41ff 0%, #3489ff 100%);
}

.orb-item[data-gradient="frostforge"]::before {
    background: radial-gradient(circle, #4e41ff 0%, #3489ff 100%);
}

.orb-item[data-gradient="crimsonrift"]::before {
    background: radial-gradient(circle, #ff7141 0%, #ffdd34 100%);
}

.orb-item[data-gradient="tideworn"]::before {
    background: radial-gradient(circle, #41ffcc 0%, #34b1ff 100%);
}

.orb-item[data-gradient="voidcore"]::before {
    background: radial-gradient(circle, #4144ff 0%, #34b1ff 100%);
}

.orb-item[data-gradient="shadowspire"]::before {
    background: radial-gradient(circle, #cf41ff 0%, #9134ff 100%);
}

.orb-item[data-gradient="auracrest"]::before {
    background: radial-gradient(circle, #fff829 0%, #ffe066 100%);
}

.orb-item[data-gradient="echoflare"]::before {
    background: radial-gradient(circle, #7741ff 0%, #3448ff 100%);
}

.orb-item[data-gradient="eclipseheart"]::before {
    background: radial-gradient(circle, #7a41ff 0%, #34ffaa 100%);
}

.orb-item[data-gradient="darkmatter"]::before {
    background: radial-gradient(circle, #7a41ff 0%, #a034ff 100%);
}

.orb-item[data-gradient="verdantcore"]::before {
    background: radial-gradient(circle, #41ccff 0%, #34ffaa 100%);
}

.orb-item[data-gradient="aetherborn"]::before {
    background: radial-gradient(circle, #ffffff 0%, #e0e0e0 100%);
}

.orb-item[data-gradient="stardust"]::before {
    background: radial-gradient(circle, #ffe641 0%, #ffeb34 100%);
}

.orb-item[data-gradient="obsidian"]::before {
    background: radial-gradient(circle, #ad0707 0%, #2e0303 100%);
}

.orb-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.orb-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(24, 24, 30, 0.8) 0%, rgba(16, 16, 20, 0.8) 100%);
    border: none;
    border-radius: 22px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.benefits-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 0.7px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.benefits-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.benefits-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefits-scroll-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.benefits-scroll-wrapper::before,
.benefits-scroll-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 10;
    pointer-events: none;
}

.benefits-scroll-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, rgb(20, 20, 25) 0%, transparent 100%);
}

.benefits-scroll-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, rgb(16, 16, 20) 0%, transparent 100%);
}

.benefits-scroll {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: scrollBenefits 20s linear infinite;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(24, 24, 30, 0.8) 0%, rgba(16, 16, 20, 0.8) 100%);
    border: none;
    border-radius: 16px;
    padding: 0.9rem 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 0.7px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.benefit-emoji {
    font-size: 1.2rem;
}

.benefit-emoji-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scrollBenefits {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .benefits-scroll-wrapper {
        height: 250px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.faq-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ebe6f7 0%, #979699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(80, 40, 160, 0.1) 100%);
    border-radius: 40px;
    margin: 2rem;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ebe6f7 0%, #979699 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-button-large {
    background: #8b5cf6;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.cta-button-large:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(50, 30, 85, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: white;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-icon-appstore {
    width: 37px;
    height: 37px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.legal-content .legal-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.legal-content ul {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

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

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

@media (max-width: 768px) {
    .glass-header {
        top: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .container {
        gap: 2rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    h1 {
        margin-bottom: 1.5rem;
    }

    .subtitle {
        margin-bottom: 2rem;
    }

    .stats-box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
