.elementor-2846 .elementor-element.elementor-element-af45fee{--display:flex;}.elementor-2846 .elementor-element.elementor-element-83ff6f2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-584b122 */:root {
    --primary-purple: #B258C0;
    --white: #FFFFFF;
    --light-purple: #CEABD4;
    --light-gray: #EFEFEF;
    --dark-gray: #2d3748;
    --text-gray: #718096;
}

.prime-landing * {
    box-sizing: border-box;
}

.prime-landing {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

.prime-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.prime-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #9333ea 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
}

.prime-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: primeFloat 6s ease-in-out infinite;
}

@keyframes primeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.prime-hero-content {
    position: relative;
    z-index: 2;
}

.prime-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.prime-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prime-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.prime-stat {
    text-align: center;
    min-width: 120px;
}

.prime-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    color: #ffd700;
}

.prime-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.prime-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: var(--white) !important;
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    display: inline-block;
    margin-top: 1rem;
}

.prime-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    color: var(--white) !important;
    text-decoration: none !important;
}

/* Features Section */
.prime-features {
    padding: 80px 0;
    background: var(--light-gray);
    margin: 0 -20px;
}

.prime-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.prime-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.prime-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(178, 88, 192, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.prime-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(178, 88, 192, 0.15);
    border-color: var(--light-purple);
}

.prime-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-purple), #9333ea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--white);
}

.prime-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.prime-card p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Benefits Section */
.prime-benefits {
    padding: 80px 0;
    background: var(--white);
}

.prime-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.prime-benefits h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.prime-benefits p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.prime-list {
    list-style: none;
    padding: 0;
}

.prime-list li {
    padding: 0.4rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.prime-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 1.1rem;
}

.prime-visual {
    background: linear-gradient(135deg, var(--primary-purple), #9333ea);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.prime-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: primePulse 4s ease-in-out infinite;
}

@keyframes primePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.prime-comparison {
    position: relative;
    z-index: 2;
}

.prime-old {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.prime-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.prime-savings {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Final */
.prime-cta-section {
    padding: 80px 0;
    background: var(--light-purple);
    text-align: center;
    margin: 0 -20px;
}

.prime-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.prime-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prime-cta-large {
    background: linear-gradient(135deg, var(--primary-purple), #9333ea);
    color: var(--white) !important;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(178, 88, 192, 0.3);
    display: inline-block;
}

.prime-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 88, 192, 0.4);
    color: var(--white) !important;
    text-decoration: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .prime-hero h1 {
        font-size: 2.2rem;
    }
    
    .prime-hero-subtitle {
        font-size: 1rem;
    }
    
    .prime-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .prime-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .prime-grid {
        grid-template-columns: 1fr;
    }
    
    .prime-section-title,
    .prime-benefits h2,
    .prime-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .prime-hero,
    .prime-features,
    .prime-cta-section {
        margin: 0 -10px;
    }
}/* End custom CSS */