/* ==================== RX Agency Hub CSS ==================== */
/* Hero Section - NEW DESIGN */
.hero-01 {
    background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
    padding: 3rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-01::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container-01 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content-01 h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-01 h1 .gradient-text {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: initial;
}

.hero-content-01 p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-btn-01 {
    display: inline-block;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(91, 33, 182, 0.3);
}

.hero-btn-01:hover {
    color: #fff;
    box-shadow: 0 15px 40px rgba(91, 33, 182, 0.4);
}

.hero-image-01 {
    position: relative;
}

.hero-mockup-01 {
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.2);
}

.mockup-screen-01 {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    font-size: 4rem;
}

/* Problems Section - PREMIUM REDESIGN */
.problems-section {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.problems-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    text-transform: initial;
}

.section-title .highlight {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problems-section .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2.5rem !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.problems-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/*.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5b21b6 0%, #7c3aed 50%, #a78bfa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}*/

/*.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s;
}*/

.problem-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.2);
}

.problem-card:hover::after {
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
}

.problem-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(91, 33, 182, 0.15);
    transition: all 0.4s;
}
.problem-icon {
    width: 48px;
    height: 48px;
    transition: all 0.4s;
    filter: drop-shadow(0 2px 8px rgba(91, 33, 182, 0.2));
}

.problem-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.4;
    position: relative;
    z-index: 1;
        text-transform: initial;
}

.problem-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.problem-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #7c3aed;
    transition: all 0.4s;
    box-shadow: 0 4px 10px rgba(91, 33, 182, 0.1);
}
/* Features Detail Section */
.features-detail-section {
    padding: 3rem 2rem;
    background: white;
}

.feature-detail {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-detail:nth-child(even) {
    direction: rtl;
}

.feature-detail:nth-child(even)>* {
    direction: ltr;
}

.feature-detail-content h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: initial;
}

.feature-detail-content p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-detail-list {
    list-style: none;
}

.feature-detail-list li {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
    font-size: 0.98rem;
}

.feature-detail-list li::before {
    content: '✓';
    color: #5b21b6;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-detail-image {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 20px;
    padding: 0rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.1);
}

.feature-detail-image .icon {
    font-size: 5rem;
}

/* Clients Section */
.clients-section {
    padding: 2.5rem 2rem;
    background: #f8f9fa;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.clients-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: initial;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.client-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.client-logo:hover {
    border-color: #7c3aed;
    box-shadow: 0 5px 20px rgba(91, 33, 182, 0.1);
}

/* Help Section */
.help-section {
    padding: 3rem 2rem;
    background: white;
}

.help-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.help-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.help-card:hover {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    box-shadow: 0 10px 30px rgba(91, 33, 182, 0.15);
}

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

.help-card h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: initial;
}

.help-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta-section-01 {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #a78bfa 100%);
    color: white;
    text-align: center;
}

.cta-container-01 h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: initial;
    color: #fff;
}

.cta-container-01 p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn-01 {
    display: inline-block;
    background: white;
    color: #5b21b6;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-01:hover {
    color: #5b21b6;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container-01,
    .feature-detail,
    .module-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problems-grid,
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content-01 h1 {
        font-size: 2.5rem;
    }

    .module-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .module-number {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {

    .problems-grid,
    .help-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-01 h1 {
        font-size: 2rem;
    }

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

}.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all 0.3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}
.wp-block-uagb-advanced-heading.uagb-block-23f03ea9.wp-block-uagb-advanced-heading {text-align: center;}.wp-block-uagb-advanced-heading.uagb-block-23f03ea9.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-23f03ea9.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-23f03ea9.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-23f03ea9.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-23f03ea9 .uagb-heading-text{font-size: 15px;line-height: 1.9em;letter-spacing: 1px;}