.elementor-2249 .elementor-element.elementor-element-e69d925{--display:flex;}/* Start custom CSS for container, class: .elementor-element-e69d925 *//* =================================================================== */
/* TOOL REVIEW PAGE - CUSTOM CSS */
/* For Elementor Advanced > Custom CSS */
/* =================================================================== */

/* ===== ANIMATIONS ===== */
@keyframes mp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* ===== HERO SECTION ===== */
.mp-hero--tool {
    background: #FFFFFF;
    padding: var(--mp-space-lg) 0 var(--mp-space-3xl) 0;
    min-height: auto;
}

/* Breadcrumb */
.mp-breadcrumb {
    margin-bottom: var(--mp-space-xl);
}

.mp-breadcrumb__list {
    display: flex;
    align-items: center;
    font-size: var(--mp-text-sm);
    list-style: none;
    padding: 0;
    margin: 0;
    gap: var(--mp-space-xs);
    color: var(--mp-text-secondary);
    flex-wrap: wrap;
}

.mp-breadcrumb__link {
    color: var(--mp-text-secondary);
    text-decoration: none;
    transition: color var(--mp-transition-fast);
}

.mp-breadcrumb__link:hover {
    color: var(--mp-primary);
}

.mp-breadcrumb__separator {
    color: var(--mp-text-muted);
}

.mp-breadcrumb__current {
    color: var(--mp-text-primary);
    font-weight: 600;
}

/* Hero Grid */
.mp-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--mp-space-2xl);
    align-items: flex-start;
}

/* Hero Left Content */
.mp-hero__left {
    display: flex;
    flex-direction: column;
    gap: var(--mp-space-md);
}

/* Hero Header */
.mp-hero__header {
    display: flex;
    align-items: center;
    gap: var(--mp-space-md);
    margin-bottom: var(--mp-space-lg);
}

.mp-hero__logo {
    width: 60px;
    height: 60px;
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mp-hero__title-group {
    flex: 1;
}

.mp-hero__title {
    font-size: var(--mp-text-3xl);
    font-weight: 800;
    color: var(--mp-text-primary);
    margin: 0 0 var(--mp-space-xs) 0;
    line-height: 1.2;
}

/* Rating */
.mp-hero__rating {
    display: flex;
    align-items: center;
    gap: var(--mp-space-xs);
}

.mp-hero__stars {
    display: flex;
    gap: 2px;
    color: #F59E0B;
}

.mp-star {
    font-size: 16px;
}

.mp-star--half {
    position: relative;
}

.mp-star--half::after {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #E5E7EB;
}

.mp-hero__rating-text {
    color: var(--mp-text-secondary);
    font-size: var(--mp-text-sm);
}

/* Verified Badge */
.mp-hero__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: #DBEAFE;
    color: #1E40AF;
    border-radius: var(--mp-radius-full);
    font-size: var(--mp-text-sm);
    font-weight: 600;
    white-space: nowrap;
    margin-left: auto;
}

.mp-hero__verified svg {
    width: 14px;
    height: 14px;
}

/* Description */
.mp-hero__description {
    font-size: var(--mp-text-lg);
    line-height: 1.6;
    color: var(--mp-text-secondary);
    max-width: 600px;
    margin: 0;
}

/* Tool Info */
.mp-hero__info {
    display: flex;
    flex-direction: column;
    gap: var(--mp-space-sm);
    padding: var(--mp-space-md) 0;
    border-top: 1px solid var(--mp-border);
    border-bottom: 1px solid var(--mp-border);
}

.mp-hero__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--mp-space-sm);
}

.mp-hero__info-label {
    font-weight: 600;
    color: var(--mp-text-primary);
    min-width: 140px;
}

.mp-hero__info-value {
    color: var(--mp-text-secondary);
}

/* Categories */
.mp-hero__categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--mp-space-xs);
}

.mp-hero__category {
    color: var(--mp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--mp-transition-fast);
}

.mp-hero__category:hover {
    color: var(--mp-primary-dark);
    text-decoration: underline;
}

.mp-hero__category:not(:last-child)::after {
    content: ',';
    color: var(--mp-text-secondary);
    margin-right: 4px;
}

/* Action Buttons */
.mp-hero__actions {
    display: flex;
    gap: var(--mp-space-sm);
    flex-wrap: wrap;
    margin-top: var(--mp-space-lg);
}

.mp-btn--icon {
    display: inline-flex;
    align-items: center;
    gap: var(--mp-space-xs);
}

.mp-btn--icon svg {
    width: 16px;
    height: 16px;
}

