/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(9, 1, 1);
    color: rgb(254, 254, 228);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(9, 1, 1, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(254, 254, 228, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(254, 254, 228) !important;
    text-decoration: none;
}

.brand-icon {
    color: rgb(221, 217, 42);
    margin-right: 0.5rem;
}

.navbar-nav .nav-link {
    color: rgb(254, 254, 228) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgb(221, 217, 42) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(9, 1, 1, 1) 0%, rgba(20, 5, 5, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.rating-section {
    margin-bottom: 2rem;
}

.stars {
    color: rgb(221, 217, 42);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: rgb(254, 254, 228);
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgb(221, 217, 42);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgb(254, 254, 228);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 3rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Demo Videos */
.demo-videos {
    margin-top: 4rem;
}

.video-demo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(254, 254, 228, 0.1);
    transition: all 0.3s ease;
}

.video-demo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.video-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 2px dashed rgba(254, 254, 228, 0.2);
}

.video-placeholder i {
    font-size: 3rem;
    color: rgb(221, 217, 42);
    margin-bottom: 1rem;
    display: block;
}

.arrow-icon {
    font-size: 2rem;
    color: rgb(221, 217, 42);
}

/* Introduction Section */
.introduction-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(254, 254, 228, 0.1);
    border-bottom: 1px solid rgba(254, 254, 228, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(221, 217, 42);
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(254, 254, 228, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: rgb(221, 217, 42);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(254, 254, 228);
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgb(254, 254, 228);
    opacity: 0.8;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-top: 1px solid rgba(254, 254, 228, 0.1);
    border-bottom: 1px solid rgba(254, 254, 228, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgb(254, 254, 228);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(254, 254, 228, 0.1);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(254, 254, 228);
    text-decoration: none;
}

.footer h5 {
    color: rgb(221, 217, 42);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgb(254, 254, 228);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: rgb(221, 217, 42);
    opacity: 1;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-divider {
    border-color: rgba(254, 254, 228, 0.1);
    margin: 2rem 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .demo-videos .col-md-2 {
        margin: 1rem 0;
    }
    
    .arrow-icon {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

/* Form Styles */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(254, 254, 228, 0.2);
    border-radius: 8px;
    color: rgb(254, 254, 228);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgb(139, 92, 246);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: rgb(254, 254, 228);
}

.form-control::placeholder {
    color: rgba(254, 254, 228, 0.5);
}

.form-label {
    color: rgb(254, 254, 228);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(254, 254, 228, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card.popular {
    border-color: rgb(139, 92, 246);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: '✧ Popular ✧';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(254, 254, 228);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: rgb(254, 254, 228);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(221, 217, 42);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: rgb(254, 254, 228);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgb(254, 254, 228);
    opacity: 0.9;
}

.pricing-features li i {
    color: rgb(221, 217, 42);
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Alert Styles */
.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: rgb(34, 197, 94);
    border-radius: 8px;
}

/* Contact Form Styles */
.contact-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(9, 1, 1, 1) 0%, rgba(20, 5, 5, 1) 100%);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(254, 254, 228, 0.1);
}

.contact-form {
    max-width: 100%;
}

.thank-you-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon i {
    font-size: 4rem;
    color: rgb(34, 197, 94);
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(254, 254, 228, 0.1);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(254, 254, 228, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: rgb(221, 217, 42);
    margin-right: 1rem;
    width: 30px;
}

.contact-item h5 {
    margin-bottom: 0.25rem;
    color: rgb(254, 254, 228);
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 0;
    color: rgb(254, 254, 228);
    opacity: 0.8;
}

/* Billing Toggle */
.billing-toggle .btn-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.25rem;
}

.billing-toggle .btn {
    border: none;
    color: rgb(254, 254, 228);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.billing-toggle .btn-check:checked + .btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.billing-toggle .badge {
    font-size: 0.7rem;
}

/* Accordion Styles */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(254, 254, 228, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: rgb(254, 254, 228);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(139, 92, 246, 0.1);
    color: rgb(254, 254, 228);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(139, 92, 246, 0.3);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: rgb(254, 254, 228);
    opacity: 0.9;
    padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(254, 254, 228, 0.1);
    border-bottom: 1px solid rgba(254, 254, 228, 0.1);
    padding: 120px 0 80px;
}

/* Terms and Privacy Sections */
.terms-section,
.privacy-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(9, 1, 1, 1) 0%, rgba(20, 5, 5, 1) 100%);
}

.terms-content,
.privacy-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(254, 254, 228, 0.1);
}

.terms-content h2,
.privacy-content h2 {
    color: rgb(221, 217, 42);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content h2:first-child,
.privacy-content h2:first-child {
    margin-top: 0;
}

.terms-content p,
.privacy-content p {
    color: rgb(254, 254, 228);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-content ul,
.privacy-content ul {
    color: rgb(254, 254, 228);
    opacity: 0.9;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terms-content li,
.privacy-content li {
    margin-bottom: 0.5rem;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: rgb(139, 92, 246);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
