/* landing.css - Apple Style Aesthetic */

:root {
    --bg-body: #FBFBFD;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --accent-blue: #0071E3;
    --accent-blue-hover: #0077ED;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.8);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    --nav-height: 52px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
    font-weight: 600;
}

.display-1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    background: linear-gradient(135deg, #1d1d1f 0%, #434344 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 42px;
    }
}

/* Navbar */
.navbar-apple {
    background: rgba(251, 251, 253, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    /* Safari */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.nav-link {
    color: var(--text-primary);
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-blue);
}

/* Button Apple */
.btn-apple {
    background-color: var(--accent-blue);
    color: white;
    border-radius: 980px;
    /* Pill shape */
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
    border: none;
}

.btn-apple:hover {
    background-color: var(--accent-blue-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
}

.hero-badges {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--text-secondary);
}

.hero-image-wrapper {
    margin-top: 60px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Features - Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.bento-item {
    background: white;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bento-item:hover {
    transform: translateY(-5px);
}

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

.bento-tall {
    grid-row: span 2;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

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

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--accent-blue);
    transform: scale(1.02);
}

.pricing-card.featured {
    border: 2px solid var(--accent-blue);
    background: linear-gradient(180deg, #F5F9FF 0%, #FFFFFF 100%);
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0;
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #424245;
}

.feature-icon {
    color: var(--accent-blue);
    font-size: 14px;
}

/* Footer */
footer {
    background: #F5F5F7;
    padding: 60px 0 30px;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-col h5 {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: var(--text-secondary);
    /* Text-secondary is fine, lighter grey */
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
    color: var(--text-primary);
}

/* Social Media Icons */
.social-icon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f5f7, #e8e8ed);
    color: #1D1D1F;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.social-icon-footer:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.social-icon-footer:hover .fa-telegram {
    color: #0088cc;
}

.social-icon-footer:hover .fa-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icon-footer:hover .fa-youtube {
    color: #FF0000;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Mock Dashboard CSS - Premium SaaS UI */
.mock-dashboard {
    background: #FBFBFD;
    /* Apple Light Gray */
    width: 100%;
    min-height: 500px;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    text-align: left;
}


/* Real Sidebar Styling */
.mock-sidebar {
    width: 220px;
    background: #FFFFFF;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

.mock-nav-item.active {
    background: #EFF6FF;
    /* Light Blue */
    color: var(--accent-blue);
}

.mock-nav-icon {
    width: 16px;
    height: 16px;
    background: currentColor;
    opacity: 0.2;
    mask-size: contain;
    -webkit-mask-size: contain;
    border-radius: 4px;
}

/* Real Stats Cards */
.mock-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mock-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: auto;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Colors for stats */
.stat-success {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
}

.stat-primary {
    background: rgba(0, 113, 227, 0.1);
    color: #0071E3;
}

.stat-warning {
    background: rgba(255, 204, 0, 0.1);
    color: #FFCC00;
}

.stat-danger {
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
}

.mock-card-label-text {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.mock-card-val-text {
    font-size: 18px;
    font-weight: 700;
    color: #1D1D1F;
}

/* Mock Chart Area */
.mock-charts-row {
    display: flex;
    gap: 16px;
    height: 200px;
}

.mock-chart-large {
    flex: 2;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-chart-small {
    flex: 1;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.mock-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100%;
    padding-top: 20px;
}

.mock-bar {
    flex: 1;
    background: #F2F2F7;
    border-radius: 4px;
}

.mock-bar.fill {
    background: var(--accent-blue);
}

.mock-donut {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid #F2F2F7;
    border-top-color: var(--accent-blue);
    border-right-color: #34C759;
}

/* Shadow & Premium Polishes */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Problem/Solution Card Hover */
.bg-light.border.rounded-4 {
    transition: all 0.3s ease;
}

.bg-light.border.rounded-4:hover {
    background: white !important;
    border-color: var(--accent-blue) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.text-danger {
    color: #FF3B30 !important;
    /* Apple Vivid Red */
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    z-index: 9999;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    color: white;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 20px;
}

/* Dual Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.contact-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.contact-float.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-float.telegram {
    background: linear-gradient(135deg, #0088cc, #229ED9);
}

/* --- WOW FACTOR ANIMATIONS --- */

/* 1. Mesh Gradient Background for Hero */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 150vw;
    height: 150vw;
    background: radial-gradient(circle at center, rgba(0, 113, 227, 0.08) 0%, rgba(52, 199, 89, 0.05) 25%, rgba(175, 82, 222, 0.05) 50%, transparent 70%);
    transform: translate(-50%, 0);
    z-index: -1;
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% {
        transform: translate(-50%, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50%, 0) rotate(360deg);
    }
}

/* 2. 3D Tilt & Floating Dashboard */
.hero-image-wrapper {
    perspective: 2000px;
    transform-style: preserve-3d;
    margin-top: 80px;
    /* More space */
}

.mock-dashboard {
    transform: rotateX(20deg) scale(0.95);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-image-wrapper:hover .mock-dashboard {
    transform: rotateX(0deg) scale(1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12) !important;
}

/* 3. Refined Glassmorphism for Bento */
.bento-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-blue);
}

/* 4. Text Gradient Polish */
.display-1 {
    background: linear-gradient(135deg, #1d1d1f 20%, #86868b 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- NISAR STYLE PREMIUM POLISH --- */

/* 1. Global Glow & Vignette */
.glow-vignette {
    position: relative;
}

.glow-vignette::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(circle at 50% -20%, rgba(0, 113, 227, 0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* 2. Large Asymmetric Curves */
.rounded-nisar {
    border-radius: 40px !important;
}

/* 3. Typography: Split Color */
.text-split-color {
    background: linear-gradient(90deg, #1D1D1F 30%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 4. Floating Elements & Pulse */
.btn-pulse {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 113, 227, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0);
    }
}

/* 5. Refined Glassmorphism (Nisar Style) */
.glass-nisar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* 6. Section Curves */
.section-curve-bottom {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

/* ============================================
   MOBILE-FIRST RESPONSIVE DESIGN
   ============================================ */

/* Mobile Base (320px - 480px) */
@media (max-width: 576px) {

    /* === GLOBAL MOBILE FIXES === */
    body {
        font-size: 16px;
        overflow-x: hidden !important;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* === NAVBAR MOBILE === */
    .navbar-apple {
        padding: 8px 0;
    }

    .navbar-brand span {
        font-size: 16px;
    }

    /* Navbar action buttons container */
    .navbar .d-flex.align-items-center.gap-3 {
        gap: 4px !important;
    }

    /* Language dropdown - show only flag on mobile */
    .navbar .dropdown {
        margin-right: 2px;
    }

    .navbar .dropdown button {
        padding: 4px !important;
        min-width: auto !important;
    }

    .navbar .dropdown button span#activeLangText {
        display: none !important;
    }

    /* Login button - compact */
    .navbar .btn-link.nav-link {
        font-size: 11px !important;
        padding: 4px 6px !important;
        white-space: nowrap;
    }

    /* Register button - compact */
    .navbar .btn-apple {
        padding: 5px 10px !important;
        font-size: 11px !important;
        white-space: nowrap;
    }

    /* Dropdown menu */
    .dropdown-menu {
        font-size: 13px;
        min-width: 140px !important;
    }

    /* Hamburger Menu Collapse */
    .navbar-collapse {
        background: white;
        padding: 16px;
        border-radius: 16px;
        margin-top: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav {
        gap: 4px !important;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 8px;
    }

    .navbar-nav .nav-link:hover {
        background: #f5f5f7;
    }

    /* === MOBILE MENU PROFESSIONAL STYLING === */
    .navbar-collapse.d-lg-none .navbar-nav {
        gap: 0 !important;
    }

    .navbar-collapse.d-lg-none .nav-link {
        padding: 14px 16px !important;
        font-size: 16px !important;
        color: var(--text-primary) !important;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .navbar-collapse.d-lg-none .nav-link:hover {
        background: #f5f5f7;
    }

    .navbar-collapse.d-lg-none .border-top {
        border-color: rgba(0, 0, 0, 0.08) !important;
        margin-top: 12px !important;
        padding-top: 12px !important;
    }

    .navbar-collapse.d-lg-none .btn-link {
        text-align: left;
        font-size: 15px !important;
        color: var(--text-primary) !important;
        display: block;
        width: 100%;
    }

    .navbar-collapse.d-lg-none .btn-apple {
        padding: 12px 24px !important;
        font-size: 15px !important;
        margin-top: 8px;
    }

    /* === HERO SECTION MOBILE === */
    .hero-section {
        padding-top: 70px !important;
        padding-bottom: 30px;
        min-height: auto !important;
        text-align: center;
    }

    .hero-section .row {
        flex-direction: column;
        gap: 24px;
    }

    .hero-section .row>div {
        flex: none;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-section .col-lg-5,
    .hero-section .col-lg-7 {
        text-align: center !important;
        width: 100%;
    }

    .hero-badges {
        justify-content: center;
        font-size: 11px;
        padding: 4px 10px;
    }

    .hero-badges .badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .hero-badges .ms-2 {
        font-size: 11px;
    }

    /* Hero Title */
    .hero-section h1,
    .hero-section .display-3 {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }

    .text-split-color {
        background: linear-gradient(90deg, #1D1D1F 50%, var(--accent-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }

    /* Hero Subtitle */
    .hero-section .lead {
        font-size: 16px !important;
        line-height: 1.5;
        margin-bottom: 24px !important;
    }

    /* Hero CTA Buttons */
    .hero-section .d-flex.gap-3 {
        flex-direction: column;
        gap: 12px !important;
        align-items: center;
    }

    .hero-section .btn-apple,
    .hero-section .btn-white {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px !important;
        font-size: 16px !important;
        min-height: 48px;
    }

    /* Trust Avatars */
    .hero-section .mt-5.d-flex {
        justify-content: center;
        margin-top: 24px !important;
    }

    .hero-section .mt-5 .d-flex img {
        width: 32px;
        height: 32px;
    }

    .hero-section .mt-5 .fw-bold {
        font-size: 14px;
    }

    .hero-section .mt-5 .text-xs {
        font-size: 11px;
    }

    /* === MOCK DASHBOARD MOBILE === */
    .hero-image-wrapper {
        margin-top: 16px !important;
        margin-bottom: 16px;
        border-radius: 16px !important;
        transform: none !important;
        perspective: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }

    /* Mac window dots - smaller on mobile */
    .hero-image-wrapper>div:first-child {
        padding: 8px !important;
    }

    .hero-image-wrapper>div:first-child>div {
        width: 8px !important;
        height: 8px !important;
    }

    .mock-dashboard {
        min-height: 200px !important;
        transform: none !important;
        flex-direction: column;
        padding: 0 !important;
    }

    /* Hide sidebar on mobile */
    .mock-sidebar {
        display: none !important;
    }

    .mock-content {
        width: 100%;
        padding: 12px !important;
    }

    .mock-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px !important;
        padding: 0 4px;
    }

    .mock-header h4,
    .mock-title h4 {
        font-size: 12px !important;
        margin: 0 !important;
    }

    /* Hide date and user avatar on mobile */
    .mock-header>.d-flex {
        display: none !important;
    }

    .mock-user {
        display: none !important;
    }

    /* Stats Cards - 2 column on mobile */
    .mock-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100%;
    }

    .mock-card {
        padding: 10px !important;
        min-height: auto !important;
        gap: 4px !important;
        border-radius: 8px !important;
    }

    .mock-card>.d-flex {
        margin-bottom: 4px;
    }

    .mock-stat-icon {
        width: 20px !important;
        height: 20px !important;
        font-size: 9px !important;
        border-radius: 4px !important;
    }

    .mock-stat-icon i {
        font-size: 9px !important;
    }

    .mock-card-label-text {
        font-size: 8px !important;
        line-height: 1.2;
    }

    .mock-card-val-text {
        font-size: 12px !important;
        font-weight: 600;
    }

    .mock-card .badge {
        display: none !important;
    }

    /* Hide charts on mobile */
    .mock-charts-row {
        display: none !important;
    }

    /* === PROBLEM/SOLUTION SECTION === */
    section.py-5 .container.py-5 {
        padding: 32px 16px !important;
    }

    section .display-5 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    section .row.g-4 .col-md-3 {
        margin-bottom: 0;
    }

    section .p-4.rounded-4 {
        padding: 20px !important;
    }

    section .h5.fw-bold {
        font-size: 16px;
    }

    section .text-secondary {
        font-size: 14px;
        line-height: 1.5;
    }

    /* === FEATURES BENTO GRID MOBILE === */
    #features {
        padding: 60px 0 !important;
    }

    #features .display-6 {
        font-size: 22px !important;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 24px 16px;
    }

    .bento-item {
        padding: 24px;
    }

    .bento-item h3 {
        font-size: 18px;
    }

    .bento-item p {
        font-size: 14px;
    }

    .bento-large {
        grid-column: span 1 !important;
    }

    .icon-box-apple {
        width: 48px;
        height: 48px;
    }

    .module-preview {
        flex-wrap: wrap;
        gap: 6px !important;
    }

    .module-preview .badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* === TRUST/INDUSTRY SECTION === */
    #trust .row {
        flex-direction: column;
    }

    #trust .display-6 {
        font-size: 22px !important;
        text-align: center;
    }

    #trust .text-secondary {
        text-align: center;
    }

    .industry-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .industry-item {
        padding: 12px;
        font-size: 14px;
    }

    .trust-chart-container {
        padding: 20px;
    }

    .chart-label {
        font-size: 12px;
    }

    /* === PRICING SECTION MOBILE === */
    #pricing {
        padding: 40px 0 !important;
    }

    #pricing .display-6 {
        font-size: 22px !important;
    }

    #pricing .row.g-4 {
        gap: 16px;
    }

    .pricing-card {
        padding: 24px;
        border-radius: 16px;
    }

    .price-tag {
        font-size: 28px;
    }

    .feature-list li {
        font-size: 13px;
    }

    /* === FINAL CTA SECTION === */
    section[style*="background: #1D1D1F"] {
        padding: 40px 16px !important;
    }

    section[style*="background: #1D1D1F"] .display-5 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    section[style*="background: #1D1D1F"] p {
        font-size: 14px !important;
    }

    section[style*="background: #1D1D1F"] .btn-apple {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px !important;
        font-size: 16px !important;
    }

    /* === FOOTER MOBILE === */
    footer {
        padding: 40px 0 24px;
    }

    footer .row {
        gap: 24px;
    }

    footer .col-md-4,
    footer .col-md-2 {
        text-align: center;
    }

    footer .d-flex.justify-content-between {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    /* === WHATSAPP FLOAT MOBILE === */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    /* === ANIMATIONS - Disable on Mobile === */
    .fade-in-up {
        opacity: 1 !important;
        transform: none !important;
    }

    @keyframes rotateGradient {

        0%,
        100% {
            transform: translate(-50%, 0);
        }
    }

    .btn-pulse {
        animation: none;
    }
}

/* Tablet (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {

    .hero-section h1,
    .display-3 {
        font-size: 36px !important;
    }

    .hero-section .lead {
        font-size: 18px;
    }

    .mock-dashboard {
        min-height: 350px !important;
    }

    .mock-sidebar {
        width: 160px;
    }

    .mock-nav-item span {
        font-size: 11px;
    }

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

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

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

/* Medium Tablets (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {

    .hero-section h1,
    .display-3 {
        font-size: 42px !important;
    }

    .hero-section .col-lg-5 {
        text-align: center;
    }

    .hero-section .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-section .mt-5.d-flex {
        justify-content: center;
    }

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

/* Large screens fix */
@media (min-width: 992px) {
    .hero-section .col-lg-5 {
        text-align: left;
    }
}