/* =============================================
   M.A.H Technologie – Site CSS
   Charte : Orange #F77F00 | Vert #009A44
   Navy #0F1923 | Clair #F8F9FA
============================================= */

/* ----- Root Variables ----- */
:root {
    --mah-orange: #F77F00;
    --mah-orange-dark: #d96d00;
    --mah-green: #009A44;
    --mah-green-dark: #007a35;
    --mah-navy: #0F1923;
    --mah-navy-light: #1a2a38;
    --mah-light: #F8F9FA;
    --mah-text: #1E293B;
    --mah-text-secondary: #64748B;
    --mah-white: #ffffff;
    --font-title: 'Inter', 'Trebuchet MS', sans-serif;
    --font-body: 'Inter', Arial, sans-serif;
    --transition: 0.3s ease;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.14);
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--mah-text);
    background-color: var(--mah-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
}

/* ----- Utility Classes ----- */
.text-orange { color: var(--mah-orange) !important; }
.text-green  { color: var(--mah-green) !important; }
.text-navy   { color: var(--mah-navy) !important; }
.bg-orange   { background-color: var(--mah-orange) !important; }
.bg-green    { background-color: var(--mah-green) !important; }
.bg-navy     { background-color: var(--mah-navy) !important; }
.bg-light-mah { background-color: var(--mah-light) !important; }

/* ----- Buttons ----- */
.btn-orange {
    background-color: var(--mah-orange);
    border-color: var(--mah-orange);
    color: var(--mah-white);
    font-weight: 600;
    border-radius: 8px;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-orange:hover, .btn-orange:focus {
    background-color: var(--mah-orange-dark);
    border-color: var(--mah-orange-dark);
    color: var(--mah-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 127, 0, 0.35);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--mah-white);
    background: transparent;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
}
.btn-outline-white:hover, .btn-outline-white:focus {
    border-color: var(--mah-white);
    background: rgba(255,255,255,0.1);
    color: var(--mah-white);
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--mah-green);
    border-color: var(--mah-green);
    color: var(--mah-white);
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
}
.btn-green:hover, .btn-green:focus {
    background-color: var(--mah-green-dark);
    border-color: var(--mah-green-dark);
    color: var(--mah-white);
    transform: translateY(-2px);
}

/* ----- Navbar ----- */
.mah-navbar {
    background-color: var(--mah-navy);
    padding: 0.75rem 0;
    transition: box-shadow 0.3s;
    z-index: 1030;
}
.mah-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.mah-navbar .navbar-brand { text-decoration: none; }
.brand-name {
    font-family: 'Trebuchet MS', var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--mah-white);
    letter-spacing: -0.02em;
}
.brand-tech { color: var(--mah-orange); }

.mah-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.93rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 6px;
    transition: color var(--transition), background-color var(--transition);
}
.mah-navbar .nav-link:hover,
.mah-navbar .nav-link.active {
    color: var(--mah-orange) !important;
    background-color: rgba(247, 127, 0, 0.08);
}

