/* ══════════════════════════════════════════
   /mobile-wholesaler-software landing page
══════════════════════════════════════════ */

/* ─── HERO ─── */
.mwh-hero {
    background: #030309;
    padding: 120px 24px 90px;
    position: relative;
    overflow: hidden;
}
.mwh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 450px at 10% 50%, rgba(22,163,74,0.1) 0%, transparent 65%),
        radial-gradient(ellipse 600px 350px at 90% 20%, rgba(74,222,128,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.mwh-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.mwh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22,163,74,0.1);
    border: 1px solid rgba(22,163,74,0.28);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 11.5px;
    font-weight: 700;
    color: #4ADE80;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.mwh-badge .mwh-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22C55E;
    animation: mwhPulse 1.6s ease-in-out infinite;
}
@keyframes mwhPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
}
.mwh-h1 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.16;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}
.mwh-h1 .mwh-grad {
    background: linear-gradient(130deg, #22C55E 0%, #4ADE80 50%, #16A34A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mwh-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 520px;
}
.mwh-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}
.mwh-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.mwh-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #4B5563;
}
.mwh-trust-item i { color: #22C55E; }

/* ─── HERO MOCKUP ─── */
.mwh-mock-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.mwh-mock {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(160deg, #0c0c1a, #0e0e22);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 36px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(22,163,74,0.08);
}
.mwh-mock-bar {
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mwh-mock-dots { display: flex; gap: 6px; }
.mwh-mock-dot { width: 9px; height: 9px; border-radius: 50%; }
.mwh-mock-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.4px;
}
.mwh-mock-live {
    font-size: 9px;
    font-weight: 700;
    color: #22C55E;
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.25);
    border-radius: 6px;
    padding: 3px 9px;
}
.mwh-mock-body { padding: 16px; }
.mwh-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.mwh-ms {
    padding: 12px 8px;
    background: rgba(22,163,74,0.06);
    border: 1px solid rgba(22,163,74,0.14);
    border-radius: 10px;
    text-align: center;
}
.mwh-ms-val {
    font-size: 16px;
    font-weight: 900;
    color: #22C55E;
    margin-bottom: 3px;
}
.mwh-ms-lbl {
    font-size: 9px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mwh-mock-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
    margin-top: 4px;
}
.mwh-mock-section-title {
    font-size: 10px;
    font-weight: 700;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mwh-mock-add {
    font-size: 9px;
    font-weight: 700;
    color: #22C55E;
    background: rgba(22,163,74,0.1);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 5px;
    padding: 2px 8px;
}
.mwh-prod-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 9px;
    margin-bottom: 6px;
}
.mwh-prod-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.mwh-prod-info { flex: 1; min-width: 0; }
.mwh-prod-name {
    font-size: 11px;
    font-weight: 700;
    color: #E5E7EB;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mwh-prod-cat { font-size: 9px; color: #4B5563; }
.mwh-prod-stock {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}
.mwh-stock-ok   { background: rgba(22,163,74,0.12);  color: #22C55E; border: 1px solid rgba(22,163,74,0.25); }
.mwh-stock-low  { background: rgba(245,158,11,0.12); color: #F59E0B; border: 1px solid rgba(245,158,11,0.25); }
.mwh-stock-out  { background: rgba(239,68,68,0.1);   color: #EF4444; border: 1px solid rgba(239,68,68,0.2);  }

/* Floating chips */
.mwh-chip {
    position: absolute;
    background: rgba(10,10,22,0.92);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(12px);
    white-space: nowrap;
    animation: mwhFloat 4s ease-in-out infinite;
    z-index: 2;
}
.mwh-chip-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.mwh-chip-sub { font-size: 10px; color: #6B7280; margin-top: 1px; }
.mwh-chip-1 { top: -16px; right: -12px; animation-delay: 0s; }
.mwh-chip-2 { bottom: 55px; left: -16px; animation-delay: 2s; }
@keyframes mwhFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ─── PAIN SECTION ─── */
.mwh-pain {
    background: #000;
    padding: 88px 0;
}
.mwh-pain-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.mwh-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 13px;
    margin: 48px 0;
}
.mwh-pain-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(239,68,68,0.04);
    border: 1px solid rgba(239,68,68,0.11);
    border-radius: 12px;
    transition: border-color 0.2s;
}
.mwh-pain-card:hover { border-color: rgba(239,68,68,0.22); }
.mwh-pain-x { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.mwh-pain-title {
    font-size: 14px;
    font-weight: 700;
    color: #D1D5DB;
    margin-bottom: 4px;
}
.mwh-pain-sub { font-size: 12px; color: #6B7280; line-height: 1.55; }
.mwh-solution-box {
    max-width: 740px;
    margin: 0 auto;
    padding: 38px 44px;
    background: rgba(22,163,74,0.05);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 18px;
    text-align: center;
}
.mwh-solution-box p {
    font-size: 1.05rem;
    color: #D1D5DB;
    line-height: 1.8;
    margin: 0;
}
.mwh-kw-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}
.mwh-kw-tag {
    padding: 5px 14px;
    background: rgba(22,163,74,0.07);
    border: 1px solid rgba(22,163,74,0.18);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #22C55E;
}

/* ─── FEATURES ─── */
.mwh-feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
    margin-top: 52px;
}
.mwh-feat-card {
    padding: 28px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.mwh-feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c, transparent);
    pointer-events: none;
}
.mwh-feat-card:hover {
    border-color: rgba(22,163,74,0.28);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.mwh-feat-icon {
    width: 50px; height: 50px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.mwh-feat-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 9px;
}
.mwh-feat-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 16px;
}
.mwh-feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.mwh-pill-free {
    background: rgba(22,163,74,0.1);
    color: #22C55E;
    border: 1px solid rgba(22,163,74,0.25);
}

/* ─── BUILT FOR ─── */
.mwh-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 50px;
}
.mwh-for-card {
    padding: 30px 22px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    text-align: center;
    transition: all 0.25s;
}
.mwh-for-card:hover {
    border-color: rgba(22,163,74,0.3);
    background: rgba(22,163,74,0.04);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}
.mwh-for-icon {
    width: 58px; height: 58px;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}
.mwh-for-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 7px;
}
.mwh-for-desc { font-size: 12px; color: #6B7280; line-height: 1.55; }

/* ─── INVENTORY CATEGORIES ─── */
.mwh-inv-section {
    background: #000;
    padding: 88px 0;
}
.mwh-inv-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 52px;
}
.mwh-inv-col {
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}
.mwh-inv-col-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mwh-inv-col-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.mwh-inv-col-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}
.mwh-inv-col-sub {
    font-size: 12px;
    color: #6B7280;
    margin-top: 2px;
}
.mwh-inv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mwh-inv-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    background: rgba(22,163,74,0.06);
    border: 1px solid rgba(22,163,74,0.14);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #A7F3D0;
    transition: all 0.2s;
}
.mwh-inv-tag:hover {
    background: rgba(22,163,74,0.12);
    border-color: rgba(22,163,74,0.28);
}
.mwh-inv-tag i { font-size: 11px; color: #22C55E; }

/* ─── SMART INVENTORY MANAGEMENT ─── */
.mwh-smart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 52px;
}
.mwh-smart-card {
    padding: 26px 22px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    transition: all 0.25s;
    text-align: center;
}
.mwh-smart-card:hover {
    border-color: rgba(22,163,74,0.28);
    background: rgba(22,163,74,0.04);
    transform: translateY(-3px);
}
.mwh-smart-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
    color: #22C55E;
}
.mwh-smart-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 7px;
}
.mwh-smart-desc { font-size: 12px; color: #6B7280; line-height: 1.6; }

/* ─── WHY SECTION ─── */
.mwh-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.mwh-why-list { display: flex; flex-direction: column; gap: 10px; }
.mwh-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: all 0.2s;
}
.mwh-why-item:hover {
    border-color: rgba(22,163,74,0.25);
    background: rgba(22,163,74,0.04);
}
.mwh-why-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(22,163,74,0.12);
    color: #22C55E;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}
