/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.8s ease-out;
}

/* ### Homepage Elements ### */

/* Homepage Hero Section */
.homepage-hero {
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.1) 0%, rgba(10, 10, 10, 0.8) 70%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.homepage-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: heroRotate 20s linear infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.leads-text {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.revenue-text {
    background: linear-gradient(135deg, #6B46C1, #39FF14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(57, 255, 20, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.benefit-icon {
    color: #39FF14;
    font-weight: 700;
}

.hero-cta-section {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-primary-cta {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
}

.hero-primary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.4);
}

.hero-secondary-cta {
    background: transparent;
    color: #39FF14;
    padding: 1.2rem 2.5rem;
    border: 2px solid #39FF14;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.hero-secondary-cta:hover {
    background: #39FF14;
    color: #0A0A0A;
    transform: translateY(-2px);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #39FF14;
    font-size: 1.2rem;
}

.rating span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.video-placeholder:hover {
    border-color: rgba(57, 255, 20, 0.4);
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0A0A0A;
    font-weight: 700;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #6B46C1 0%, #39FF14 100%);
    padding: 6rem 0;
    text-align: center;
}

.problem-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0A0A0A;
    margin-bottom: 3rem;
}

.highlight {
    text-decoration: underline;
    text-decoration-color: #0A0A0A;
    text-decoration-thickness: 4px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #39FF14;
    margin-bottom: 1rem;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: #0A0A0A;
}

.solution-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
}

.tough-text {
    color: #39FF14;
}

.solution-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.solution-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #39FF14;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-questions h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B46C1;
    margin-bottom: 1.5rem;
}

.principles-list {
    list-style: none;
    padding: 0;
}

.principles-list li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.principles-list strong {
    color: #39FF14;
}

.solution-image {
    position: relative;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: #39FF14;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #39FF14;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%);
}

.features-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
}

.real-results {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    transition: all 0.4s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #39FF14;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-result {
    background: rgba(107, 70, 193, 0.2);
    color: #6B46C1;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Advantage Section */
.advantage-section {
    padding: 6rem 0;
    background: #0A0A0A;
}

.advantage-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.unfair-advantage {
    color: #39FF14;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.advantage-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(107, 70, 193, 0.3);
    transition: all 0.5s;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(107, 70, 193, 0.3);
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #39FF14;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Getting Started Section */
.getting-started-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
}

.getting-started-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.easy-text {
    color: #39FF14;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #39FF14;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: #0A0A0A;
}

.comparison-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.comparison-table {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    font-weight: 700;
    padding: 1.5rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.feature-col {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.corevo-col, .competitor-col {
    text-align: center;
}

.check {
    color: #39FF14;
    font-size: 1.5rem;
    font-weight: 700;
}

.cross {
    color: #ff4444;
    font-size: 1.5rem;
    font-weight: 700;
}

.partial {
    color: #ffaa00;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%);
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(57, 255, 20, 0.4);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #39FF14;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.plan-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-cta {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    width: 100%;
}

.plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.3);
}

.pricing-guarantee {
    text-align: center;
    background: rgba(57, 255, 20, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.pricing-guarantee h3 {
    color: #39FF14;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-guarantee p {
    color: rgba(255, 255, 255, 0.8);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    padding: 6rem 0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0A0A0A;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: #0A0A0A;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.primary-cta-button {
    background: #0A0A0A;
    color: #39FF14;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.primary-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.secondary-cta-button {
    background: transparent;
    color: #0A0A0A;
    padding: 1.5rem 3rem;
    border: 2px solid #0A0A0A;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.secondary-cta-button:hover {
    background: #0A0A0A;
    color: #39FF14;
    transform: translateY(-2px);
}

.risk-free {
    font-size: 0.9rem;
    color: rgba(10, 10, 10, 0.8);
}

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .solution-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .problem-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-title,
    .features-title,
    .advantage-title,
    .getting-started-title,
    .comparison-title,
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .final-cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .table-header,
    .table-row {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0A0A0A;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(57, 255, 20, 0.03) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.05) rotate(1deg); }
}

/* AI Grid Pattern */
.ai-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #39FF14;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #39FF14, #6B46C1);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 5px #39FF14; }
    100% { box-shadow: 0 0 20px #39FF14, 0 0 30px #39FF14; }
}

/* Navigation Menu */
.nav-menu {
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #39FF14;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #39FF14;
}

.nav-links a:hover::before {
    width: 100%;
}


/* Dropdown Styles */

/* --- REPLACED Dropdown Rule ---
.dropdown {
    position: relative;
}
--- */
/* Parent must be positioned to anchor the dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: #6B46C1;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* --- REPLACED Dropdown Menu & Visibility Rules ---
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95) 0%, rgba(25, 25, 25, 0.95) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
    min-width: 220px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
--- */

/* Dropdown menu baseline hidden state */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111;
    color: #fff;
    padding: 1rem;
    min-width: 220px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
}

