/* 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: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Aurora Color Palette */
:root {
    --aurora-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --aurora-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --aurora-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --aurora-green: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-border: #333333;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--aurora-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

.btn-aurora {
    background: var(--aurora-primary);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-aurora:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.aurora-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.2) 50%, transparent 70%);
    border-radius: 50% 0 0 50%;
    animation: aurora-pulse 4s ease-in-out infinite alternate;
}

@keyframes aurora-pulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.aurora-text {
    background: var(--aurora-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.animated-icon {
    color: #43e97b;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-preview small {
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    height: 100%;
}

.lead-card {
    position: absolute;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 1.5rem;
    width: 200px;
    text-align: center;
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.lead-card:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.lead-card:nth-child(2) {
    top: 50%;
    right: 40%;
    animation-delay: 2s;
}

.lead-card:nth-child(3) {
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

.lead-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--aurora-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.lead-card p {
    color: #43e97b;
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #111111 100%);
}

.step-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--aurora-primary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-number i {
    font-size: 1.5rem;
    color: white;
    position: absolute;
}

.step-number span {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--aurora-secondary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features */
.features {
    padding: 6rem 0;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--aurora-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Preview */
.pricing-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #111111 0%, var(--dark-bg) 100%);
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-channels {
    margin-bottom: 2rem;
}

.channel-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.channel-price i {
    font-size: 1.2rem;
    color: #43e97b;
    width: 30px;
}

.channel-price strong {
    color: #43e97b;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: var(--dark-bg);
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--aurora-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #43e97b;
    width: 15px;
}

.footer-divider {
    border-color: var(--dark-border);
    margin: 2rem 0 1rem;
}

/* Pricing Page Styles */
.pricing-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.pricing-plans {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #111111 100%);
}

.pricing-plan {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-plan.featured {
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aurora-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--aurora-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.plan-icon i {
    font-size: 2rem;
    color: white;
}

.plan-price {
    margin: 1rem 0;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #43e97b;
}

.plan-price .period {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li i {
    color: #43e97b;
    width: 16px;
}

.btn-outline-aurora {
    background: transparent;
    border: 2px solid;
    border-image: var(--aurora-primary) 1;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-aurora:hover {
    background: var(--aurora-primary);
    color: white;
    transform: translateY(-2px);
}

.pricing-features {
    padding: 6rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--aurora-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #111111 0%, var(--dark-bg) 100%);
}

.accordion-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    margin-bottom: 1rem;
    border-radius: 10px;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(102, 126, 234, 0.1);
    color: var(--text-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: var(--dark-card);
    color: var(--text-secondary);
    padding: 1.5rem;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #111111 100%);
}

.contact-form-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 3rem;
}

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

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form .form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    color: var(--text-primary);
}

.contact-form .form-control::placeholder {
    color: var(--text-secondary);
}

.checkbox-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: #43e97b;
    border-color: #43e97b;
}

.form-check-label {
    color: var(--text-primary);
    margin-left: 0.5rem;
}

.form-check-label a {
    color: #43e97b;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.success-message {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #43e97b;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #43e97b;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.next-steps {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
}

.next-steps h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.next-steps ul {
    color: var(--text-secondary);
    line-height: 1.6;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.contact-info-section {
    padding: 6rem 0;
}

.contact-info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--aurora-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-info-card small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Legal Pages Styles */
.legal-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #111111 100%);
}

.legal-content {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.legal-document {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 3rem;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
    border-image: var(--aurora-primary) 1;
}

.legal-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section .row {
        text-align: center;
    }
    
    .cta-section .col-lg-4 {
        margin-top: 1rem;
    }
    
    .pricing-plan.featured {
        transform: none;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .step-card, .feature-card {
        margin-bottom: 2rem;
    }
    
    .pricing-hero, .contact-hero {
        min-height: 50vh;
        padding: 6rem 0 2rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}
