/* Global Styling & Design System for sajjadalam.com */
:root {
    --primary-navy: #0f172a;
    --primary-dark: #1e293b;
    --accent-emerald: #10b981;
    --accent-emerald-hover: #059669;
    --accent-amber: #f59e0b;
    --accent-blue: #3b82f6;
    --accent-google-red: #ea4335;
    --accent-google-yellow: #fbbc05;
    --accent-google-green: #34a853;
    --accent-google-blue: #4285f4;
    --accent-meta: #0668e1;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-navy);
    line-height: 1.25;
    font-weight: 700;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-emerald);
}

ul {
    list-style: none;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav - Premium Gradient & Breathing Space */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #090d16 0%, #0f172a 45%, #1e293b 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    padding: 18px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.brand-logo:hover {
    transform: translateY(-1px);
}

.brand-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 1.2px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.1;
    letter-spacing: 0.3px;
}

.brand-title {
    color: var(--accent-emerald);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.12);
    font-weight: 600;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1.3rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-hover));
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    color: #ffffff;
}

.btn-google {
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.35);
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.5);
    color: #ffffff;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-dark);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: #334155;
    color: #ffffff;
}

.btn-block {
    width: 100%;
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-emerald);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-tag-google {
    background: rgba(66, 133, 244, 0.12);
    color: var(--accent-google-blue);
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Hero Section (Enforces Dark Navy Background & White Typography across both Light & Dark modes) */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    color: #ffffff !important;
    padding: 80px 0 90px 0;
    position: relative;
    overflow: hidden;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section .hero-title {
    color: #ffffff !important;
}

.hero-section .hero-title .highlight {
    background: linear-gradient(135deg, #38bdf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p,
.hero-section .hero-description {
    color: #cbd5e1 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.18) 0%, rgba(16, 185, 129, 0.1) 40%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-amber);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    color: #ffffff;
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #4285f4, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 630px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Stats Cards (Mobile 2-column grid rule enforced) */
.hero-stats-grid, .stats-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--accent-emerald);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: #cbd5e1;
}

/* Profile Showcase Card */
.hero-profile-card {
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.profile-avatar-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, #4285f4, #10b981);
    padding: 4px;
    box-shadow: 0 0 25px rgba(66, 133, 244, 0.4);
}

.profile-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #0f172a;
}

.profile-name {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.profile-role {
    color: var(--accent-amber);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.profile-tag {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Brand Software Icons Showcase Grid */
.tools-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.tool-brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 110px;
}

.tool-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.tool-brand-icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-brand-icon-box svg {
    width: 100%;
    height: 100%;
}

.tool-brand-icon {
    font-size: 2.2rem;
}

.tool-brand-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* SVG Helpers */
.svg-gads {
    width: 38px;
    height: 38px;
}

.svg-canva {
    width: 38px;
    height: 38px;
}

/* Google Ads Metrics Showcase Grid */
.metrics-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--accent-google-blue);
}

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

.metric-code {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent-google-blue);
    display: inline-block;
    margin-bottom: 6px;
}

.metric-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Feature Cards & Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.4);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Industry Showcase Cards (Mobile 2-card row requirement) */
.industry-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.industry-card-body {
    padding: 20px;
}

.industry-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.industry-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.industry-result {
    color: var(--accent-emerald);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.industry-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 3px solid var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-dot {
    position: absolute;
    left: -39px;
    top: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--accent-emerald);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 4px;
    display: inline-block;
}

.timeline-role {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.timeline-company {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-emerald);
    margin-bottom: 10px;
}

/* Video Proof Container (YouTube & Instagram) */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--primary-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
    color: #fff;
}

.video-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.video-desc {
    color: #94a3b8;
    font-size: 0.88rem;
}

/* Employer Quick Info Grid */
.employer-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.employer-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 16px;
    border-radius: var(--radius-md);
    text-align: center;
}

.employer-info-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-amber);
    display: block;
    margin-bottom: 4px;
}

.employer-info-lbl {
    font-size: 0.8rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* WhatsApp Floating Button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

.floating-whatsapp:hover {
    transform: scale(1.06);
    color: #fff;
}

/* Footer Styling */
.site-footer {
    background: var(--primary-navy);
    color: #94a3b8;
    padding-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand-name {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-bio {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent-emerald);
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-emerald);
    margin-top: 6px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent-emerald);
    transform: translateX(4px);
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-info-list i {
    color: var(--accent-emerald);
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-info-list a, .contact-info-list span {
    color: #fff;
    font-size: 0.9rem;
}

.footer-bottom {
    background: #090d16;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #64748b;
}

.legal-links a:hover {
    color: var(--accent-emerald);
}

/* RESPONSIVE DESIGN & MOBILE CARDS RULE */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .tools-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .site-header {
        padding: 8px 0;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4px;
        padding: 0 10px;
    }

    .brand-logo {
        gap: 6px;
        max-width: 58%;
    }

    .brand-badge {
        font-size: 0.68rem;
        padding: 2px 5px;
    }

    .brand-name {
        font-size: 0.95rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-title {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }

    .header-cta .btn-whatsapp {
        padding: 0;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header-cta .btn-whatsapp span {
        display: none;
    }

    .theme-toggle-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        font-size: 1.1rem;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* USER REQUIREMENT ENFORCEMENT: 1 ROW 2 CARDS ON MOBILE FOR CARDS VIEW */
    .hero-stats-grid, 
    .stats-grid-2, 
    .industry-cards-grid, 
    .metrics-cards-grid,
    .tools-brand-grid,
    .mobile-2-cards-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .stat-card {
        padding: 14px 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

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

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

    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .floating-whatsapp .whatsapp-text {
        display: none;
    }

    .floating-whatsapp {
        padding: 14px;
        border-radius: 50%;
    }
}
