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

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter,sans-serif;
    background-color: #0a0b1e;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

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

h1,h2,h3,h4,h5,h6 {
    font-family: Poppins,sans-serif;
    font-weight: 700
}

.gradient-text {
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.text-white {
    color: #fff
}

.btn-primary {
    background: linear-gradient(135deg,#8b5cf6,#3b82f6);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-size: 1rem
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px #8b5cf64d
}

.btn-secondary {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 2rem;
    border: 1px solid rgba(139,92,246,.3);
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-size: 1rem
}

.btn-secondary:hover {
    background: #ffffff1a;
    border-color: #8b5cf699
}

.glass {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1)
}

#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all .3s ease;
    padding: 1rem 0
}

#header.scrolled {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.1)
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.logo-text {
    font-size: 1.5rem;
    font-family: Poppins,sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-item {
    position: relative
}

.nav-link {
    color: #ffffffe6;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .25rem;
    transition: color .2s ease
}

.nav-link:hover {
    color: #fff
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: .5rem;
    width: 16rem;
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    padding: .5rem;
    box-shadow: 0 25px 50px -12px #00000040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .2s ease
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem;
    border-radius: .5rem;
    color: #fffc;
    text-decoration: none;
    transition: all .2s ease
}

.dropdown-item:hover {
    color: #fff;
    background: #ffffff0d
}

.dropdown-item i {
    color: #8b5cf6
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: .5rem
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    padding: 1rem
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.mobile-nav-link {
    color: #ffffffe6;
    text-decoration: none;
    font-weight: 500;
    padding: .5rem 0
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.1)
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg,#0a0b1e,#0a0b1ef2,#0a0b1e)
}

.particles {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite
}

.particle-1 {
    top: 5rem;
    left: 2.5rem;
    width: .5rem;
    height: .5rem;
    background: #8b5cf6
}

.particle-2 {
    top: 10rem;
    right: 5rem;
    width: .75rem;
    height: .75rem;
    background: #06b6d4;
    animation-delay: 2s
}

.particle-3 {
    bottom: 10rem;
    left: 5rem;
    width: .5rem;
    height: .5rem;
    background: #3b82f6;
    animation-delay: 4s
}

.particle-4 {
    bottom: 5rem;
    right: 2.5rem;
    width: 1rem;
    height: 1rem;
    background: #8b5cf6;
    animation-delay: 1s
}

@keyframes particle-float {
    0%,to {
        transform: translateY(0) rotate(0)
    }

    33% {
        transform: translateY(-30px) rotate(120deg)
    }

    66% {
        transform: translateY(15px) rotate(240deg)
    }
}

.gradient-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(64px);
    animation: float 6s ease-in-out infinite
}

.orb-1 {
    top: 25%;
    left: 25%;
    background: #8b5cf633
}

.orb-2 {
    bottom: 25%;
    right: 25%;
    background: #06b6d433;
    animation-delay: 2s
}

@keyframes float {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.hero-content {
    text-align: center;
    max-width: 80rem;
    position: relative;
    z-index: 10
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    padding: .5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    animation: slide-up .8s ease-out
}

.hero-badge i {
    color: #8b5cf6
}

.status-dot {
    width: .5rem;
    height: .5rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

.hero-title {
    font-size: clamp(3rem,8vw,4.5rem);
    font-family: Poppins,sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slide-up .8s ease-out .2s both
}

.typing-container {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem
}

.typing-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg,#8b5cf6,#06b6d4,#3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    min-height: 2rem
}

.typing-cursor {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-left: 2px;
    animation: blink 1s infinite
}

@keyframes blink {
    0%,50% {
        opacity: 1
    }

    51%,to {
        opacity: 0
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0% 50%
    }
}

.typing-description {
    font-size: clamp(1rem,3vw,1.25rem);
    color: #ffffffb3;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    animation: slide-up .8s ease-out .6s both
}

.hero-description strong {
    color: #fff
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: slide-up .8s ease-out .8s both
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem,6vw,3rem);
    animation: slide-up .8s ease-out 1s both
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    transition: transform .3s ease
}

.feature-item:hover {
    transform: translateY(-5px)
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: #ffffff0d;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease
}

.feature-item:hover .feature-icon {
    background: #ffffff1a
}

.feature-item:nth-child(1) .feature-icon i {
    color: #8b5cf6
}

.feature-item:nth-child(2) .feature-icon i {
    color: #06b6d4
}

.feature-item:nth-child(3) .feature-icon i {
    color: #3b82f6
}

.feature-item span {
    font-size: .75rem;
    color: #fff9
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%);
    animation: bounce 2s infinite
}

.scroll-box {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center
}

.scroll-dot {
    width: .25rem;
    height: .75rem;
    background: #fff9;
    border-radius: 9999px;
    margin-top: .5rem;
    animation: pulse 2s infinite
}

