/* ===== LANDING PAGE GLOBAL STYLES ===== */
.landing-page {
    scroll-behavior: smooth;
}

.landing-main {
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.landing-nav {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: var(--mud-palette-text-primary) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mud-palette-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--mud-palette-primary) !important;
}

.nav-cta-button {
    border-radius: 8px !important;
    text-transform: none !important;
    font-weight: 600 !important;
    padding: 8px 24px !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #594AE2 0%, #7C4DFF 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF4081 0%, #FF80AB 100%);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1EC8A5 0%, #4DD0E1 100%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.hero-text-wrapper {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
}

.hero-subtitle {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    margin-bottom: 32px !important;
}

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

.hero-button {
    border-radius: 12px !important;
    text-transform: none !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 14px rgba(89, 74, 226, 0.3) !important;
    transition: all 0.3s ease !important;
}

.hero-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(89, 74, 226, 0.4) !important;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-dashboard-card {
    padding: 24px !important;
    border-radius: 20px !important;
    background: white !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dot.red { background: #FF5F57; }
.window-dot.yellow { background: #FFBD2E; }
.window-dot.green { background: #28CA42; }

/* ===== ANIMATIONS ===== */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.animate-float {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background: white;
}

.feature-card-modern {
    padding: 32px !important;
    border-radius: 16px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    height: 100%;
    transition: all 0.3s ease !important;
    background: white !important;
}

.feature-card-modern:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(89, 74, 226, 0.15) !important;
    border-color: var(--mud-palette-primary) !important;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-description {
    line-height: 1.6 !important;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5FA 0%, #E8E6FF 100%);
}

.step-card-modern {
    padding: 48px 32px !important;
    border-radius: 20px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    text-align: center;
    height: 100%;
    position: relative;
    background: white !important;
    transition: all 0.3s ease !important;
}

.step-card-modern:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #594AE2 0%, #7C4DFF 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 14px rgba(89, 74, 226, 0.4);
}

/* ===== DASHBOARD PREVIEW SECTION ===== */
.dashboard-preview-section {
    padding: 100px 0;
    background: white;
}

.dashboard-preview-card {
    border-radius: 20px !important;
    overflow: hidden;
    background: white !important;
}

.browser-chrome {
    background: #F5F5F5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #E0E0E0;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red { background: #FF5F57; }
.browser-dot.yellow { background: #FFBD2E; }
.browser-dot.green { background: #28CA42; }

.browser-url-bar {
    flex: 1;
    padding: 6px 12px;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-screenshot {
    padding: 24px;
}

.mini-stat-card {
    padding: 16px !important;
    border-radius: 12px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    background: white !important;
}

.chart-placeholder {
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    background: white !important;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #594AE2 0%, #7C4DFF 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

.recent-activity {
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    background: white !important;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5FA 0%, #E8E6FF 100%);
}

.industry-card {
    padding: 32px !important;
    border-radius: 16px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease !important;
    background: white !important;
}

.industry-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-card-modern {
    padding: 40px 32px !important;
    border-radius: 20px !important;
    border: 2px solid var(--mud-palette-divider) !important;
    height: 100%;
    position: relative;
    transition: all 0.3s ease !important;
    background: white !important;
}

.pricing-card-modern:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(89, 74, 226, 0.15) !important;
}

.pricing-popular {
    border-color: var(--mud-palette-primary) !important;
    box-shadow: 0 8px 30px rgba(89, 74, 226, 0.2) !important;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.popular-badge-inline {
    margin-bottom: 12px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 3rem !important;
}

.pricing-features {
    min-height: 280px;
}

.pricing-button {
    border-radius: 12px !important;
    text-transform: none !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5FA 0%, #E8E6FF 100%);
}

.testimonial-card-modern {
    padding: 32px !important;
    border-radius: 16px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    height: 100%;
    transition: all 0.3s ease !important;
    background: white !important;
}

.testimonial-card-modern:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-quote {
    font-style: italic;
    line-height: 1.6 !important;
}

.stat-card-modern {
    text-align: center;
    padding: 32px 16px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-item-modern {
    padding: 24px !important;
    border-radius: 12px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

.faq-item-modern:hover {
    border-color: var(--mud-palette-primary) !important;
    box-shadow: 0 4px 14px rgba(89, 74, 226, 0.1) !important;
}

.faq-question {
    cursor: pointer;
    user-select: none;
}

.faq-answer {
    animation: fadeIn 0.3s ease-out;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5FA 0%, #E8E6FF 100%);
}

.contact-form-card {
    padding: 48px !important;
    border-radius: 20px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    background: white !important;
}

.contact-submit-button {
    border-radius: 12px !important;
    text-transform: none !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    font-size: 1rem !important;
}

.contact-info-item {
    padding: 16px;
}

/* ===== FOOTER ===== */
.landing-footer {
    background: #1A1A2E;
    color: white;
    padding: 64px 0 32px 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.footer-link:hover {
    color: white !important;
}

/* ===== REGISTER PAGE ===== */
.register-page {
    padding: 120px 0 80px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #F5F5FA 0%, #E8E6FF 100%);
}

.register-header {
    margin-bottom: 48px;
}

.register-wizard-card {
    padding: 48px !important;
    border-radius: 20px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    background: white !important;
}

.register-stepper {
    padding: 0 !important;
}

.step-content-card {
    padding: 32px !important;
    border-radius: 16px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    background: #FAFAFA !important;
}

.plan-option {
    padding: 24px !important;
    border-radius: 16px !important;
    border: 2px solid var(--mud-palette-divider) !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    background: white !important;
    height: 100%;
}

.plan-option:hover {
    border-color: var(--mud-palette-primary) !important;
    box-shadow: 0 4px 14px rgba(89, 74, 226, 0.1) !important;
}

.plan-selected {
    border-color: var(--mud-palette-primary) !important;
    background: rgba(89, 74, 226, 0.02) !important;
    box-shadow: 0 4px 14px rgba(89, 74, 226, 0.15) !important;
}

.plan-popular {
    position: relative;
}

.review-section {
    padding: 24px !important;
    border-radius: 12px !important;
    border: 1px solid var(--mud-palette-divider) !important;
    background: #FAFAFA !important;
}

.success-step {
    padding: 48px 24px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 64px !important;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 960px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-section {
        padding: 100px 0 60px 0;
        min-height: auto;
    }
    
    .features-section,
    .how-it-works-section,
    .dashboard-preview-section,
    .industries-section,
    .pricing-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 48px !important;
    }
    
    .contact-form-card {
        padding: 32px !important;
    }
    
    .register-wizard-card {
        padding: 32px !important;
    }
    
    .landing-footer {
        padding: 40px 0 24px 0;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-button {
        width: 100%;
    }
    
    .pricing-features {
        min-height: auto;
    }
    
    .step-card-modern {
        padding: 40px 24px !important;
    }
    
    .contact-form-card {
        padding: 24px !important;
    }
    
    .register-wizard-card {
        padding: 24px !important;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 48px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.cursor-pointer {
    cursor: pointer;
}

/* ===== SCROLL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .features-section,
    .how-it-works-section,
    .dashboard-preview-section,
    .industries-section,
    .pricing-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .features-section.visible,
    .how-it-works-section.visible,
    .dashboard-preview-section.visible,
    .industries-section.visible,
    .pricing-section.visible,
    .testimonials-section.visible,
    .faq-section.visible,
    .contact-section.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