/* Show dropdown on hover or JS .show class */
.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* These styles for links inside the dropdown were not replaced */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.3s;
}

.dropdown-menu a:hover::before {
    left: 100%;
}

.dropdown-menu a:hover {
    color: #39FF14;
    background: rgba(57, 255, 20, 0.05);
    transform: translateX(5px);
}

/* Mobile Menu Toggle (De-duplicated) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #39FF14;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background: #6B46C1;
}

/* Mobile Dropdown Support */
@media (max-width: 768px) {
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        padding: 0.5rem 1rem;
        background: none;
        backdrop-filter: none;
        border: none;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* --- ADDED Styles for Overflow Control --- */
.nav-menu,
.nav-links,
.nav-container {
    position: relative;
    overflow: visible !important;
}

.cta-button {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
}

/* Main Content */
.main-content {
    margin-top: 90px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.1) 0%, rgba(10, 10, 10, 0.8) 70%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: heroRotate 20s linear infinite;
}

@keyframes heroRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
    line-height: 1.1;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero .subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-cta {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.hero-cta:hover::before {
    transform: translateX(100%);
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.4);
}

/* Section Title Styling - Enhanced Gradients */

.section a {
    color: #39FF14;
    text-decoration: none;
    border-bottom: 1px solid rgba(57, 255, 20, 0.3);
    transition: all 0.3s;
}

.section a:hover {
    color: #6B46C1;
    border-bottom-color: #6B46C1;
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.5);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #39FF14, #6B46C1);
    border-radius: 2px;
}

/* Solution Section Heading */
.solution-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
}

/* Advantage Section Heading */
.advantage-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
}

/* Getting Started Section Heading */
.getting-started-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
}

/* Comparison Section Heading */
.comparison-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
}

/* Pricing Section Heading */
.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
}

/* FAQ Section Heading */
.faq-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
}

/* Section Boarders Only - Used after Hero */
.gradient-borders {
            position: relative;
            padding: 4rem 0;
            margin: 2rem 0;
        }

        .gradient-borders::before,
        .gradient-borders::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(57, 255, 20, 0.3) 20%, 
                rgba(107, 70, 193, 0.3) 50%, 
                rgba(57, 255, 20, 0.3) 80%, 
                transparent 100%);
        }

        .gradient-borders::before {
            top: 0;
        }

        .gradient-borders::after {
            bottom: 0;
        }

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

/* ===== FIXED CARD GRID SYSTEM ===== */