.mah-dropdown {
    background-color: var(--mah-navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
}
.mah-dropdown .dropdown-item {
    color: rgba(255,255,255,0.82);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: background-color var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.mah-dropdown .dropdown-item:hover {
    background-color: rgba(247, 127, 0, 0.12);
    color: var(--mah-white);
}
.mah-dropdown .dropdown-header {
    color: var(--mah-text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem 0.25rem;
}
.mah-dropdown .dropdown-divider {
    border-color: rgba(255,255,255,0.08);
}

/* ----- Hero Section ----- */
.hero-section {
    min-height: 100vh;
    background-color: var(--mah-navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247,127,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,154,68,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(247,127,0,0.15);
    border: 1px solid rgba(247,127,0,0.3);
    color: var(--mah-orange);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--mah-white);
    margin-bottom: 1rem;
    line-height: 1.15;
}
.hero-title .highlight { color: var(--mah-orange); }
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 560px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Fade-in animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.2s; }
.fade-in-up.delay-2 { animation-delay: 0.4s; }
.fade-in-up.delay-3 { animation-delay: 0.6s; }
.fade-in-up.delay-4 { animation-delay: 0.8s; }

/* ----- Section Styles ----- */
.section-label {
    display: inline-block;
    color: var(--mah-orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--mah-text);
}
.section-title.light { color: var(--mah-white); }
.section-subtitle {
    color: var(--mah-text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
}
.section-subtitle.light { color: rgba(255,255,255,0.65); }

/* ----- Pillar Cards ----- */
.pillar-card {
    background: var(--mah-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(247,127,0,0.2);
    color: inherit;
}
.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}
.pillar-icon.orange { background: rgba(247,127,0,0.1); color: var(--mah-orange); }
.pillar-icon.green  { background: rgba(0,154,68,0.1); color: var(--mah-green); }
.pillar-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.pillar-card p  { font-size: 0.92rem; color: var(--mah-text-secondary); margin-bottom: 1rem; }
.pillar-link {
    color: var(--mah-orange);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}
.pillar-card:hover .pillar-link { gap: 8px; }

/* ----- Product Cards ----- */
.product-card {
    background: var(--mah-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card-header {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, var(--mah-navy) 0%, var(--mah-navy-light) 100%);
    color: var(--mah-white);
}
.product-badge {
    display: inline-block;
    background: rgba(0,154,68,0.15);
    border: 1px solid rgba(0,154,68,0.3);
    color: var(--mah-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}
.product-card-body { padding: 1.75rem 2rem; }
.product-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
}
.product-feature i { color: var(--mah-green); }

/* ----- Why MAH Section ----- */
.why-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
}
.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(247,127,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--mah-orange);
    margin-bottom: 1rem;
}

/* ----- Stats Section ----- */
.stats-section {
    background: var(--mah-orange);
    padding: 4rem 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--mah-white);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ----- Testimonials ----- */
.testimonial-card {
    background: var(--mah-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
}
.testimonial-stars { color: var(--mah-orange); font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-style: italic; color: var(--mah-text-secondary); margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mah-orange), var(--mah-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}
.author-name { font-weight: 700; font-size: 0.92rem; }
.author-role { font-size: 0.8rem; color: var(--mah-text-secondary); }

/* ----- Pricing Cards ----- */
.pricing-card {
    border-radius: var(--radius);
    border: 2px solid rgba(0,0,0,0.06);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
    border-color: var(--mah-orange);
    transform: scale(1.03);
    box-shadow: 0 8px 40px rgba(247,127,0,0.2);
}
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}
.pricing-header {
    background: var(--mah-navy);
    color: white;
    padding: 1.75rem;
    text-align: center;
    position: relative;
}
.pricing-header.orange-bg { background: var(--mah-orange); }
.pricing-badge-top {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mah-orange);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 0 0 8px 8px;
    white-space: nowrap;
}
.pricing-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-price {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.pricing-period { font-size: 0.82rem; opacity: 0.75; }
.pricing-body { padding: 1.75rem; background: white; }
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}
.pricing-feature .check { color: var(--mah-green); font-size: 1rem; flex-shrink: 0; }
.pricing-feature .cross { color: #CBD5E1; font-size: 1rem; flex-shrink: 0; }

/* ----- Feature Grid ----- */
.feature-item {
    text-align: center;
    padding: 1.75rem 1rem;
    border-radius: var(--radius);
    background: var(--mah-white);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(247,127,0,0.1);
    color: var(--mah-orange);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.feature-item h5 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-item p  { font-size: 0.87rem; color: var(--mah-text-secondary); margin: 0; }

/* ----- Steps / Process ----- */
.step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mah-orange);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-content h5 { font-weight: 700; margin-bottom: 0.25rem; }
.step-content p  { font-size: 0.9rem; color: var(--mah-text-secondary); margin: 0; }

/* ----- Roadmap ----- */
.roadmap-item {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    border-left: 3px solid;
    margin-left: 1rem;
}
.roadmap-item.v1 { border-color: var(--mah-green); }
.roadmap-item.v2 { border-color: var(--mah-text-secondary); }
.roadmap-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 1.75rem;
}
.roadmap-item.v1 .roadmap-dot { background: var(--mah-green); }
.roadmap-item.v2 .roadmap-dot { background: var(--mah-text-secondary); }
.roadmap-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.roadmap-item.v1 .roadmap-badge { background: rgba(0,154,68,0.1); color: var(--mah-green); }
.roadmap-item.v2 .roadmap-badge { background: rgba(100,116,139,0.1); color: var(--mah-text-secondary); }

/* ----- Team / Avatar ----- */
.team-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius);
    background: var(--mah-light);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mah-orange), var(--mah-green));
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.team-card h5 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-role { font-size: 0.82rem; color: var(--mah-orange); font-weight: 600; margin-bottom: 0.4rem; }
.team-expertise { font-size: 0.82rem; color: var(--mah-text-secondary); }