.mwh-why-text { font-size: 14px; font-weight: 600; color: #D1D5DB; line-height: 1.5; }

/* ─── COMPARISON TABLE ─── */
.mwh-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}
.mwh-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}
.mwh-table th {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mwh-table th:first-child { color: #6B7280; background: rgba(255,255,255,0.02); }
.mwh-table th.mwh-col-manual { color: #EF4444; background: rgba(239,68,68,0.05); text-align: center; }
.mwh-table th.mwh-col-srd   { color: #22C55E; background: rgba(22,163,74,0.08);  text-align: center; }
.mwh-table td {
    padding: 14px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mwh-table td:first-child { color: #D1D5DB; font-weight: 600; background: rgba(255,255,255,0.01); }
.mwh-table td.mwh-col-manual { text-align: center; font-size: 18px; background: rgba(239,68,68,0.02); }
.mwh-table td.mwh-col-srd   { text-align: center; font-size: 18px; background: rgba(22,163,74,0.03); }
.mwh-table tr:last-child td { border-bottom: none; }
.mwh-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── FAQ ─── */
.mwh-faq-list {
    max-width: 820px;
    margin: 48px auto 0;
}
.mwh-faq-item {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.mwh-faq-item.open { border-color: rgba(22,163,74,0.3); }
.mwh-faq-q {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    gap: 16px;
    transition: background 0.2s;
}
.mwh-faq-q:hover { background: rgba(22,163,74,0.05); }
.mwh-faq-q i { color: #22C55E; font-size: 16px; flex-shrink: 0; transition: transform 0.3s; }
.mwh-faq-item.open .mwh-faq-q i { transform: rotate(45deg); }
.mwh-faq-a {
    display: none;
    padding: 14px 22px 20px;
    font-size: 13.5px;
    color: #8B92AA;
    line-height: 1.78;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.mwh-faq-item.open .mwh-faq-a { display: block; }

/* ─── FINAL CTA ─── */
.mwh-final-cta {
    background: #000;
    padding: 104px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mwh-final-cta::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.mwh-final-inner {
    max-width: 660px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .mwh-hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .mwh-mock-wrap { order: -1; }
    .mwh-chip { display: none; }
    .mwh-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mwh-inv-cols { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .mwh-hero { padding: 100px 24px 60px; }
    .mwh-pain-grid { grid-template-columns: 1fr; }
    .mwh-solution-box { padding: 26px 22px; }
    .mwh-for-grid { grid-template-columns: repeat(2, 1fr); }
    .mwh-smart-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .mwh-cta-row { flex-direction: column; }
    .mwh-for-grid { grid-template-columns: 1fr; }
    .mwh-smart-grid { grid-template-columns: 1fr; }
    .mwh-final-cta { padding: 72px 0; }
}