/* Updated Time */
.mp-hero__updated {
    display: flex;
    align-items: center;
    gap: var(--mp-space-xs);
    font-size: var(--mp-text-sm);
    color: var(--mp-text-muted);
}

.mp-hero__updated svg {
    width: 14px;
    height: 14px;
}

/* Hero Right - Screenshot */
.mp-hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mp-hero__screenshot {
    width: 100%;
    max-width: 600px;
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--mp-border);
}

.mp-hero__screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .mp-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--mp-space-3xl);
        align-items: center;
    }
    
    .mp-hero__left {
        max-width: 600px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .mp-hero__grid {
        gap: var(--mp-space-xl);
    }
    
    .mp-hero__header {
        margin-bottom: var(--mp-space-md);
    }
    
    .mp-hero__logo {
        width: 50px;
        height: 50px;
    }
    
    .mp-hero__title {
        font-size: var(--mp-text-2xl);
    }
    
    .mp-hero__verified {
        font-size: var(--mp-text-xs);
        padding: 4px 10px;
    }
    
    .mp-hero__description {
        font-size: var(--mp-text-base);
        margin-bottom: var(--mp-space-md);
    }
    
    .mp-hero__info {
        gap: var(--mp-space-sm);
        padding: var(--mp-space-sm) 0;
    }
    
    .mp-hero__info-item {
        flex-direction: column;
        gap: 4px;
    }
    
    .mp-hero__info-label {
        min-width: auto;
        font-size: var(--mp-text-sm);
    }
    
    .mp-hero__info-value,
    .mp-hero__categories {
        font-size: var(--mp-text-sm);
    }
    
    .mp-hero__actions {
        margin-top: var(--mp-space-md);
    }
    
    .mp-hero__actions .mp-btn {
        flex: 1;
        justify-content: center;
        font-size: var(--mp-text-sm);
        padding: 0.75rem 1.25rem;
    }
    
    .mp-hero__updated {
        font-size: var(--mp-text-xs);
        margin-top: var(--mp-space-md);
    }
    
    .mp-hero__screenshot {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .mp-hero--tool {
        padding: var(--mp-space-sm) 0 var(--mp-space-xl) 0;
    }
    
    .mp-breadcrumb {
        margin-bottom: var(--mp-space-md);
    }
    
    .mp-breadcrumb__list {
        font-size: 11px;
        gap: 4px;
    }
    
    /* Hide subcategory on very small screens to prevent wrapping */
    /* Shows: Home > AI Tools > vidIQ */
    .mp-breadcrumb__item:nth-child(5),
    .mp-breadcrumb__separator:nth-child(6) {
        display: none;
    }
    
    .mp-hero__header {
        gap: var(--mp-space-sm);
        margin-bottom: var(--mp-space-sm);
        flex-wrap: wrap;
    }
    
    .mp-hero__logo {
        width: 40px;
        height: 40px;
    }
    
    .mp-hero__title-group {
        flex: 0 1 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mp-hero__title {
        font-size: var(--mp-text-xl);
    }
    
    .mp-hero__stars {
        font-size: 14px;
    }
    
    .mp-hero__rating-text {
        font-size: var(--mp-text-xs);
    }
    
    .mp-hero__verified {
        margin-left: 0;
        margin-top: 0;
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .mp-hero__verified svg {
        width: 12px;
        height: 12px;
    }
    
    .mp-hero__description {
        font-size: var(--mp-text-sm);
        line-height: 1.5;
        margin-bottom: var(--mp-space-sm);
    }
    
    .mp-hero__info {
        padding: var(--mp-space-xs) 0;
        gap: var(--mp-space-xs);
    }
    
    .mp-hero__info-label {
        font-size: var(--mp-text-xs);
        font-weight: 600;
        color: var(--mp-text-primary);
    }
    
    .mp-hero__info-value,
    .mp-hero__category {
        font-size: var(--mp-text-xs);
    }
    
    .mp-hero__actions {
        width: 100%;
        margin-top: var(--mp-space-sm);
        gap: var(--mp-space-xs);
    }
    
    .mp-hero__actions .mp-btn {
        flex: 1;
        font-size: var(--mp-text-xs);
        padding: 0.625rem 1rem;
    }
    
    .mp-hero__actions .mp-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .mp-hero__updated {
        font-size: 11px;
        margin-top: var(--mp-space-sm);
    }
    
    .mp-hero__updated svg {
        width: 12px;
        height: 12px;
    }
}

/* ===== MAIN CONTENT ===== */
.mp-main {
    padding: var(--mp-space-3xl) 0;
    background: var(--mp-bg-primary);
}

.mp-article {
    max-width: 800px;
}

/* Features Grid */
.mp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--mp-space-md);
}

.mp-feature {
    display: flex;
    gap: var(--mp-space-md);
    padding: var(--mp-space-md);
    background: var(--mp-bg-secondary);
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-border);
    transition: transform var(--mp-transition-fast);
}