/* Base card grid - flexible for dynamic content */
.card-grid {
    display: grid;
    gap: 2.5rem;
    margin: 4rem 0;
    /* Default: responsive auto-fit grid */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Specific card count classes - these override the base */
.card-grid.one-card {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.card-grid.three-cards {
    grid-template-columns: repeat(3, 1fr);
}

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

.card-grid.five-cards {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.six-cards {
    grid-template-columns: repeat(3, 1fr);
}

/* Special handling for 5 cards - center the last two */
.card-grid.five-cards .card:nth-child(4) {
    grid-column: 1 / span 1;
    margin-left: auto;
    margin-right: auto;
}

.card-grid.five-cards .card:nth-child(5) {
    grid-column: 3 / span 1;
    margin-left: auto;
    margin-right: auto;
}

/* For any odd number of cards where the last card should be centered */
.card-grid.center-last .card:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARD STYLING (keeping existing styles) ===== */

.card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #39FF14, #6B46C1, #39FF14);
    background-size: 200% 100%;
    animation: borderFlow 3s ease-in-out infinite;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.4);
}

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

.card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #39FF14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ===== STEP NUMBER STYLING (for your specific use case) ===== */

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 2rem 0;
    /* If using emoji/icon instead of number */
    font-size: 2rem;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

@media (max-width: 1024px) {
    /* Tablet: 3-cards become 2-cards, others adjust */
    .card-grid.three-cards,
    .card-grid.four-cards,
    .card-grid.five-cards,
    .card-grid.six-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reset special positioning */
    .card-grid.five-cards .card:nth-child(4),
    .card-grid.five-cards .card:nth-child(5) {
        grid-column: span 1;
        margin: 0;
    }
}

@media (max-width: 768px) {
    /* Mobile: All grids become single column */
    .card-grid,
    .card-grid.one-card,
    .card-grid.two-cards,
    .card-grid.three-cards,
    .card-grid.four-cards,
    .card-grid.five-cards,
    .card-grid.six-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Reset all special positioning on mobile */
    .card-grid .card {
        grid-column: span 1;
        margin: 0;
        max-width: none;
    }
    
    .card {
        padding: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===== ANIMATION KEYFRAMES ===== */

@keyframes borderFlow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

/* Card List Styling - Add to your CSS */

/* Lists within cards */
.card-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.card-content ul li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    transition: all 0.3s;
}

.card-content ul li:last-child {
    border-bottom: none;
}

.card-content ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #39FF14;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-content ul li:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
    background: rgba(57, 255, 20, 0.05);
    border-radius: 8px;
    padding-left: 2.5rem;
}

.card-content ul li:hover::before {
    color: #6B46C1;
    transform: scale(1.2);
}

/* Strong text within list items */
.card-content ul li strong {
    color: #39FF14;
    font-weight: 700;
}

/* Italic text within list items */
.card-content ul li em {
    color: #6B46C1;
    font-style: italic;
}

/* Premium Use Case Grid */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.use-case-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%);
    backdrop-filter: blur(30px);
    padding: 3.5rem;
    border-radius: 28px;
    border: 1px solid rgba(107, 70, 193, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05) 0%, rgba(107, 70, 193, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 28px;
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(107, 70, 193, 0.3),
        0 0 0 1px rgba(57, 255, 20, 0.2);
}

.use-case-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.7;
}

.use-case-card .best-for {
    font-weight: 600;
    color: #6B46C1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

.use-case-button {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.3);
    overflow: hidden;
}

.use-case-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.use-case-button:hover::before {
    width: 300px;
    height: 300px;
}

.use-case-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(57, 255, 20, 0.4);
}

