/* ─────────────────────────────────────────────
   mobile-app-development.css
   BNSPIRE Technologies – Mobile App Development Page
   ───────────────────────────────────────────── */

/* Banner */


.mad-highlight {
    color: #059669;
}

/* Platform Cards */
.mad-platform-card {
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mad-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.mad-platform-card--featured {
    background: linear-gradient(135deg, #059669, #047857) !important;
    color: #fff !important;
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.3);
}

.mad-platform-card--featured h4 {
    color: #fff;
}

.mad-platform-icon {
    width: 64px;
    height: 64px;
    background: #d1fae5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #059669;
    margin: 0 auto;
}

.mad-platform-icon--light {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mad-badge {
    display: inline-block;
    margin-top: 12px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Features section */
.mad-features-section {
    background: #f8fffe;
}

.mad-feature-icon {
    width: 40px;
    height: 40px;
    background: #d1fae5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #059669;
}

/* Phone mockup */
.mad-phone-mockup {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.mad-phone {
    width: 200px;
    background: #0f172a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25), 0 0 0 2px #1e293b;
}

.mad-phone-notch {
    width: 60px;
    height: 10px;
    background: #1e293b;
    border-radius: 20px;
    margin: 0 auto 10px;
}

.mad-phone-screen {
    background: #fff;
    border-radius: 24px;
    padding: 12px;
    min-height: 340px;
}

.mad-screen-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mad-screen-dot {
    width: 28px;
    height: 28px;
    background: #d1fae5;
    border-radius: 50%;
    display: inline-block;
}

.mad-screen-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1e293b;
}

.mad-screen-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mad-screen-card {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 10px;
    height: 80px;
}

.mad-screen-card--sm {
    height: 40px;
}

.mad-screen-row {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.mad-screen-row span {
    flex: 1;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: block;
}

/* Tech pills */
.mad-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.mad-tech-pill {
    background: #f0fdf4;
    border: 1px solid #a7f3d0;
    color: #047857;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
}

.mad-tech-pill:hover {
    background: #059669;
    color: #fff;
    border-color: #059669;
}

/* CTA */
.mad-cta-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-top: 1px solid #d1fae5;
}