.mp-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--mp-shadow-md);
}

.mp-feature__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.mp-feature__content h3 {
    margin: 0 0 var(--mp-space-xs) 0;
    font-size: var(--mp-text-lg);
    font-weight: 600;
}

.mp-feature__content p {
    margin: 0;
    font-size: var(--mp-text-sm);
    color: var(--mp-text-secondary);
}

/* Pricing Grid */
.mp-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--mp-space-md);
}

.mp-pricing__card {
    background: var(--mp-bg-secondary);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-xl);
    padding: var(--mp-space-lg);
    position: relative;
}

.mp-pricing__card--featured {
    background: linear-gradient(135deg, #EEF2FF, #F0F4FF);
    border: 2px solid var(--mp-primary);
}

.mp-pricing__badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--mp-primary);
    color: white;
    padding: 4px 16px;
    border-radius: var(--mp-radius-full);
    font-size: var(--mp-text-sm);
    font-weight: 600;
}

.mp-pricing__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--mp-space-md);
    flex-wrap: wrap;
    gap: var(--mp-space-md);
}

.mp-pricing__header h3 {
    font-size: var(--mp-text-2xl);
    margin: 0;
}

.mp-pricing__price {
    font-size: var(--mp-text-3xl);
    font-weight: 700;
    color: var(--mp-primary);
}

.mp-pricing__price span {
    font-size: var(--mp-text-base);
    font-weight: 400;
}

.mp-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--mp-space-sm);
}

.mp-pricing__features li {
    display: flex;
    align-items: center;
    gap: var(--mp-space-sm);
    color: var(--mp-text-primary);
}

.mp-pricing__features svg {
    flex-shrink: 0;
    color: var(--mp-accent);
}

/* Pros and Cons */
.mp-proscons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--mp-space-md);
}

.mp-proscons__card {
    border-radius: var(--mp-radius-xl);
    padding: var(--mp-space-lg);
}

.mp-proscons__card--pros {
    background: #F0FDF4;
    border: 1px solid #86EFAC;
}

.mp-proscons__card--cons {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
}

.mp-proscons__header {
    display: flex;
    align-items: center;
    gap: var(--mp-space-sm);
    margin-bottom: var(--mp-space-md);
}

.mp-proscons__icon {
    font-size: 24px;
}

.mp-proscons__header h3 {
    font-size: var(--mp-text-xl);
    margin: 0;
}

.mp-proscons__card--pros h3 {
    color: #059669;
}

.mp-proscons__card--cons h3 {
    color: var(--mp-danger);
}

.mp-proscons__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--mp-space-md);
}

.mp-proscons__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--mp-space-sm);
}

.mp-proscons__bullet {
    font-weight: bold;
    flex-shrink: 0;
}

.mp-proscons__card--pros .mp-proscons__bullet {
    color: #059669;
}

.mp-proscons__card--cons .mp-proscons__bullet {
    color: var(--mp-danger);
}

/* FAQ */
.mp-faq {
    display: grid;
    gap: var(--mp-space-md);
}

.mp-faq__item {
    background: white;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
}