@keyframes bounce {
    0%,20%,50%,80%,to {
        transform: translate(-50%) translateY(0)
    }

    40% {
        transform: translate(-50%) translateY(-10px)
    }

    60% {
        transform: translate(-50%) translateY(-5px)
    }
}

section {
    padding: 5rem 0;
    position: relative
}

.section-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden
}

.section-bg .orb-left {
    top: 25%;
    left: 0;
    background: #8b5cf61a
}

.section-bg .orb-right {
    bottom: 25%;
    right: 0;
    background: #06b6d41a
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    padding: .5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: .875rem;
    font-weight: 500;
    color: #ffffffe6
}

.section-badge i {
    color: #8b5cf6
}

.section-title {
    font-size: clamp(2.5rem,6vw,3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2
}

.section-description {
    font-size: 1.25rem;
    color: #ffffffb3;
    max-width: 48rem;
    margin: 0 auto
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 2rem;
    margin-bottom: 5rem
}

.feature-card {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px #00000040
}

.feature-card:hover:before {
    opacity: .3
}

.feature-card:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,#8b5cf6,#3b82f6,#06b6d4,#8b5cf6);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease
}

.feature-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: .5rem;
    background: #ffffff0d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform .3s ease
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1)
}

.feature-card-icon.purple i {
    color: #8b5cf6
}

.feature-card-icon.cyan i {
    color: #06b6d4
}

.feature-card-icon.blue i {
    color: #3b82f6
}

.feature-card-title {
    font-size: 1.25rem;
    margin-bottom: .75rem;
    color: #fff;
    transition: all .3s ease
}

.feature-card:hover .feature-card-title {
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.feature-card-description {
    color: #ffffffb3;
    line-height: 1.6
}

.ai-platforms {
    text-align: center;
    margin-bottom: 5rem
}

.ai-platforms-title {
    font-size: 1.875rem;
    margin-bottom: 1rem
}

.ai-platforms-description {
    color: #ffffffb3;
    font-size: 1.125rem;
    margin-bottom: 3rem
}

.ai-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 1.5rem
}

.ai-platform-card {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all .3s ease
}

.ai-platform-card:hover {
    transform: translateY(-5px)
}

.ai-platform-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform .3s ease
}

.ai-platform-card:hover .ai-platform-logo {
    transform: scale(1.1)
}

.ai-platform-name {
    font-size: 1.125rem;
    margin-bottom: .5rem;
    color: #fff;
    transition: all .3s ease
}

.ai-platform-card:hover .ai-platform-name {
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ai-platform-desc {
    color: #fff9;
    font-size: .875rem
}

.stats-section {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    padding: 2rem
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 2rem;
    text-align: center
}

.stat-item {
    transition: transform .3s ease
}

.stat-item:hover {
    transform: scale(1.1)
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .5rem
}

.stat-label {
    color: #ffffffb3
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 2rem;
    margin-bottom: 4rem
}

.testimonial-card {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px #00000040
}

.testimonial-card:hover:before {
    opacity: .3
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,#8b5cf6,#3b82f6,#06b6d4,#8b5cf6);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease
}

.testimonial-rating {
    display: flex;
    gap: .25rem;
    margin-bottom: 1rem
}

.testimonial-rating i {
    color: #fbbf24;
    width: 1rem;
    height: 1rem
}

.testimonial-quote {
    color: #ffffffe6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic
}

.testimonial-result {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #ffffff0d;
    padding: .25rem .75rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: .875rem;
    font-weight: 600
}

.testimonial-result.purple {
    color: #8b5cf6
}

.testimonial-result.cyan {
    color: #06b6d4
}

.testimonial-result.blue {
    color: #3b82f6
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem
}

.author-name {
    font-weight: 600;
    color: #fff;
    transition: all .3s ease
}

.testimonial-card:hover .author-name {
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.author-role {
    color: #fff9;
    font-size: .875rem
}

.author-company {
    color: #fff6;
    font-size: .75rem
}

.company-logos {
    text-align: center;
    margin-bottom: 4rem
}

.company-logos-text {
    color: #fff9;
    margin-bottom: 2rem
}

.company-logos-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: .6
}

.company-logo {
    color: #fff6;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color .3s ease;
    cursor: pointer
}

.company-logo:hover {
    color: #fffc
}

.testimonials-cta {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center
}

.cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.cta-description {
    color: #ffffffb3;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 2rem;
    margin-bottom: 5rem
}

.pricing-card {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px #00000040
}

.pricing-card.popular {
    border: 2px solid rgba(139,92,246,.3)
}

.pricing-card.popular:hover:before {
    opacity: .3
}

.pricing-card.popular:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,#8b5cf6,#3b82f6,#06b6d4,#8b5cf6);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translate(-50%);
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    color: #fff;
    padding: .25rem 1rem;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 600
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem
}

