/* MOBILE CSS - ACTIVE FOR HOMEPAGE IMPROVEMENTS */
/* Enhanced mobile styling for better mobile experience */

@media (max-width: 768px) {
    /* MOBILE TOUCH FIX - PROVEN SOLUTION */
    html {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-tap-highlight-color: transparent;
    }

    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-tap-highlight-color: transparent;
    }

    a, button, input, select, textarea, .btn, .clickable {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        touch-action: manipulation;
        cursor: pointer;
    }

    input, textarea, select {
        -webkit-user-select: text;
        -webkit-touch-callout: default;
    }
    /* MOBILE HOMEPAGE FIXES */

    /* CENTER ALL TEXT ON MOBILE WITH PROPER SPACING */
    .section-title,
    .section-subtitle,
    .hero-title,
    .hero-subtitle,
    .standout-main-title,
    .standout-subtitle,
    .standout-title,
    .comparison-title,
    .bottom-line-title,
    .bottom-line-text,
    h1, h2, h3, h4, h5, h6,
    .display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
    .lead,
    p {
        text-align: center !important;
    }

    /* TITLE SPACING - PROPER LINE HEIGHTS AND MARGINS */
    h1, .display-4 {
        margin-bottom: 30px !important;
        line-height: 1.3 !important;
    }

    h2, .section-title {
        margin-bottom: 25px !important;
        line-height: 1.4 !important;
    }

    h3 {
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
    }

    h4, h5, h6 {
        margin-bottom: 15px !important;
        line-height: 1.5 !important;
    }

    p, .lead, .section-subtitle {
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }

    /* SECTION SPACING */
    .section {
        padding: 60px 0 !important;
    }

    .section-title {
        margin-bottom: 30px !important;
        padding: 0 20px !important;
    }

    .section-subtitle {
        margin-bottom: 40px !important;
        padding: 0 20px !important;
    }

    /* HERO SECTION - CENTERED WITH PROPER SPACING */
    .hero {
        text-align: center !important;
        padding: 100px 0 60px !important;
    }

    .hero h1.display-4 {
        font-size: 2.5rem !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
        color: #2c3e50 !important;
        margin-bottom: 30px !important;
        letter-spacing: -0.02em !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        text-align: center !important;
    }

    .hero .lead {
        font-size: 18px !important;
        line-height: 1.6 !important;
        color: #6c757d !important;
        margin-bottom: 40px !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 20px !important;
        text-align: center !important;
    }

    .hero .row {
        text-align: center !important;
    }

    .hero .col-lg-10 {
        text-align: center !important;
    }

    /* PRICING SECTION - MOBILE CENTERED */
    .pricing {
        padding: 60px 0;
        background: #f8f9fa;
        text-align: center !important;
    }

    .pricing .section-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #2c3e50 !important;
    }

    .pricing .section-subtitle {
        font-size: 16px !important;
        margin-bottom: 40px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #6c757d !important;
        line-height: 1.6 !important;
    }

    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        padding: 0 20px !important;
        grid-template-columns: none !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        align-items: center !important;
    }

    .pricing-card {
        background: white !important;
        border-radius: 20px !important;
        padding: 40px 30px !important;
        box-shadow: 0 8px 40px rgba(0,0,0,0.12) !important;
        border: 2px solid #f1f3f4 !important;
        text-align: center !important;
        position: relative !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .pricing-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    }

    .pricing-card.popular {
        border: 2px solid #007bff !important;
        transform: scale(1.02) !important;
    }

    .popular-badge {
        position: absolute !important;
        top: -10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: #007bff !important;
        color: white !important;
        padding: 6px 20px !important;
        border-radius: 20px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .pricing-header h3 {
        font-size: 24px !important;
        font-weight: 700 !important;
        margin-bottom: 10px !important;
        color: #2c3e50 !important;
    }

    .price {
        margin: 20px 0 !important;
        display: flex !important;
        align-items: baseline !important;
        justify-content: center !important;
        gap: 2px !important;
    }

    .price .currency {
        font-size: 20px !important;
        color: #6c757d !important;
        font-weight: 500 !important;
    }

    .price .amount {
        font-size: 48px !important;
        font-weight: 700 !important;
        color: #2c3e50 !important;
    }

    .price .period {
        font-size: 16px !important;
        color: #6c757d !important;
        font-weight: 500 !important;
    }

    .pricing-header p {
        color: #6c757d !important;
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }

    .pricing-features {
        list-style: none !important;
        padding: 0 !important;
        margin: 25px 0 !important;
        text-align: left !important;
    }

    .pricing-features li {
        padding: 8px 0 !important;
        font-size: 15px !important;
        color: #495057 !important;
        border-bottom: 1px solid #f1f3f4 !important;
    }

    .pricing-features li:last-child {
        border-bottom: none !important;
    }

    .pricing-card .btn-primary,
    .pricing-card .btn-secondary {
        width: 100% !important;
        padding: 18px 30px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        margin-top: 25px !important;
        text-decoration: none !important;
        display: block !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        min-height: 56px !important;
        line-height: 1.2 !important;
        box-sizing: border-box !important;
    }

    .pricing-card .btn-primary {
        background: #007bff !important;
        color: white !important;
        border: 2px solid #007bff !important;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3) !important;
    }

    .pricing-card .btn-primary:hover {
        background: #0056b3 !important;
        border-color: #0056b3 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(0,123,255,0.4) !important;
    }

    .pricing-card .btn-secondary {
        background: white !important;
        color: #007bff !important;
        border: 2px solid #007bff !important;
        box-shadow: 0 4px 15px rgba(0,123,255,0.2) !important;
    }

    .pricing-card .btn-secondary:hover {
        background: #007bff !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(0,123,255,0.4) !important;
    }

    .pricing-note {
        text-align: center !important;
        margin-top: 40px !important;
        padding: 20px !important;
        background: white !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }

    .pricing-note p {
        font-size: 14px !important;
        color: #6c757d !important;
        margin: 0 !important;
        line-height: 1.6 !important;
    }

    /* FEATURES SECTION - MOBILE CENTERED */
    .features {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .features .section-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #2c3e50 !important;
    }

    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }

    .feature-card {
        background: white !important;
        padding: 30px 20px !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
    }

    .feature-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    }

    .feature-card h3 {
        font-size: 20px !important;
        font-weight: 600 !important;
        margin: 30px 0 20px !important;
        color: #2c3e50 !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }

    /* FEATURE ICONS - MORE SPACE AFTER */
    .feature-icon,
    .step-icon,
    .benefit-icon {
        margin-bottom: 25px !important;
    }

    .feature-card .feature-icon {
        margin-bottom: 30px !important;
    }

    .feature-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #6c757d !important;
        margin: 0 !important;
        text-align: center !important;
    }

    /* HOW IT WORKS SECTION - MOBILE CENTERED */
    .how-it-works {
        padding: 60px 0 !important;
        background: #f8f9fa !important;
        text-align: center !important;
    }

    .how-it-works .section-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #2c3e50 !important;
    }

    .how-it-works .section-subtitle {
        font-size: 16px !important;
        margin-bottom: 40px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #6c757d !important;
        line-height: 1.6 !important;
    }

    .steps-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }

    .step-card {
        background: white !important;
        padding: 30px 20px !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        text-align: center !important;
        position: relative !important;
    }

    .step-number {
        width: 50px !important;
        height: 50px !important;
        background: #007bff !important;
        color: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        margin: 0 auto 35px !important;
    }

    .step-card h3 {
        font-size: 20px !important;
        font-weight: 600 !important;
        margin-bottom: 20px !important;
        color: #2c3e50 !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }

    .step-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #6c757d !important;
        margin: 0 !important;
        text-align: center !important;
    }

    /* FOOTER - MOBILE */
    .footer {
        text-align: center !important;
        padding: 50px 0 30px !important;
    }

    .footer-content {
        padding: 0 20px !important;
    }

    .footer-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
        margin: 30px 0 !important;
    }

    .footer-column h4 {
        font-size: 16px !important;
        margin-bottom: 15px !important;
        color: #2c3e50 !important;
    }

    .footer-column a {
        display: block !important;
        padding: 8px 0 !important;
        color: #6c757d !important;
        text-decoration: none !important;
        font-size: 14px !important;
    }

    /* GENERAL MOBILE IMPROVEMENTS - ALL CENTERED */
    .container {
        padding: 0 20px !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    /* FORCE CENTER ALL CONTENT ON MOBILE - NUCLEAR OPTION */
    *, *::before, *::after {
        text-align: center !important;
    }

    body, html {
        text-align: center !important;
    }

    .container, .row, .col-lg-10, .col-md-4 {
        text-align: center !important;
    }

    h1, h2, h3, h4, h5, h6, p, div, span, a {
        text-align: center !important;
    }

    /* OVERRIDE FOR SPECIFIC ELEMENTS THAT SHOULD BE LEFT-ALIGNED */
    .pricing-features,
    .pricing-features li {
        text-align: left !important;
    }

    /* ENSURE ALL SECTIONS ARE CENTERED */
    section {
        text-align: center !important;
    }

    /* BOOTSTRAP OVERRIDES FOR MOBILE */
    .row {
        text-align: center !important;
    }

    .col-lg-10,
    .col-md-4,
    .col-sm-6 {
        text-align: center !important;
    }

    /* BUTTONS - MOBILE FRIENDLY */
    .btn-primary,
    .btn-secondary,
    button,
    .btn,
    a[href],
    .clickable {
        min-height: 48px !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: inline-block !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
    }

    /* MOBILE TOUCH FIXES - NUCLEAR OPTION */
    * {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
    }

    /* FORCE CLICKABILITY ON MOBILE */
    html {
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
    }

    body {
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
    }

    /* CONTAINERS AND CARDS - MOBILE CLICKABLE */
    .pricing-card,
    .feature-card,
    .step-card,
    .benefit-item,
    .container,
    .card,
    .upgrade-btn,
    .waply-btn,
    .waply-button,
    .banner-upgrade-btn,
    .subscription-banner,
    .btn-primary,
    .btn-secondary,
    .btn-sm,
    .banner-actions a,
    a,
    button,
    .btn,
    [href],
    [onclick] {
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.2) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }

    /* FORCE BUTTON STYLES */
    .btn, button, a[href] {
        display: inline-block !important;
        text-decoration: none !important;
        border: none !important;
        outline: none !important;
        background-color: transparent !important;
    }

    .btn-primary, .pricing-card .btn-primary {
        background-color: #007bff !important;
        color: white !important;
        border: 2px solid #007bff !important;
    }

    .btn-secondary, .pricing-card .btn-secondary {
        background-color: white !important;
        color: #007bff !important;
        border: 2px solid #007bff !important;
    }

    /* SPECIFIC UPGRADE BUTTON FIXES */
    .banner-upgrade-btn,
    .btn.btn-primary.btn-sm.banner-upgrade-btn {
        min-height: 48px !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        background: #007bff !important;
        color: white !important;
        text-decoration: none !important;
        display: inline-block !important;
        text-align: center !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
        pointer-events: auto !important;
    }

    .banner-upgrade-btn:hover,
    .btn.btn-primary.btn-sm.banner-upgrade-btn:hover {
        background: #0056b3 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(0,123,255,0.4) !important;
        color: white !important;
    }

    /* TRIAL BANNER MOBILE FIXES */
    .subscription-banner {
        padding: 20px !important;
        margin: 20px 0 !important;
        border-radius: 12px !important;
        cursor: default !important;
    }

    .banner-actions {
        margin-top: 20px !important;
        text-align: center !important;
    }
    /* RESET AND BASE */
    * {
        box-sizing: border-box;
    }

    body {
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

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

    /* NAVIGATION - COMPLETE REDESIGN */
    .navbar {
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0;
    }

    /* MOBILE NAVIGATION BUTTONS */
    .navbar .d-flex {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        margin-top: 20px !important;
    }

    .navbar .btn {
        width: 100% !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        text-align: center !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .navbar .btn-outline-primary {
        background: white !important;
        color: #007bff !important;
        border: 2px solid #007bff !important;
    }

    .navbar .btn-outline-primary:hover {
        background: #007bff !important;
        color: white !important;
    }

    .navbar .btn-primary {
        background: #007bff !important;
        color: white !important;
        border: 2px solid #007bff !important;
    }

    .navbar .btn-primary:hover {
        background: #0056b3 !important;
        border-color: #0056b3 !important;
    }

    /* BOOTSTRAP NAVBAR COLLAPSE MOBILE - WIDER BUTTONS */
    .navbar-collapse {
        padding: 30px 20px !important;
        width: 100% !important;
    }

    .navbar-collapse .d-flex {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        align-items: stretch !important;
    }

    .navbar-collapse .btn {
        width: 100% !important;
        padding: 18px 30px !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        min-height: 56px !important;
        display: block !important;
        text-align: center !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }

    .navbar-collapse .btn-outline-primary {
        background: white !important;
        color: #007bff !important;
        border: 3px solid #007bff !important;
    }

    .navbar-collapse .btn-primary {
        background: #007bff !important;
        color: white !important;
        border: 3px solid #007bff !important;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        max-width: 100%;
    }

    .nav-brand .nav-logo {
        height: 35px;
        width: auto;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 999;
        padding: 80px 20px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: block !important;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu a {
        display: block;
        padding: 20px 0;
        font-size: 20px;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: color 0.3s;
    }

    .mobile-menu a:hover {
        color: #007bff;
    }

    .mobile-menu a.btn-primary {
        background: #007bff;
        color: white;
        padding: 15px 25px;
        border-radius: 8px;
        text-align: center;
        margin-top: 20px;
        border-bottom: none;
    }

    /* HERO SECTION - COMPLETE REDESIGN */
    .hero {
        padding: 100px 0 60px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        text-align: center;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #2c3e50;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
        color: #6c757d;
        padding: 0 15px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 0 20px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }

    .hero-actions .btn-primary {
        background: #007bff;
        color: white;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    }

    .hero-actions .btn-primary:hover {
        background: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    }

    .hero-actions .btn-secondary {
        background: white;
        color: #007bff;
        border: 2px solid #007bff;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 50px;
        align-items: center;
        padding: 0 20px;
    }

    .hero-feature {
        background: white;
        padding: 12px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
        color: #495057;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border: 1px solid #e9ecef;
    }

    /* WORDPRESS NOTICE - MOBILE */
    .wordpress-notice {
        padding: 30px 0;
    }

    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
        margin: 0 20px;
    }

    .notice-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .notice-text h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .notice-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .btn-wordpress {
        padding: 15px 25px;
        font-size: 15px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    /* WHY WAPLY-CONNECT SECTION - COMPLETE REDESIGN */
    .why-waply-connect {
        padding: 60px 0;
        background: white;
    }

    .standout-section {
        margin-bottom: 50px;
        padding: 0 20px;
        text-align: center;
    }

    .standout-main-title {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        color: #2c3e50;
        padding: 0 10px;
    }

    .standout-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
        color: #6c757d;
        padding: 0 10px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .standout-title {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 30px;
        color: #2c3e50;
        text-align: center;
    }

    /* FEATURES LIST - MODERN CARD DESIGN */
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .feature-item {
        background: white;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        text-align: left;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .feature-item h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #2c3e50;
        line-height: 1.3;
    }

    .feature-item p {
        font-size: 15px;
        line-height: 1.6;
        color: #6c757d;
        margin: 0;
    }

    /* STEPS SECTION - MODERN DESIGN */
    .steps-section {
        padding: 60px 0;
        background: #f8f9fa;
    }

    .steps-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }

    .step-item {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        position: relative;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: #007bff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 700;
        margin: 0 auto 20px;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    }

    .step-item h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #2c3e50;
        line-height: 1.3;
    }

    .step-item p {
        font-size: 15px;
        line-height: 1.6;
        color: #6c757d;
        margin: 0;
    }

    /* BENEFITS SECTION - CARD LAYOUT */
    .benefits-section {
        padding: 60px 0;
        background: white;
    }

    .benefits-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .benefit-item {
        background: white;
        padding: 25px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        transition: all 0.3s ease;
    }

    .benefit-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 30px;
        background: #e3f2fd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #007bff;
    }

    .benefit-item h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #2c3e50;
    }

    .benefit-item p {
        font-size: 15px;
        line-height: 1.6;
        color: #6c757d;
        margin: 0;
    }

    /* FEATURES GRID - MODERN CARDS */
    .features-section {
        padding: 60px 0;
        background: #f8f9fa;
    }

    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .feature-card {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .feature-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #2c3e50;
        line-height: 1.3;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #6c757d;
        margin: 0;
    }

    /* COMPARISON TABLE - MOBILE-FIRST REDESIGN */
    .comparison-section {
        padding: 60px 0;
        background: white;
    }

    .comparison-title {
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
        color: #2c3e50;
        padding: 0 20px;
    }

    .comparison-table {
        padding: 0 20px;
    }

    .comparison-header,
    .comparison-row {
        display: block;
        margin-bottom: 25px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        overflow: hidden;
    }

    .comparison-cell {
        display: block;
        padding: 20px;
        border-bottom: 1px solid #f1f3f4;
        text-align: left;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .feature-col {
        background: #f8f9fa;
        font-weight: 700;
        font-size: 16px;
        color: #2c3e50;
        border-bottom: 2px solid #007bff;
    }

    .waply-col {
        background: #e8f5e8;
        color: #155724;
        font-weight: 600;
        position: relative;
    }

    .waply-col::before {
        content: "✓ Waply-Connect: ";
        font-weight: 700;
        color: #28a745;
    }

    .competitor-col {
        background: #fef2f2;
        color: #721c24;
        font-weight: 500;
        position: relative;
    }

    .competitor-col::before {
        content: "✗ Others: ";
        font-weight: 700;
        color: #dc3545;
    }

    /* BOTTOM LINE CTA - REDESIGNED */
    .bottom-line-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: white;
        text-align: center;
    }

    .bottom-line-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .bottom-line-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 20px;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 0 20px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        transition: all 0.3s ease;
    }

    .cta-buttons .btn-primary {
        background: white;
        color: #007bff;
        border: none;
    }

    .cta-buttons .btn-primary:hover {
        background: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,255,255,0.3);
    }

    .cta-buttons .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    /* FORMS - MODERN DESIGN */
    .form-group {
        margin-bottom: 25px;
    }

    .form-control {
        width: 100%;
        padding: 18px 20px;
        font-size: 16px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        background: white;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
        outline: none;
    }

    .btn {
        padding: 18px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        box-sizing: border-box;
    }

    .btn-primary {
        background: #007bff;
        color: white;
        width: 100%;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    }

    .btn-primary:hover {
        background: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    }

    /* FOOTER - MODERN MOBILE DESIGN */
    .footer {
        background: #2c3e50;
        color: white;
        padding: 50px 0 30px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-brand img {
        height: 40px;
        margin-bottom: 15px;
    }

    .footer-brand p {
        font-size: 14px;
        color: #bdc3c7;
        line-height: 1.6;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
    }

    .footer-section a {
        display: block;
        font-size: 14px;
        color: #bdc3c7;
        text-decoration: none;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: #3498db;
    }

    .footer-bottom {
        border-top: 1px solid #34495e;
        padding-top: 30px;
        margin-top: 40px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 14px;
        color: #95a5a6;
        margin: 0;
    }

    /* MODALS - MOBILE OPTIMIZED */
    .modal {
        z-index: 2000;
    }

    .modal-content {
        width: 95%;
        margin: 10px auto;
        max-height: 95vh;
        overflow-y: auto;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }

    .modal-header {
        padding: 20px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-bottom: 1px solid #e9ecef;
        border-radius: 15px 15px 0 0;
    }

    .modal-header h2 {
        font-size: 18px;
        margin: 0;
        color: #2c3e50;
    }

    .modal-close {
        font-size: 24px;
        color: #6c757d;
        cursor: pointer;
        padding: 5px;
    }

    .modal-body {
        padding: 20px;
    }

    /* UTILITY CLASSES */
    .text-center-mobile {
        text-align: center !important;
    }

    .hidden-mobile {
        display: none !important;
    }

    .full-width-mobile {
        width: 100% !important;
    }

    .no-padding-mobile {
        padding: 0 !important;
    }

    /* SECTION SPACING */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        color: #2c3e50;
        text-align: center;
        padding: 0 20px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
        color: #6c757d;
        text-align: center;
        padding: 0 20px;
    }

    /* RESPONSIVE IMAGES */
    img {
        max-width: 100%;
        height: auto;
    }

    /* SMOOTH SCROLLING */
    html {
        scroll-behavior: smooth;
    }

    /* PREVENT HORIZONTAL SCROLL */
    body {
        overflow-x: hidden;
    }
}