/* ----- Values ----- */
.value-item {
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--mah-orange);
    background: var(--mah-light);
    height: 100%;
}
.value-item h5 { font-weight: 700; font-size: 0.98rem; margin-bottom: 0.4rem; }
.value-item p  { font-size: 0.88rem; color: var(--mah-text-secondary); margin: 0; }

/* ----- Comparison Table ----- */
.compare-table { border-collapse: collapse; width: 100%; border-radius: var(--radius); overflow: hidden; }
.compare-table th { background: var(--mah-navy); color: white; padding: 1rem; text-align: center; }
.compare-table td { padding: 0.85rem 1rem; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
.compare-table tr:nth-child(even) td { background: var(--mah-light); }
.compare-table .check-cell { color: var(--mah-green); font-size: 1.1rem; }
.compare-table .cross-cell { color: #CBD5E1; font-size: 1.1rem; }

/* ----- CTA Sections ----- */
.cta-section {
    background: var(--mah-navy);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -20%, rgba(247,127,0,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.cta-section .cta-inner { position: relative; z-index: 1; }

/* ----- Forms ----- */
.mah-form .form-control,
.mah-form .form-select {
    border-radius: 8px;
    border: 1.5px solid #E2E8F0;
    padding: 0.65rem 1rem;
    font-size: 0.93rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    color: var(--mah-text);
}
.mah-form .form-control:focus,
.mah-form .form-select:focus {
    border-color: var(--mah-orange);
    box-shadow: 0 0 0 3px rgba(247,127,0,0.12);
    outline: none;
}
.mah-form label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--mah-text);
    margin-bottom: 0.4rem;
}
.mah-form .invalid-feedback { font-size: 0.82rem; }
.alert-success-mah {
    background: rgba(0,154,68,0.1);
    border: 1px solid rgba(0,154,68,0.25);
    color: var(--mah-green-dark);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}
.alert-error-mah {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    color: #b91c1c;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

/* ----- Coming Soon Badge ----- */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(247,127,0,0.12);
    border: 1.5px solid rgba(247,127,0,0.35);
    color: var(--mah-orange);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.45rem 1rem;
    border-radius: 100px;
}

/* ----- Page Hero (inner pages) ----- */
.page-hero {
    background: linear-gradient(135deg, var(--mah-navy) 0%, var(--mah-navy-light) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247,127,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--mah-white);
    margin-bottom: 0.75rem;
}
.page-hero p.lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
}

/* ----- WhatsApp Float ----- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 1000;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.55);
    color: white;
}

/* ----- Footer ----- */
.mah-footer {
    background-color: var(--mah-navy);
    color: rgba(255,255,255,0.7);
}
.footer-heading {
    color: var(--mah-white);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--mah-orange); }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--mah-orange); }
.footer-social {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-social:hover { color: var(--mah-orange); }
.text-footer-muted { color: rgba(255,255,255,0.4); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7) !important; }

/* ----- Section padding helpers ----- */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* ----- Info box ----- */
.info-box {
    background: rgba(247,127,0,0.06);
    border: 1px solid rgba(247,127,0,0.18);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
    .mah-dropdown { min-width: 100%; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
}
@media (max-width: 767.98px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; text-align: center; }
    .stats-section .row > div:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
    .section-pad { padding: 3.5rem 0; }
}
@media (max-width: 575.98px) {
    .pricing-card.featured { transform: none; box-shadow: none; }
}
