.hero-new {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.hero-title-new {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-subtitle-new {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 42rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.hero-feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-feature-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-cta-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
}

.hero-image {
    position: relative;
    max-width:500px;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 1rem;
    transform: rotate(3deg);
}

.hero-image img {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
}

.video-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.features-new {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.feature-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.feature-benefits li:before {
    content: "→";
    color: #3b82f6;
    font-weight: 600;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.target-audiences {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.audience-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.audience-card:hover .audience-icon {
    background: rgba(59, 130, 246, 0.2);
}

.audience-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.audience-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.audience-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.audience-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.pricing-new {
    padding: 6rem 0;
    background: white;
}

.pricing-description {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.pricing-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
    justify-content: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-card::before {
    content: \'\';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
}

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

.pricing-card-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin: 0 auto 1.5rem;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.pricing-card-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.3rem;
    font-weight: 700;
    color: #10b981;
}

.price-period {
    font-size: 1.125rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.pricing-card-subtitle {
    color: #6b7280;
    margin-bottom: 0;
}

.pricing-card-features {
    margin-bottom: 2rem;
}

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

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #374151;
}

.pricing-features-list li:last-child {
    margin-bottom: 0;
}

.pricing-card-cta {
    text-align: center;
}

.pricing-cta-note {
    display: block;
    margin-top: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.pricing-passion-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pricing-passion-note p {
    margin: 0;
    color: #6b7280;
    font-style: italic;
    font-size: 0.95rem;
}


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

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.cta-highlight:before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
}


@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        align-items: stretch;
    }
    
    .pricing-card-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .pricing-card {
        margin: 0;
        padding: 1.5rem;
    }
    
    .pricing-card-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-features-list li {
        font-size: 0.9rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .final-cta-buttons .btn,
    .final-cta-buttons .btn-new-primary,
    .final-cta-buttons .btn-new-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pricing-passion-note {
        margin: 2rem 1rem 0;
        padding: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }
}