/* Premium Feature Section */
.feature-section {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(57, 255, 20, 0.05) 100%);
    backdrop-filter: blur(30px);
    padding: 6rem 0;
    margin: 6rem 0;
    border-radius: 40px;
    border: 1px solid rgba(107, 70, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(57,255,20,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.feature-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.feature-text {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

/* Advanced FAQ Section */
.faq-section {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%);
    backdrop-filter: blur(30px);
    padding: 6rem 0;
    margin: 6rem 0;
    border-radius: 40px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.faq-item {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 20, 0.2);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #39FF14;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.faq-question:hover {
    background: rgba(57, 255, 20, 0.05);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    display: none;
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: #6B46C1;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Ultimate CTA Section */
.cta-section {
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    padding: 6rem 0;
    text-align: center;
    border-radius: 40px;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-section h2 {
    color: #0A0A0A;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-section p {
    color: #0A0A0A;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.cta-main-button {
    background: #0A0A0A;
    color: #39FF14;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cta-main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(57, 255, 20, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cta-main-button:hover::before {
    transform: translateX(100%);
}

.cta-main-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Enhanced Footer - REPLACES existing .footer section */
.footer {
    background: linear-gradient(145deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.5), transparent);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-company {
    max-width: 350px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #39FF14;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.footer-company-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    border-color: rgba(57, 255, 20, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.2);
}

.social-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: rgba(255, 255, 255, 0.7); /* This is the icon's default color */
    transition: color 0.3s;
}

.social-link:hover .social-icon {
    color: #39FF14; /* This is the icon's color on hover */
}

.footer-section-title {
    color: #39FF14;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #39FF14;
    transition: width 0.3s;
}

.footer-links a:hover {
    color: #39FF14;
    transform: translateX(3px);
}

.footer-links a:hover::before {
    width: 100%;
}

.cta-link {
    background: linear-gradient(135deg, #39FF14, #6B46C1) !important;
    color: #0A0A0A !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    margin-top: 0.5rem !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.3) !important;
}

.cta-link::before {
    display: none !important;
}

.cta-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(57, 255, 20, 0.4) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #39FF14;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-company {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-company {
        grid-column: 1;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .footer-legal {
        gap: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
    
    /* Responsive card grids */
    .card-grid.three-cards,
    .card-grid.four-cards,
    .card-grid.five-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-grid.five-cards .card:nth-child(4),
    .card-grid.five-cards .card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* All card grids become single column on mobile */
    .card-grid,
    .card-grid.three-cards,
    .card-grid.four-cards,
    .card-grid.five-cards,
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Reset any special positioning on mobile */
    .card-grid.five-cards .card {
        grid-column: span 1;
    }

    .container {
        padding: 0 1rem;
    }

    .use-case-card,
    .card {
        padding: 2rem;
    }
    
    /* Mobile Menu Styles (for future implementation) */
    .nav-menu.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(145deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
        backdrop-filter: blur(30px);
        border-top: 1px solid rgba(57, 255, 20, 0.2);
        padding: 2rem 0;
    }
    
    .nav-menu.mobile-open .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
    }
    
    .nav-menu.mobile-open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(57, 255, 20, 0.05);
        margin: 0.5rem 0;
        border-radius: 8px;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.8s ease-out;
}

/* =================================================================
   COREVO DIGITAL - GHL SPECIFIC FORM STYLING
   Custom CSS targeting exact GHL form IDs and classes
   ================================================================= */

/* ===== POPUP OVERLAY & CONTAINER ===== */

/* Main overlay background */
#overlay {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 999999 !important;
}

/* Main popup container */
#hl_main_popup,
.hl_main_popup,
.popup-body {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(57, 255, 20, 0.3) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.2) !important;
    padding: 3rem !important;
    max-width: 600px !important;
    margin: 2rem auto !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Close button */
.closeLPModal {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 68, 68, 0.1) !important;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    color: #ff4444 !important;
    transition: all 0.3s !important;
    position: absolute !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
    cursor: pointer !important;
}

.closeLPModal:hover {
    background: rgba(255, 68, 68, 0.2) !important;
    border-color: rgba(255, 68, 68, 0.5) !important;
    transform: scale(1.1) !important;
}

/* ===== HEADER SECTION ===== */

/* Header container */
.popup-header {
    text-align: center !important;
    margin-bottom: 2.5rem !important;
    padding: 0 !important;
}

/* Main title */
.popup-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, #39FF14 0%, #6B46C1 50%, #39FF14 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% 100% !important;
    animation: textShimmer 3s ease-in-out infinite !important;
    line-height: 1.2 !important;
}

