/* ==========================================================================
   eCartFlow — Official Landing Page Stylesheet
   ========================================================================== */

:root {
    --landing-bg: #070e1b;
    --landing-bg-light: #0d182b;
    --landing-card: #132238;
    --landing-card-hover: #192b45;
    --landing-primary: #5868ff;
    --landing-info: #16b8f3;
    --landing-accent: #38bdf8;
    --landing-muted: #94a3b8;
    --landing-text: #f8fafc;
    --landing-border: rgba(255, 255, 255, 0.09);
    --landing-border-glow: rgba(88, 104, 255, 0.35);
    --whatsapp: #25d366;
    --whatsapp-glow: rgba(37, 211, 102, 0.3);
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0;
    padding: 0;
    position: relative;
    scroll-behavior: smooth;
}

body.landing-page {
    background-color: var(--landing-bg);
    color: var(--landing-text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

.landing-page .text-muted {
    color: var(--landing-muted) !important;
}

.text-whatsapp {
    color: #25d366 !important;
}

.bg-whatsapp {
    background-color: #25d366 !important;
}

.border-whatsapp {
    border-color: #25d366 !important;
}

.section-padding {
    padding: 90px 0;
    overflow-x: hidden;
}

.soft-section {
    background-color: rgba(13, 24, 43, 0.65);
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.section-heading {
    max-width: 680px;
    margin: 0 auto;
}

.section-heading h2 {
    font-weight: 800;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    letter-spacing: -0.5px;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==========================================================================
   Navbar (Right-Aligned Links & Actions)
   ========================================================================== */
.navbar-custom {
    min-height: 70px;
    background: rgba(7, 14, 27, 0.88);
    border-bottom: 1px solid var(--landing-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    z-index: 1030;
    width: 100%;
}

.navbar-custom.is-scrolled {
    background: rgba(7, 14, 27, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.landing-logo-badge {
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.landing-logo-badge:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(88, 104, 255, 0.3);
}

.landing-logo-img {
    height: 32px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    display: block;
}

.navbar-custom .nav-link {
    color: var(--landing-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    transition: all 0.2s ease;
}

.navbar-custom .nav-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   Right-Side Offcanvas Mobile Drawer
   ========================================================================== */
.landing-offcanvas {
    background-color: #091222 !important;
    color: #ffffff;
    border-left: 1.5px solid var(--landing-border) !important;
    width: 320px !important;
    max-width: 85vw !important;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.7);
}

.landing-mobile-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-mobile-link {
    display: flex !important;
    align-items: center;
    gap: 0.95rem;
    padding: 0.85rem 1rem !important;
    border-radius: 14px;
    color: #cbd5e1 !important;
    font-size: 0.98rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.landing-mobile-link:hover,
.landing-mobile-link:active {
    background: rgba(88, 104, 255, 0.15);
    border-color: rgba(88, 104, 255, 0.35);
    color: #ffffff !important;
    transform: translateX(4px);
}

.landing-nav-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(22, 184, 243, 0.12);
    color: var(--landing-info);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn-gradient {
    border: 0;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-info));
    box-shadow: 0 4px 18px rgba(88, 104, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22, 184, 243, 0.45);
    filter: brightness(1.08);
}

.btn-outline-custom {
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-outline-custom:hover {
    background: #ffffff;
    color: #070e1b !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px var(--whatsapp-glow);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section-new {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 130px 0 60px;
    background: 
        radial-gradient(circle at 15% 25%, rgba(88, 104, 255, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(22, 184, 243, 0.14) 0%, transparent 50%);
    position: relative;
    overflow-x: hidden;
}

.hero-title {
    font-size: clamp(2.1rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #5868ff 0%, #16b8f3 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description-new {
    font-size: 1.12rem;
    color: var(--landing-muted);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.25rem;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
}

.hero-points span i {
    color: var(--whatsapp);
    font-size: 1rem;
}

/* ==========================================================================
   Mobile Phone Store Mockup
   ========================================================================== */
.store-preview-wrapper {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.preview-floating-card {
    position: absolute;
    top: 25px;
    left: -20px;
    background: rgba(19, 34, 56, 0.95);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.store-phone {
    background: #020617;
    border: 6px solid #1e293b;
    border-radius: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(88, 104, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.store-phone-notch {
    width: 90px;
    height: 14px;
    background: #1e293b;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}

.store-phone-screen {
    padding: 14px 14px 18px 14px;
    background: #091222;
}

.preview-header {
    background: #111e33;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.preview-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    text-align: center;
}

.preview-category {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.preview-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.preview-product {
    background: #111e33;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 8px;
    text-align: center;
}

.preview-product-img {
    height: 62px;
    background: #182740;
    border-radius: 8px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 1.25rem;
}

.preview-product-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-product-price {
    font-size: 0.75rem;
    font-weight: 800;
    color: #38bdf8;
}

.preview-order-btn {
    background: #25d366;
    color: #020617;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   Step Cards (How It Works)
   ========================================================================== */
.step-card-new {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.step-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--landing-border-glow);
    background: var(--landing-card-hover);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-info));
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 18px rgba(88, 104, 255, 0.35);
}

.step-card-new h4 {
    font-size: 1.25rem;
    color: #ffffff;
}

.step-card-new p {
    color: var(--landing-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Business Cards & Feature Cards
   ========================================================================== */
.business-card-new,
.feature-card-new {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-card-new:hover,
.feature-card-new:hover {
    transform: translateY(-4px);
    border-color: var(--landing-border-glow);
    background: var(--landing-card-hover);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.landing-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(88, 104, 255, 0.12);
    border: 1px solid rgba(88, 104, 255, 0.25);
    color: var(--landing-accent);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.business-card-new h5,
.feature-card-new h5 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.business-card-new p,
.feature-card-new p {
    color: var(--landing-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.55;
}

/* ==========================================================================
   Customer Flow Diagram Box
   ========================================================================== */
.customer-flow-box {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.flow-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    flex: 1;
    min-width: 130px;
}

.flow-item i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(22, 184, 243, 0.12);
    border: 1px solid rgba(22, 184, 243, 0.25);
    color: var(--landing-info);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-item strong {
    font-size: 0.95rem;
    color: #ffffff;
}

.flow-arrow {
    color: var(--landing-muted);
    font-size: 1.5rem;
}

/* ==========================================================================
   Pricing Cards & Billing Switch Toggle
   ========================================================================== */
.landing-pricing-card {
    background: var(--landing-card);
    border: 1.5px solid var(--landing-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.landing-pricing-card.premium {
    background: linear-gradient(180deg, #162642 0%, #111d33 100%);
    border-color: var(--landing-info);
    box-shadow: 0 0 35px rgba(22, 184, 243, 0.18);
}

.badge-premium {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #5868ff, #16b8f3);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(22, 184, 243, 0.4);
}

.landing-pricing-card .form-check-input {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: transparent;
    cursor: pointer;
}

.landing-pricing-card .form-check-input:checked {
    background-color: var(--landing-info);
    border-color: var(--landing-info);
}

.price-val {
    color: #ffffff;
    font-weight: 900;
    font-size: 2.25rem;
}

.duration-val {
    color: var(--landing-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.landing-pricing-card ul li {
    font-size: 0.92rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.landing-pricing-card ul li i {
    color: var(--landing-info);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ==========================================================================
   WhatsApp Support Banner & Floating Action Button
   ========================================================================== */
.ecf-whatsapp-banner {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(19, 34, 56, 0.95) 100%);
    border: 1.5px solid rgba(37, 211, 102, 0.35);
    border-radius: 28px;
    padding: 3rem 2.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.btn-whatsapp-cta {
    background: #25d366;
    color: #070e1b !important;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.9rem 1.85rem;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.btn-whatsapp-cta:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
    color: #070e1b !important;
}

.ecf-floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 15px rgba(37, 211, 102, 0.3);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulseWhatsApp 3s infinite;
}

.ecf-floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
    background: #22c55e;
    color: #ffffff !important;
}

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

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   Final CTA & Footer
   ========================================================================== */
.landing-final-cta {
    background: radial-gradient(circle at center, rgba(88, 104, 255, 0.22) 0%, rgba(13, 24, 43, 0.8) 70%);
    border: 1.5px solid var(--landing-border-glow);
    border-radius: 30px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.landing-final-cta h2 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 900;
}

footer {
    background: #040810;
    border-top: 1px solid var(--landing-border);
    color: var(--landing-muted);
    overflow-x: hidden;
}

/* ==========================================================================
   Mobile Horizontal Swipeable Snap Slider & Dot Indicators
   ========================================================================== */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 55px 0;
    }

    .hero-section-new {
        padding: 100px 0 40px;
        min-height: auto;
    }

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

    .hero-description-new {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-points {
        gap: 0.75rem 1.25rem;
        margin-top: 1.75rem;
    }

    .store-preview-wrapper {
        max-width: 310px;
        margin: 1.5rem auto 0 auto;
    }

    .preview-floating-card {
        top: 12px;
        left: 5px;
        font-size: 0.74rem;
        padding: 0.4rem 0.75rem;
    }

    .customer-flow-box {
        padding: 1.75rem 1.25rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.25rem 0;
    }

    .flow-wrap {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Horizontal Snap Slider for Mobile */
    .ecf-mobile-snap-slider {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important;
        gap: 1rem !important;
        padding: 15px 1rem 15px 1rem !important;
        margin-left: -0.75rem !important;
        margin-right: -0.75rem !important;
    }
    .ecf-mobile-snap-slider::-webkit-scrollbar {
        display: none !important;
    }
    .ecf-mobile-snap-slider > .slider-item {
        flex: 0 0 86% !important;
        max-width: 86% !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
    }

    .ecf-slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.45rem;
        margin-top: 1rem;
    }
    .ecf-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
    }
    .ecf-slider-dot.is-active {
        width: 24px;
        background: var(--landing-info);
        box-shadow: 0 0 10px rgba(22, 184, 243, 0.6);
    }

    .landing-pricing-card {
        padding: 2rem 1.4rem;
    }

    .ecf-floating-whatsapp span {
        display: none;
    }
    .ecf-floating-whatsapp {
        padding: 0.75rem;
        width: 52px;
        height: 52px;
        justify-content: center;
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 992px) {
    .ecf-slider-dots {
        display: none !important;
    }
}


/* ==========================================================================
   Landing Extracted Component & Mockup Styles
   ========================================================================== */
.landing-offcanvas-close-btn {
    width: 36px;
    height: 36px;
}

.landing-offcanvas-logo {
    height: 26px;
}

.landing-mock-search {
    height: 28px;
}

.landing-mock-store-title {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

.landing-mock-store-sub {
    font-size: 8px;
    color: #94a3b8;
}

.landing-mock-cart-icon {
    font-size: 14px;
}

.landing-mock-banner-title {
    font-size: 12px;
    color: #ffffff;
}

.landing-mock-banner-sub {
    font-size: 9px;
    color: #94a3b8;
    margin-top: 3px;
}

.pricing-label-pointer {
    cursor: pointer;
}

.pricing-switch-input {
    width: 2.5em;
    height: 1.25em;
    cursor: pointer;
    float: none;
}

.pricing-feature-list {
    max-width: 320px;
}

.landing-faq-desc {
    max-width: 600px;
}

/* ==========================================================================
   Contact Section & Enhanced Dynamic Footer Styles
   ========================================================================== */
.landing-contact-card {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-contact-card:hover {
    background: var(--landing-card-hover);
    border-color: var(--landing-border-glow);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.landing-contact-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.landing-footer {
    background: #040810;
    border-top: 1px solid var(--landing-border);
    padding: 60px 0 28px 0;
}

.landing-footer-link {
    color: var(--landing-muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    margin-bottom: 9px;
    font-size: 0.875rem;
}

.landing-footer-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.hover-white:hover {
    color: #ffffff !important;
}

.letter-spacing-1 {
    letter-spacing: 0.75px;
}


/* Landing Contact Details Card Styling */
.landing-detail-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-detail-card:hover {
    background-color: var(--landing-card-hover) !important;
    border-color: var(--landing-border-glow) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.landing-contact-img-frame img {
    transition: transform 0.5s ease;
}

.landing-contact-img-frame:hover img {
    transform: scale(1.02);
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ==========================================================================
   eCartFlow — Store Owner PWA Landing Section Styles
   ========================================================================== */
.ecf-pwa-landing-section {
    position: relative;
    overflow: hidden;
}

.ecf-pwa-landing-card {
    background: linear-gradient(135deg, rgba(19, 34, 56, 0.95) 0%, rgba(13, 24, 43, 0.98) 100%);
    border: 1px solid var(--landing-border-glow);
    border-radius: 28px;
    padding: clamp(32px, 5vw, 56px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.ecf-pwa-landing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(88, 104, 255, 0.18) 0%, rgba(22, 184, 243, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ecf-pwa-landing-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    letter-spacing: -0.5px;
    line-height: 1.25;
    color: #ffffff;
}

.ecf-pwa-preview-container {
    padding: 15px;
}