.pricing-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: #ffffff0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.pricing-card.popular .pricing-icon {
    animation: glow 2s ease-in-out infinite alternate
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px #8b5cf64d
    }

    to {
        box-shadow: 0 0 30px #8b5cf699
    }
}

.pricing-card.popular .pricing-icon i {
    color: #8b5cf6
}

.pricing-card:not(.popular) .pricing-icon i {
    color: #06b6d4
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: #fff
}

.pricing-description {
    color: #fff9;
    font-size: .875rem;
    margin-bottom: 1rem
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem
}

.currency {
    color: #fff9
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg,#8b5cf6,#06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.period {
    color: #fff9
}

.pricing-features {
    margin-bottom: 2rem
}

.pricing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem
}

.pricing-features .feature-item i {
    color: #10b981;
    margin-top: .125rem;
    flex-shrink: 0
}

.pricing-features .feature-item span {
    color: #fffc;
    font-size: .875rem
}

.pricing-cta {
    width: 100%;
    justify-content: center
}

.faq-section {
    max-width: 48rem;
    margin: 0 auto
}

.faq-title {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 3rem
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.faq-item {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .75rem;
    padding: 1.5rem;
    transition: all .3s ease
}

.faq-item:hover {
    transform: translateY(-2px)
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .75rem
}

.faq-answer {
    color: #ffffffb3
}

.pricing-bottom-cta {
    text-align: center;
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    padding: 2rem
}

.footer {
    position: relative;
    overflow: hidden;
    background: #0a0b1e;
    border-top: 1px solid rgba(255,255,255,.1)
}

.footer-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.footer-bg .orb-left {
    top: 0;
    left: 25%;
    background: #8b5cf60d
}

.footer-bg .orb-right {
    bottom: 0;
    right: 25%;
    background: #06b6d40d
}

.footer-main {
    padding: 4rem 0
}

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

.footer-brand {
    max-width: 20rem
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.5rem
}

.footer-description {
    color: #ffffffb3;
    margin-bottom: 1.5rem
}

.footer-contact {
    margin-bottom: 1.5rem
}

.contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #ffffffb3;
    margin-bottom: .75rem
}

.contact-item i {
    width: 1rem;
    height: 1rem
}

.contact-item:nth-child(1) i {
    color: #8b5cf6
}

.contact-item:nth-child(2) i {
    color: #06b6d4
}

.contact-item:nth-child(3) i {
    color: #3b82f6
}

.footer-social {
    display: flex;
    gap: 1rem
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #ffffff0d;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff9;
    text-decoration: none;
    transition: all .3s ease
}

.social-link:hover {
    color: #fff;
    background: #ffffff1a;
    transform: scale(1.1)
}

.footer-links-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem
}

.footer-links-list {
    list-style: none
}

.footer-links-list li {
    margin-bottom: .75rem
}

.footer-links-list a {
    color: #fff9;
    text-decoration: none;
    transition: color .2s ease
}

.footer-links-list a:hover {
    color: #fff
}

.footer-newsletter {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 2rem 0
}

.newsletter-content {
    background: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center
}

.newsletter-title {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.newsletter-description {
    color: #ffffffb3;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 20rem;
    margin: 0 auto
}

.newsletter-input {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: 9999px;
    background: #ffffff0d;
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    outline: none;
    transition: border-color .3s ease
}

.newsletter-input::-moz-placeholder {
    color: #ffffff80
}

.newsletter-input::placeholder {
    color: #ffffff80
}

.newsletter-input:focus {
    border-color: #8b5cf6
}

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

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.footer-copyright {
    color: #fff9;
    font-size: .875rem
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: .875rem;
    color: #fff9
}

@media (max-width: 1024px) {
    .desktop-nav,.header-cta {
        display:none
    }

    .mobile-menu-btn,.mobile-menu.show {
        display: block
    }

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

    .footer-brand {
        max-width: none
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction:column;
        align-items: stretch
    }

    .hero-features {
        flex-direction: column;
        gap: 2rem
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .ai-platforms-grid,.stats-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .testimonials-grid,.pricing-grid {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%
    }

    .footer-bottom-content {
        text-align: center
    }

    .footer-badges {
        flex-direction: column;
        gap: .5rem
    }
}

@media (max-width: 640px) {
    .container {
        padding:0 1rem
    }

    .hero-title {
        font-size: 2.5rem
    }

    .section-title {
        font-size: 2rem
    }

    .ai-platforms-grid,.stats-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .typing-text,.typing-cursor {
        font-size:1.25rem
    }

    .typing-container {
        height: 3rem
    }
}