@keyframes textShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Subtitle */
.popup-subtitle {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* ===== FORM WRAPPER & CONTAINERS ===== */

/* Main form wrapper */
.ghl-form-wrap,
#form-oLfbP-w4S_,
#form-builder,
#_builder-form {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* Form builder wrap */
.form-builder--wrap {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* Fields container */
.fields-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

/* Individual form item containers */
.form-builder--item {
    margin-bottom: 0 !important;
    padding: 0 !important;
}

/* Form field wrappers */
.form-field-wrapper,
.form-field-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* ===== FORM LABELS ===== */

/* All form labels */
.form-field-wrapper label,
.form-field-container label,
#form-first_name label,
#form-last_name label,
#form-phone label {
    font-weight: 600 !important;
    color: #39FF14 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 0.5rem !important;
    font-family: inherit !important;
}

/* ===== FORM INPUTS ===== */

/* All form control inputs */
.form-control,
#first_name,
#last_name,
#phone {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%) !important;
    border: 1px solid rgba(57, 255, 20, 0.3) !important;
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    color: white !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    transition: all 0.3s !important;
    backdrop-filter: blur(10px) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
}

/* Input focus states */
.form-control:focus,
#first_name:focus,
#last_name:focus,
#phone:focus {
    border-color: rgba(57, 255, 20, 0.6) !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Placeholder styling */
.form-control::placeholder,
#first_name::placeholder,
#last_name::placeholder,
#phone::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ===== SUBMIT BUTTON ===== */

/* Submit button */
.btn,
.btn-dark,
.button-element,
#el_bRt3elT74E9z0e7fWGrC_button_5 .btn,
#el_bRt3elT74E9z0e7fWGrC_button_5 .button-element {
    background: linear-gradient(135deg, #39FF14, #6B46C1) !important;
    color: #0A0A0A !important;
    padding: 1.2rem 2rem !important;
    border: none !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.4s !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 1rem !important;
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3) !important;
    width: 100% !important;
    font-family: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Submit button hover effect */
.btn::before,
.btn-dark::before,
.button-element::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.6s !important;
}

.btn:hover::before,
.btn-dark:hover::before,
.button-element:hover::before {
    left: 100% !important;
}

.btn:hover,
.btn-dark:hover,
.button-element:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.4) !important;
}

/* ===== CHECKBOX & PRIVACY LINKS ===== */

/* Checkbox container */
.in-r-c {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    margin: 1.5rem 0 !important;
}

/* Checkbox input */
.in-r-c input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    appearance: none !important;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%) !important;
    border: 1px solid rgba(57, 255, 20, 0.3) !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    position: relative !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.in-r-c input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #39FF14, #6B46C1) !important;
    border-color: #39FF14 !important;
}

.in-r-c input[type="checkbox"]:checked::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #0A0A0A !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
}

/* Checkbox label */
.in-r-c label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: normal !important;
    margin: 0 !important;
}

/* Privacy/Terms links */
.text-element a {
    color: #39FF14 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(57, 255, 20, 0.3) !important;
    transition: all 0.3s !important;
}

.text-element a:hover {
    border-bottom-color: #39FF14 !important;
    color: #6B46C1 !important;
}

/* ===== ROW & COLUMN LAYOUTS ===== */

/* Specific row styling */
#row-YDEx3lspBT,
.c-row,
.row {
    margin: 0 !important;
    padding: 0 !important;
}

/* Column styling */
#col-McNA0cB1Az,
.c-column,
.col-12 {
    padding: 0 !important;
    margin: 0 !important;
}

/* Inner containers */
.inner {
    padding: 0 !important;
    margin: 0 !important;
}

