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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 50%, #4C1D95 100%);
    min-height: 100vh;
}

/* Header Styles */
.header-top {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    font-size: 12px;
}

.trusted-badge {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navigation Styles */
.navbar {
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    color: #F59E0B;
    background: linear-gradient(45deg, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #F59E0B !important;
}

.btn-cta {
    background: linear-gradient(45deg, #F59E0B, #FBBF24);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-cta:hover {
    background: linear-gradient(45deg, #FBBF24, #F59E0B);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.success-banner {
    background: linear-gradient(45deg, #EF4444, #F97316);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #E5E7EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #FBBF24;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.introduction-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.introduction-section h3 {
    color: #FBBF24;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.introduction-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #E5E7EB;
}

.hero-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

/* CTA Section */
.hero-cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #E5E7EB;
}

.pricing-text {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.old-price {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1.8rem;
}

.new-price {
    color: #FBBF24;
    font-size: 2.5rem;
}

.btn-cta-large {
    background: linear-gradient(45deg, #F59E0B, #FBBF24);
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    margin-bottom: 30px;
}

.btn-cta-large:hover {
    background: linear-gradient(45deg, #FBBF24, #F59E0B);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    color: #ffffff;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2.5rem;
    color: #E5E7EB;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #FBBF24;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #22C55E;
}

.guarantee-badge i {
    font-size: 1.2rem !important;
    color: #22C55E !important;
}

.guarantee-badge span {
    color: #22C55E;
    font-weight: 600;
    font-size: 0.9rem;
}

.os-compatibility {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.os-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.os-badge i {
    font-size: 1.5rem;
    color: #E5E7EB;
}

.os-badge span {
    color: #E5E7EB;
    font-weight: 500;
}

/* Characters Section */
.characters-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}

.characters-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.character-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.character-item:hover {
    transform: translateY(-10px);
}

.character-item i {
    font-size: 3rem;
    color: #FBBF24;
}

.character-item span {
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.feature-list {
    padding: 0 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #F59E0B;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #F59E0B;
    margin-top: 5px;
    min-width: 30px;
}

.feature-item div,
.feature-item strong {
    color: #ffffff;
    line-height: 1.6;
}

.feature-item strong {
    color: #FBBF24;
}

/* Problem Section */
.problem-section {
    padding: 60px 0;
    background: linear-gradient(45deg, #DC2626, #EF4444);
}

.problem-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.problem-section p {
    font-size: 1.2rem;
    color: #FEE2E2;
    margin-bottom: 30px;
}

.problem-visual {
    font-size: 4rem;
    color: #FBBF24;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.solution-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.solution-section p {
    font-size: 1.2rem;
    color: #E5E7EB;
    margin-bottom: 50px;
}

.solution-steps {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step i {
    font-size: 4rem;
    color: #F59E0B;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 10px;
}

.step p {
    color: #E5E7EB;
    font-size: 1rem;
}

/* Statistics Section */
.stats-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.stats-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item strong {
    color: #FBBF24;
}

.stat-item u {
    color: #22C55E;
    text-decoration: underline;
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
}

.audience-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.audience-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.audience-item i {
    font-size: 3rem;
    color: #F59E0B;
    margin-bottom: 20px;
}

.audience-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.audience-item p {
    color: #E5E7EB;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.how-it-works-section p {
    font-size: 1.2rem;
    color: #E5E7EB;
    margin-bottom: 40px;
}

.demo-video {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

/* Steps Section */
.steps-section {
    padding: 60px 0;
}

.steps-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    max-width: 300px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F59E0B, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-item p {
    color: #E5E7EB;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.contact-form-container > p {
    font-size: 1.1rem;
    color: #E5E7EB;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #F59E0B;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9CA3AF;
}

.thank-you-message {
    text-align: center;
    padding: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 15px;
    border: 2px solid #22C55E;
}

.thank-you-message h3 {
    color: #22C55E;
    font-size: 2rem;
    margin-bottom: 20px;
}

.thank-you-message p {
    color: #E5E7EB;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.testimonial-item .stars {
    margin-bottom: 20px;
}

.testimonial-item .stars i {
    color: #FBBF24;
    font-size: 1.2rem;
    margin-right: 5px;
}

.testimonial-item p {
    color: #E5E7EB;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #FBBF24;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: #F59E0B;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-section h6 {
    color: #FBBF24;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #E5E7EB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F59E0B;
}

.footer-section p {
    color: #E5E7EB;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem !important;
    line-height: 1.5;
    color: #6B7280 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .pricing-text {
        font-size: 1.8rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .characters-row {
        gap: 20px;
    }
    
    .character-item {
        padding: 15px;
    }
    
    .character-item i {
        font-size: 2rem;
    }
    
    .solution-steps {
        gap: 30px;
    }
    
    .steps-container {
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .os-compatibility {
        gap: 15px;
    }
    
    .os-badge {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .introduction-section {
        padding: 20px;
    }
    
    .introduction-section h3 {
        font-size: 1.5rem;
    }
    
    .introduction-section p {
        font-size: 1rem;
    }
    
    .btn-cta-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .video-placeholder {
        height: 200px;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .audience-item {
        padding: 20px 15px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* 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: #F59E0B;
    animation: spin 1s ease-in-out infinite;
}

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

/* Pricing Page Styles */
.pricing-hero-section {
    padding: 80px 0 60px;
    text-align: center;
}

.pricing-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.pricing-hero-subtitle {
    font-size: 1.3rem;
    color: #E5E7EB;
    margin-bottom: 30px;
}

.pricing-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid #22C55E;
    color: #22C55E;
    font-weight: 500;
}

.pricing-note i {
    font-size: 1.2rem;
}

/* Pricing Plans Section */
.pricing-plans-section {
    padding: 80px 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #F59E0B;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.pricing-card.featured {
    border-color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    transform: scale(1.05);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    color: #E5E7EB;
}

.pricing-badge.popular {
    background: linear-gradient(45deg, #F59E0B, #FBBF24);
    color: #ffffff;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-price .currency {
    font-size: 2rem;
    color: #FBBF24;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.2rem;
    color: #9CA3AF;
}

.pricing-description {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-description p {
    color: #E5E7EB;
    font-size: 1.1rem;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.pricing-features .feature-item i {
    color: #22C55E;
    font-size: 1.2rem;
    min-width: 20px;
}

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

.btn-pricing {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, #6B46C1, #553C9A);
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: linear-gradient(45deg, #553C9A, #6B46C1);
    border-color: #F59E0B;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-pricing.featured {
    background: linear-gradient(45deg, #F59E0B, #FBBF24);
    border-color: #F59E0B;
}

.btn-pricing.featured:hover {
    background: linear-gradient(45deg, #FBBF24, #F59E0B);
    border-color: #FBBF24;
}

/* Pricing FAQ Section */
.pricing-faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.pricing-faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(245, 158, 11, 0.1);
    color: #FBBF24;
}

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

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: #E5E7EB;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.1);
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 80px 0;
    text-align: center;
}

.pricing-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.pricing-cta-section p {
    font-size: 1.2rem;
    color: #E5E7EB;
    margin-bottom: 40px;
}

/* Terms and Privacy Page Styles */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.legal-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FBBF24;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: #E5E7EB;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
    color: #E5E7EB;
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-content em {
    color: #FBBF24;
    font-style: italic;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Mobile Responsive for Pricing */
@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 2.2rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-price .amount {
        font-size: 3rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 15px 20px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-page h1 {
        font-size: 2.2rem;
    }
}