.mp-faq__question {
    padding: var(--mp-space-md);
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.mp-faq__question h3 {
    font-size: var(--mp-text-lg);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.mp-faq__question svg {
    transition: transform var(--mp-transition-base);
    color: var(--mp-text-secondary);
}

.mp-faq__item[open] .mp-faq__question svg {
    transform: rotate(180deg);
}

.mp-faq__answer {
    padding: 0 var(--mp-space-md) var(--mp-space-md) var(--mp-space-md);
    border-top: 1px solid var(--mp-border-light);
}

.mp-faq__answer p {
    margin: var(--mp-space-md) 0 0 0;
    color: var(--mp-text-primary);
}

/* Verdict Section */
.mp-verdict {
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    border: 2px solid var(--mp-primary);
    border-radius: var(--mp-radius-xl);
    padding: var(--mp-space-2xl);
    text-align: center;
    margin-bottom: var(--mp-space-3xl);
}

.mp-verdict h2 {
    color: var(--mp-text-primary);
    margin-bottom: var(--mp-space-md);
    font-size: var(--mp-text-3xl);
}

.mp-verdict__status {
    background: var(--mp-accent);
    color: white;
    padding: var(--mp-space-xs) var(--mp-space-md);
    border-radius: var(--mp-radius-full);
    font-weight: 600;
    margin-bottom: var(--mp-space-md);
    display: inline-block;
}

.mp-verdict__text {
    font-size: var(--mp-text-lg);
    color: var(--mp-text-primary);
    margin-bottom: var(--mp-space-lg);
    line-height: 1.6;
}

.mp-verdict__score {
    font-size: var(--mp-text-5xl);
    font-weight: 700;
    color: var(--mp-primary);
    margin-bottom: var(--mp-space-xs);
}

.mp-verdict__meta {
    color: var(--mp-text-secondary);
    margin: 0;
}

.mp-verdict-badge {
    display: inline-block;
    background: #D1FAE5;
    color: #065F46;
    padding: var(--mp-space-xs) var(--mp-space-md);
    border-radius: var(--mp-radius-full);
    font-weight: 600;
    margin: var(--mp-space-md) 0;
}

/* ===== SIDEBAR ===== */
.mp-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.mp-sidebar__section {
    margin-bottom: var(--mp-space-md);
}

.mp-sidebar__cards {
    display: grid;
    gap: var(--mp-space-md);
}

/* CTA Card */
.mp-cta-card {
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-secondary));
    color: white;
    text-align: center;
    border-radius: var(--mp-radius-xl);
    padding: var(--mp-space-lg);
    margin-bottom: var(--mp-space-md);
}

.mp-cta-card h3 {
    color: white;
    margin-bottom: var(--mp-space-md);
    font-size: var(--mp-text-2xl);
}

.mp-cta-card__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--mp-space-xs);
    margin-bottom: var(--mp-space-md);
}

.mp-cta-card__score {
    font-size: var(--mp-text-2xl);
    font-weight: 700;
}

.mp-cta-card__stars {
    color: #FCD34D;
}

.mp-cta-card__features {
    margin-bottom: var(--mp-space-md);
    list-style: none;
    padding: 0;
}

.mp-cta-card__features li {
    padding: 4px 0;
    font-size: var(--mp-text-sm);
    color: rgba(255,255,255,0.9);
}

/* Specs Card */
.mp-specs-card {
    background: var(--mp-bg-secondary);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-lg);
    padding: var(--mp-space-md);
    margin-bottom: var(--mp-space-md);
}

.mp-specs-card h4 {
    color: var(--mp-text-primary);
    margin-bottom: var(--mp-space-md);
    font-size: var(--mp-text-lg);
}

.mp-specs {
    display: flex;
    flex-direction: column;
    gap: var(--mp-space-sm);
    margin: 0;
}

.mp-specs__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--mp-space-xs) 0;
    border-bottom: 1px solid var(--mp-border);
}

.mp-specs__item:last-child {
    border-bottom: none;
}

.mp-specs__item dt {
    font-weight: 500;
    color: var(--mp-text-secondary);
    font-size: var(--mp-text-sm);
}

.mp-specs__item dd {
    font-weight: 600;
    color: var(--mp-text-primary);
    font-size: var(--mp-text-sm);
    margin: 0;
}

.mp-specs__item a {
    color: var(--mp-primary);
    text-decoration: none;
}

.mp-specs__item a:hover {
    text-decoration: underline;
}

/* Trust Card */
.mp-trust-card {
    background: var(--mp-bg-secondary);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-lg);
    padding: var(--mp-space-md);
}

.mp-trust-card h4 {
    color: var(--mp-text-primary);
    margin-bottom: var(--mp-space-md);
    font-size: var(--mp-text-lg);
}

.mp-trust-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--mp-space-sm);
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-trust-card__list li {
    display: flex;
    align-items: center;
    gap: var(--mp-space-sm);
    padding: var(--mp-space-xs) 0;
}

.mp-trust-card__icon {
    font-size: 16px;
}

/* ===== CTA SECTION ===== */
.mp-cta-section {
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-secondary));
    padding: var(--mp-space-3xl) var(--mp-space-md);
    text-align: center;
}

.mp-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--mp-space-md);
    color: white;
}

.mp-cta-section > p {
    font-size: var(--mp-text-xl);
    margin-bottom: var(--mp-space-2xl);
    color: rgba(255,255,255,0.9);
}