/* Custom code container */
#custom-code-MtU-YypqdN {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    #hl_main_popup,
    .hl_main_popup,
    .popup-body {
        padding: 2rem !important;
        margin: 1rem !important;
        max-width: 90vw !important;
    }

    .popup-title {
        font-size: 2rem !important;
    }

    .popup-subtitle {
        font-size: 1rem !important;
    }

    .closeLPModal {
        top: 1rem !important;
        right: 1rem !important;
        width: 35px !important;
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    #hl_main_popup,
    .hl_main_popup,
    .popup-body {
        padding: 1.5rem !important;
        margin: 0.5rem !important;
    }

    .popup-title {
        font-size: 1.8rem !important;
    }

    .popup-subtitle {
        font-size: 0.95rem !important;
    }

    .in-r-c {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
}

/* ===== ADDITIONAL ENHANCEMENTS ===== */

/* Remove any default GHL styling that might interfere */
#hl_main_popup *,
.hl_main_popup *,
.popup-body * {
    box-sizing: border-box !important;
}

/* Ensure proper text color inheritance */
#hl_main_popup,
.hl_main_popup,
.popup-body {
    color: white !important;
}

/* Hide any GHL branding if present */
.powered-by,
.ghl-branding {
    display: none !important;
}

/* Loading states for submit button */
.btn.loading,
.btn-dark.loading,
.button-element.loading {
    pointer-events: none !important;
    opacity: 0.7 !important;
}

.btn.loading::after,
.btn-dark.loading::after,
.button-element.loading::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #0A0A0A !important;
    border-top: 2px solid transparent !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    transform: translate(-50%, -50%) !important;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Success/Error message styling if they appear */
.success-message,
.error-message {
    padding: 1rem !important;
    border-radius: 12px !important;
    margin-top: 1rem !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.success-message {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2) 0%, rgba(107, 70, 193, 0.2) 100%) !important;
    border: 1px solid rgba(57, 255, 20, 0.5) !important;
    color: #39FF14 !important;
}

.error-message {
    background: rgba(255, 68, 68, 0.1) !important;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
    color: #ff4444 !important;
}


/* ===== COREVO DIGITAL VOICE DEMO STYLES ===== */
/* Keeping your original modal functionality with Corevo styling */

/* Base Video Thumbnail - Enhanced for Corevo */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(57, 255, 20, 0.2);
    backdrop-filter: blur(20px);
}

.video-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.4);
}

.video-thumbnail img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* Size-Based Video Thumbnail Classes */

/* Square Thumbnails (1:1) - For demo cards */
.video-thumbnail.video-square,
.video-thumbnail.video-square img {
    aspect-ratio: 1 / 1;
}

/* Widescreen Thumbnails (16:9) - For hero, features, etc */
.video-thumbnail.video-widescreen,
.video-thumbnail.video-widescreen img {
    aspect-ratio: 16 / 9;
}

/* Large Widescreen (21:9) - For cinematic sections */
.video-thumbnail.video-cinematic,
.video-thumbnail.video-cinematic img {
    aspect-ratio: 21 / 9;
}

/* Portrait Thumbnails (9:16) - For mobile-first sections */
.video-thumbnail.video-portrait,
.video-thumbnail.video-portrait img {
    aspect-ratio: 9 / 16;
}

/* Play button overlay - Enhanced with Corevo styling */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.8), rgba(107, 70, 193, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Allows clicks to pass through to the thumbnail */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-thumbnail:hover .play-button {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: #0A0A0A;
    margin-left: 4px;
}

/* Modal for the video player - Enhanced with Corevo styling */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 1rem;
}

.video-modal.active {
    display: flex; /* Shown when active */
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px; /* Max width of the video player in the modal */
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-radius: 24px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.2);
    backdrop-filter: blur(30px);
}

/* The responsive square container - KEEPING YOUR ORIGINAL 1:1 RATIO */
.youtube-square-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* KEEPING YOUR ORIGINAL 1:1 RATIO */
    border-radius: 1rem;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.youtube-square-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Close button for the modal - Enhanced with Corevo styling */
.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff4444;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    line-height: 1;
}

.close-modal:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.5);
    transform: scale(1.1);
}

/* Demo Play Button for the new card layout */
.demo-play-button {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    color: #0A0A0A;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.3);
    width: 100%;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.demo-play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.demo-play-button:hover::before {
    left: 100%;
}

.demo-play-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(57, 255, 20, 0.4);
}

