.mm-hero {
    background: #fff;
    padding: 160px 0 80px;
    border-bottom: 1px solid var(--border);
}

.mm-hero-inner {
    max-width: 680px;
}

.mm-hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.mm-hero-title {
    font-size: 54px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.mm-hero-title span {
    color: var(--primary);
}

.mm-hero-desc {
    font-size: 18px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.mm-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mm-btn-primary {
    display: inline-block;
    padding: 13px 28px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mm-btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
}

.mm-btn-secondary {
    display: inline-block;
    padding: 13px 28px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mm-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mm-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mm-hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

.mm-hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 56px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-white);
}

.mm-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid var(--border);
}

.mm-stat:last-child {
    border-right: none;
}

.mm-stat i {
    font-size: 24px;
    color: var(--primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    flex-shrink: 0;
}

.mm-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
}

.mm-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;

border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.btn-outline-lg:hover {
    border-color: var(--primary);
    background: var(--bg-light);
    color: var(--primary);
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.bento-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--primary-light);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.bento-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.bento-item p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.bento-large {
    grid-column: span 2;
}

.bento-wide {
    grid-column: span 3;
}


.premium-ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.premium-ai-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease);
}

.premium-ai-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.pa-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.pa-content h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.pa-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.delivery-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.delivery-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.delivery-card i {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
}

.delivery-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}


.comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.comp-header {
    display: flex;
    background: var(--dark);
}

.comp-col-title {
    flex: 1;
    padding: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.comp-col-title:last-child {
    background: var(--primary);
}

.comp-row {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-cell {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.comp-cell.bad {
    color: var(--text-light);
}

.comp-cell.good {
    color: var(--dark);
    font-weight: 700;
    background: rgba(255, 77, 0, 0.03);
}

.comp-cell.bad i {
    color: #ccc;
}

.comp-cell.good i {
    color: var(--success);
}


.btn-outline-hero {
    background: var(--bg-white);
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-outline-hero:hover {
    background: var(--bg-light);
    color: var(--primary);
    border-color: var(--primary);
}

.bento-item-horizontal {
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.bento-item-horizontal > i {
    margin: 0;
    flex-shrink: 0;
}

.section-bordered {
    border-top: 1px solid var(--border);
}

.section-header-wide {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title-lg {
    font-size: 40px;
    color: var(--dark);
}

.section-intro-lg {
    font-size: 18px;
    color: var(--text);
}

.delivery-card p {
    font-size: 15px;
    color: var(--text);
}

.delivery-card:nth-child(2) i {
    color: var(--primary);
}

.form-check {
    margin-bottom: 8px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}




.delivery-card:nth-child(1) {
    background: #F4F8FF;
    border-top-color: #3B82F6;
    border-color: #DBEAFE;
}

.delivery-card:nth-child(2) {
    background: #FFF4F4;
    border-top-color: #EF4444;
    border-color: #FEE2E2;
}

.delivery-card:nth-child(3) {
    background: #F0FDF4;
    border-top-color: #10B981;
    border-color: #D1FAE5;
}

.delivery-card:nth-child(4) {
    background: #FDF4FF;
    border-top-color: #D946EF;
    border-color: #FAE8FF;
}

.delivery-card:nth-child(1) i {
    color: #3B82F6 !important;
}

.delivery-card:nth-child(2) i {
    color: #EF4444 !important;
}

.delivery-card:nth-child(3) i {
    color: #10B981 !important;
}

.delivery-card:nth-child(4) i {
    color: #D946EF !important;
}


.bento-item:nth-child(1) {
    background: #FCFAFF;
    border-color: #E9D5FF;
}

.bento-item:nth-child(2) {
    background: #F0FDFA;
    border-color: #CCFBF1;
}

.bento-item:nth-child(3) {
    background: #FFFAF0;
    border-color: #FEF08A;
}

.bento-item:nth-child(4) {
    background: #FEF2F2;
    border-color: #FECACA;
}

.bento-item:nth-child(1) i {
    background: #F3E8FF;
    color: #9333EA;
}

.bento-item:nth-child(2) i {
    background: #CCFBF1;
    color: #0D9488;
}

.bento-item:nth-child(3) i {
    background: #FEF08A;
    color: #CA8A04;
}

.bento-item:nth-child(4) i {
    background: #FECACA;
    color: #DC2626;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }

    .hero-text-col {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-headline.text-start,
    .hero-subheadline.text-start {
        text-align: center !important;
    }

    .hero-ctas.justify-content-start {
        justify-content: center !important;
    }

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

    .bento-large {
        grid-column: span 2;
    }

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

@media (max-width: 768px) {

    .bento-grid,
    .ai-cards,
    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-lg,
    .btn-outline-lg {
        width: 100%;
        justify-content: center;
    }

    .comp-header {
        display: none;
    }

    .comp-row {
        flex-direction: column;
        background: var(--bg-light);
        margin-bottom: 16px;
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
    }

    .comp-cell {
        padding: 16px;
    }

    .comp-cell.bad::before {
        content: 'Traditional Way:';
        font-weight: bold;
        display: block;
        margin-bottom: 4px;
        color: var(--dark);
        opacity: 0.6;
    }

    .comp-cell.good::before {
        content: 'The OMNES AI Way:';
        font-weight: bold;
        display: block;
        margin-bottom: 4px;
        color: var(--primary);
    }
}


@media (max-width: 991px) {
    .mm-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .mm-hero .row {
        flex-direction: column-reverse;
    }

    .mm-hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .mm-hero-actions {
        justify-content: center;
    }

    .mm-hero-image img {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .mm-hero-stats {
        margin-top: 40px;
    }

    .mm-stat {
        padding: 24px 16px;
    }
}

@media (max-width: 768px) {
    .mm-hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .mm-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 16px;
    }

    .mm-hero-actions .btn-primary-sm {
        width: auto;
    }

    .mm-stat {
        flex-direction: column;
        text-align: center;
        padding: 16px 8px;
        gap: 8px;
    }

    .mm-stat i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .mm-stat-num {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .mm-stat-label {
        font-size: 12px;
    }

    .premium-ai-grid {
        grid-template-columns: 1fr;
    }
}