.mp-cta-section__buttons {
    display: flex;
    gap: var(--mp-space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.mp-cta-section__note {
    font-size: var(--mp-text-sm);
    margin-top: var(--mp-space-md);
    color: rgba(255,255,255,0.7);
}

/* ===== RELATED SECTION ===== */
.mp-related {
    background: var(--mp-bg-secondary);
    padding: var(--mp-space-3xl) 0;
}

.mp-related__header {
    text-align: center;
    margin-bottom: var(--mp-space-xl);
}

.mp-related__title {
    font-size: var(--mp-text-4xl);
    font-weight: 800;
    color: var(--mp-text-primary);
    margin-bottom: var(--mp-space-md);
}

.mp-related__subtitle {
    font-size: var(--mp-text-xl);
    color: var(--mp-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Grid */
.mp-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--mp-space-md);
}

.mp-tool-card {
    background: white;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-xl);
    padding: var(--mp-space-md);
    text-decoration: none;
    color: inherit;
    transition: all var(--mp-transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mp-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--mp-primary), var(--mp-secondary));
    transform: scaleX(0);
    transition: transform var(--mp-transition-base);
}

.mp-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-lg);
}

.mp-tool-card:hover::before {
    transform: scaleX(1);
}

.mp-tool-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--mp-space-md);
}

.mp-tool-card__logo {
    width: 48px;
    height: 48px;
    background: var(--mp-bg-secondary);
    border-radius: var(--mp-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-tool-card__logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.mp-tool-card__badges {
    display: flex;
    gap: var(--mp-space-xs);
}

.mp-tool-card__name {
    font-size: var(--mp-text-xl);
    font-weight: 700;
    margin-bottom: var(--mp-space-xs);
    color: var(--mp-text-primary);
}

.mp-tool-card__description {
    color: var(--mp-text-secondary);
    font-size: var(--mp-text-sm);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: var(--mp-space-md);
}

.mp-tool-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.mp-tool-card__category {
    font-size: var(--mp-text-xs);
    font-weight: 600;
    color: var(--mp-primary);
}

.mp-tool-card__arrow {
    font-size: 18px;
    color: var(--mp-primary);
    transition: transform var(--mp-transition-base);
}

.mp-tool-card:hover .mp-tool-card__arrow {
    transform: translateX(4px);
}

/* ===== MOBILE SPECIFIC ===== */
.mp-mobile-cards {
    display: none;
}

@media (max-width: 1023px) {
    .mp-mobile-cards {
        display: grid;
        gap: var(--mp-space-md);
        margin-top: var(--mp-space-2xl);
    }
    
    .mp-sidebar--desktop {
        display: none;
    }
    
    .mp-layout {
        grid-template-columns: 1fr;
    }
}

.mp-section--mobile-only {
    display: block;
}

@media (min-width: 1024px) {
    .mp-section--mobile-only {
        display: none;
    }
    
    .mp-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--mp-space-3xl);
    }
    
    .mp-hero__left {
        max-width: 600px;
    }
    
    .mp-proscons {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .mp-hero--tool {
        min-height: 100vh;
        padding: var(--mp-space-3xl) 0 var(--mp-space-2xl) 0;
    }
    
    .mp-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .mp-hero__description {
        font-size: 1.0625rem;
        padding: 0 var(--mp-space-md);
    }
    
    .mp-hero__stats {
        flex-wrap: wrap;
        gap: var(--mp-space-md);
        justify-content: center;
    }
    
    .mp-hero__stat-divider {
        display: none;
    }
    
    .mp-hero__stat-value {
        font-size: 2rem;
    }
    
    .mp-hero__ctas {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .mp-section__title {
        font-size: 1.75rem;
    }
    
    .mp-pricing {
        grid-template-columns: 1fr;
    }
    
    .mp-pricing__header {
        flex-direction: column;
        text-align: center;
    }
    
    .mp-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .mp-cta-section h2 {
        font-size: 2rem;
    }
    
    .mp-cta-section > p {
        font-size: var(--mp-text-lg);
    }
    
    .mp-cta-section__buttons {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .mp-breadcrumb__item--desktop,
    .mp-breadcrumb__separator--desktop {
        display: none;
    }
    
    .mp-breadcrumb__text {
        display: none;
    }
    
    .mp-breadcrumb__link--home {
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .mp-hero--tool {
        padding: var(--mp-space-2xl) 0;
    }
    
    .mp-hero__title {
        font-size: 1.875rem;
    }
    
    .mp-hero__stat-value {
        font-size: 1.75rem;
    }
    
    .mp-section__title {
        font-size: 1.5rem;
    }
    
    .mp-breadcrumb__link,
    .mp-breadcrumb__current {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .mp-related__title {
        font-size: 1.75rem;
    }
}/* End custom CSS */