/* Coming Soon Placeholder Styles */
.demo-coming-soon {
    opacity: 0.7;
    pointer-events: none;
}

.coming-soon-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.8) 100%);
    border: 2px dashed rgba(57, 255, 20, 0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 1.5rem;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.coming-soon-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    animation: comingSoonShimmer 3s ease-in-out infinite;
}

@keyframes comingSoonShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

.coming-soon-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #39FF14;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Demo Available State (for active demos) */
.demo-available .video-thumbnail {
    cursor: pointer;
}

.demo-available .card-content {
    position: relative;
}

.demo-available .card-content::after {
    content: '🎬';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s;
}

.demo-available:hover .card-content::after {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Size-Specific Play Button Styling */

/* Small Play Button for Square/Portrait Videos */
.video-thumbnail.video-square .play-button,
.video-thumbnail.video-portrait .play-button {
    width: 60px;
    height: 60px;
}

.video-thumbnail.video-square .play-button svg,
.video-thumbnail.video-portrait .play-button svg {
    width: 30px;
    height: 30px;
}

/* Medium Play Button for Widescreen Videos */
.video-thumbnail.video-widescreen .play-button {
    width: 80px;
    height: 80px;
}

.video-thumbnail.video-widescreen .play-button svg {
    width: 40px;
    height: 40px;
}

/* Large Play Button for Cinematic Videos */
.video-thumbnail.video-cinematic .play-button {
    width: 100px;
    height: 100px;
}

.video-thumbnail.video-cinematic .play-button svg {
    width: 50px;
    height: 50px;
}

/* Enhanced Styling for Widescreen (Hero-style) */
.video-thumbnail.video-widescreen {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.video-thumbnail.video-widescreen:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(57, 255, 20, 0.2);
}

.video-thumbnail.video-widescreen .play-button {
    background: linear-gradient(135deg, #39FF14, #6B46C1);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.4);
}

.video-thumbnail.video-widescreen:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.5);
}

/* Video Overlay Text (can be used on any size) */
.video-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.8));
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.video-overlay span {
    color: #39FF14;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.video-thumbnail:hover .video-overlay {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(107, 70, 193, 0.1));
    border-color: rgba(57, 255, 20, 0.4);
    transform: translateY(-3px);
}

/* Overlay adjustments for different sizes */
.video-thumbnail.video-square .video-overlay,
.video-thumbnail.video-portrait .video-overlay {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
}

.video-thumbnail.video-square .video-overlay span,
.video-thumbnail.video-portrait .video-overlay span {
    font-size: 0.9rem;
}

.video-thumbnail.video-cinematic .video-overlay {
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1.25rem 2rem;
}

.video-thumbnail.video-cinematic .video-overlay span {
    font-size: 1.3rem;
}

/* Responsive adjustments for all video sizes */
@media (max-width: 768px) {
    /* Adjust play buttons on mobile */
    .video-thumbnail.video-widescreen .play-button,
    .video-thumbnail.video-cinematic .play-button {
        width: 70px;
        height: 70px;
    }
    
    .video-thumbnail.video-widescreen .play-button svg,
    .video-thumbnail.video-cinematic .play-button svg {
        width: 35px;
        height: 35px;
    }
    
    .video-thumbnail.video-square .play-button,
    .video-thumbnail.video-portrait .play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-thumbnail.video-square .play-button svg,
    .video-thumbnail.video-portrait .play-button svg {
        width: 25px;
        height: 25px;
    }
    
    /* Adjust overlays on mobile */
    .video-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .video-overlay span {
        font-size: 1rem;
    }
    
    .video-thumbnail.video-cinematic .video-overlay {
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .video-thumbnail.video-cinematic .video-overlay span {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-modal {
        padding: 0.5rem;
    }
    
    .video-modal-content {
        padding: 1.5rem;
        max-width: 95vw;
    }
    
    .close-modal {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        padding: 1rem;
    }
    
    .youtube-square-container {
        border-radius: 0.5rem;
    }
}