.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero-section-mp {
    background: linear-gradient(135deg, #ff0080 0%, #ff6b35 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section-mp .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-section-mp .hero-text h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-transform: inherit;
}

.hero-section-mp .hero-text p {
    font-size: 1.15em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-section-mp .hero-image {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.hero-section-mp .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.15);
    padding: 60px 20px;
    border-radius: 10px;
    color: white;
    font-size: 0.9em;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1em;
}

.btn-primary-mp {
    background-color: #ff0080;
    color: white;
    border: none;
}

.btn-primary-mp:hover {
    background-color: #e6006b;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
    color: #fff;
}

.btn-secondary-mp {
    background-color: white;
    color: #ff0080;
    border: 2px solid white;
}

.btn-secondary-mp:hover {
    background-color: transparent;
    color: white;
}

/* Section with Image */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.section-with-image.reverse {
    direction: rtl;
}

.section-with-image.reverse>* {
    direction: ltr;
}

.section-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    text-transform: inherit;
}

.section-text p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-text ul {
    list-style: none;
    margin: 20px 0;
}

.section-text li {
    padding: 12px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
    font-size: 0.9em;
}

.section-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff0080;
    font-weight: bold;
    font-size: 1.2em;
}

.section-image {
    background: #fff5f5;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.08);
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Features Grid */
.features-section {
       margin-bottom: 0px;
    padding: 0;
}

.section-title-mp {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: inherit;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15em;
    color: #666;
    margin-bottom: 60px !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #ff0080;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0080 0%, #ff6b35 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: inherit;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.8em;
}

/* Screenshot Section */
.screenshot-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff8f0 100%);
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 100px;
}

.screenshot-section h2 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: inherit;
}

.screenshot-section .section-subtitle {
    margin-bottom: 50px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.screenshot-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.screenshot-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.screenshot-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
    text-transform: inherit;
    font-weight: 600;
}

.screenshot-item p {
    color: #666;
    line-height: 1.7;
        font-size: 0.9em;
}

/* Process Steps */
.process-section {
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.process-step:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    color: #ff6b35;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0080 0%, #ff6b35 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-transform: inherit;
    font-weight: 700;
}

.process-step p {
    color: #666;
    line-height: 1.7;
        font-size: 0.8em;
}

/* Benefits Section with Icons */
.benefits-section-mp {
    margin-top: 100px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 100px;
}

.benefits-grid-mp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0080 0%, #ff6b35 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1.25em;
    text-transform: inherit;
        font-weight: 600;
}

.benefit-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.9em;
}

/* Full Width Image Section */
.full-width-image {
    margin-bottom: 100px;
    text-align: center;
}

.full-width-image h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: inherit;
}

.full-width-image .section-subtitle {
    margin-bottom: 40px;
}

.full-width-image img {
    width: 100%;
    max-width: 1100px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section-mp {
    background: linear-gradient(135deg, #ff0080 0%, #ff6b35 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-section-mp h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: inherit;
}

.cta-section-mp p {
    font-size: 1.05em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.stat-item-mp {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #ff0080;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-section-mp .hero-content,
    .section-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid-mp {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section-mp .hero-text h1 {
        font-size: 2em;
    }

    .section-title-mp {
        font-size: 1.8em;
    }

    .features-grid,
    .process-steps,
    .stats-section {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child):after {
        content: "↓";
        right: 50%;
        top: auto;
        bottom: -35px;
        transform: translateX(50%);
        font-size: 1.8em;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}.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;}