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

body {
    font-family: 'Inter', sans-serif;
    color: #1E293B;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #1E3A8A;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #7C3AED;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-nav-toggler {
    width: 40px;
    height: 40px;
    border: none;
    font-size: 24px;
    color: #1E293B;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
}

.btn-sign-in {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s ease;
}

.btn-sign-in:hover, .mobile-nav-toggler:hover {
    color: #7C3AED;
}

.btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: white;
    color: #7C3AED;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #7C3AED;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #F5F3FF;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 60px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #7C3AED;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; }
.particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(-10px); }
    75% { transform: translateY(-20px) translateX(10px); }
}

.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #1E293B;
}

.gradient-text {
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.trust-indicator {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 24px;
}

.company-logos {
    display: flex;
    gap: 32px;
    align-items: center;
    opacity: 0.7;
}

.company-logo {
    height: 28px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.hero-right {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-visual {
    width: 100%;
    perspective: 1000px;
}

.dashboard-mockup {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotateY(-5deg) rotateX(2deg);
    animation: floatDashboard 6s ease-in-out infinite;
    background: white;
    padding: 24px;
}

@keyframes floatDashboard {
    0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0px); }
    50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: #F8FAFC;
}

.social-proof-heading {
    text-align: center;
    font-size: 16px;
    color: #64748B;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 32px;
    color: #94A3B8;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: #475569;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EDE9FE 0%, #F3E8FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: #7C3AED;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

/* Product Showcase Section */
.product-showcase {
    padding: 120px 0;
    background: #F8FAFC;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

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

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

.showcase-content {
    animation: fadeInUp 0.6s ease-out;
}

.showcase-badge {
    display: inline-block;
    background: #EDE9FE;
    color: #7C3AED;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.showcase-badge.coming-soon {
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    color: white;
}

.showcase-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-description {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 28px;
    line-height: 1.6;
}

.showcase-features {
    list-style: none;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #475569;
}

.showcase-features i {
    color: #10B981;
    font-size: 20px;
}

.showcase-image {
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.screenshot {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: floatScreenshot 6s ease-in-out infinite;
}

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

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: white;
}

.steps-container {
    margin-top: 80px;
    position: relative;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 60px;
    gap: 1rem;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, #7C3AED 0%, #EC4899 100%);
    opacity: 0.3;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: #64748B;
    max-width: 280px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.step-icon {
    font-size: 48px;
    color: #7C3AED;
    margin-bottom: 16px;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #F8FAFC;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #7C3AED;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-plan {
    font-size: 16px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 20px;
    color: #64748B;
    font-weight: 500;
}

.pricing-description {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
}

.pricing-features i {
    color: #10B981;
    font-size: 16px;
}

.pricing-cta {
    width: 100%;
    padding: 14px 32px;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #F5F3FF 0%, #FFFFFF 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #64748B;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    text-align: center;
    color: white;
}

.final-cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-white {
    background: white;
    color: #7C3AED;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-disclaimer {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.85;
}

/* Footer */
.footer {
    background: #1E293B;
    color: #94A3B8;
    padding: 80px 0 32px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: #7C3AED;
    color: white;
    transform: translateY(-2px);
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-nav-toggler {
        display: inline-flex;
    }

    .logo {
        font-size: 20px;
        gap: 0.625rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .steps-timeline {
        justify-items: start;
        flex-direction: column;
    }

    .timeline-line {
        height: 90%;
        width: 0px;
        left: calc(15% + 10px);
        right: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        flex: none;
        margin: 0;
    }

    .step {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-content {
        gap: 3rem;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-bottom {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .nav-actions {
        display: none;
    }

    .hero, .nav-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 57.6px;
    }

    .features, .how-it-works, .product-showcase, .pricing, .testimonials {
        padding: 80px 0;
    }

    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 440px) {
    .container {
        padding: 0 24px;
    }

    .hero, .nav-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .features, .how-it-works, .product-showcase, .pricing, .testimonials {
        padding: 40px 0;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .step {
        flex-direction: column;
    }

    .footer-legal {
        gap: 1rem;
        flex-wrap: wrap;
       justify-content: center;
    }
}