/* EXTRA SMALL DEVICES - ULTRA MOBILE OPTIMIZATION */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* TYPOGRAPHY ADJUSTMENTS */
    .hero-title {
        font-size: 1.8rem;
        padding: 0 5px;
    }

    .standout-main-title {
        font-size: 1.6rem;
        padding: 0 5px;
    }

    .section-title {
        font-size: 1.6rem;
        padding: 0 15px;
    }

    .section-subtitle {
        padding: 0 15px;
    }

    /* NAVIGATION */
    .nav-container {
        padding: 12px 15px;
    }

    .mobile-menu {
        padding: 70px 15px 20px;
    }

    /* HERO ADJUSTMENTS */
    .hero {
        padding: 90px 0 50px;
    }

    .hero-subtitle {
        padding: 0 10px;
    }

    .hero-actions {
        padding: 0 15px;
    }

    /* SECTIONS */
    .standout-section,
    .features-list,
    .steps-grid,
    .benefits-grid,
    .features-grid {
        padding: 0 15px;
    }

    .comparison-table {
        padding: 0 15px;
    }

    .comparison-title {
        padding: 0 15px;
    }

    /* FOOTER */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-content {
        padding: 0 15px;
    }

    /* FORMS */
    .form-control {
        padding: 16px 18px;
    }

    .btn {
        padding: 16px 25px;
    }

    /* CTA SECTION */
    .cta-buttons {
        padding: 0 15px;
    }

    .bottom-line-title,
    .bottom-line-text {
        padding: 0 15px;
    }

    /* CARDS */
    .feature-item,
    .step-item,
    .benefit-item,
    .feature-card {
        padding: 20px 15px;
    }

    /* MODAL */
    .modal-content {
        width: 98%;
        margin: 5px auto;
    }

    .modal-header,
    .modal-body {
        padding: 15px;
    }
}
