﻿/*==========================================================
 E-COMMERCE HERO
==========================================================*/

.ecom-hero {
    padding: 100px 0;
    background: #f8fbff;
}

.ecom-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.ecom-hero-content h1 {
    margin: 15px 0 25px;
    color: #111827;
    font-size: 56px;
    line-height: 1.15;
}

    .ecom-hero-content h1 span {
        display: block;
        color: #2563eb;
    }

.ecom-hero-content p {
    max-width: 650px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.ecom-hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.ecom-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
}

    .ecom-call-btn:hover {
        border-color: #2563eb;
        color: #2563eb;
    }

.ecom-trust {
    display: flex;
    gap: 40px;
    margin-top: 45px;
}

    .ecom-trust div {
        display: flex;
        flex-direction: column;
    }

    .ecom-trust strong {
        color: #2563eb;
        font-size: 25px;
    }

    .ecom-trust span {
        color: #6b7280;
        font-size: 13px;
    }


/*==========================================================
 ECOMMERCE VISUAL
==========================================================*/

.ecom-hero-visual {
    padding: 20px;
}

.ecom-store {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(15,23,42,.15);
}

.ecom-store-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #edf0f4;
}

    .ecom-store-header strong {
        color: #2563eb;
        font-size: 15px;
    }

.ecom-store-icons {
    color: #64748b;
    font-size: 13px;
}

.ecom-store-banner {
    padding: 45px 30px;
    background: #f0f6ff;
}

    .ecom-store-banner small {
        color: #2563eb;
        font-size: 9px;
        font-weight: 700;
    }

    .ecom-store-banner h3 {
        max-width: 350px;
        margin: 10px 0 18px;
        color: #111827;
        font-size: 30px;
        line-height: 1.2;
    }

    .ecom-store-banner span {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 6px;
        background: #2563eb;
        color: #fff;
        font-size: 11px;
    }

.ecom-products {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    padding: 22px;
}

.ecom-product {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ecom-product-image {
    height: 100px;
    margin-bottom: 7px;
    border-radius: 8px;
    background: #edf3fa;
}

.ecom-product strong {
    color: #374151;
    font-size: 12px;
}

.ecom-product small {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
}


/*==========================================================
 SECTION HEADING
==========================================================*/

.section-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

    .section-heading h2 {
        margin: 15px 0 18px;
        color: #111827;
        font-size: 40px;
        line-height: 1.3;
    }

        .section-heading h2 span {
            color: #2563eb;
        }

    .section-heading p {
        color: #6b7280;
        line-height: 1.8;
    }


/*==========================================================
 WHY ECOMMERCE
==========================================================*/

.ecom-why {
    padding: 100px 0;
}

.ecom-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 55px;
}

.ecom-benefit {
    padding: 32px;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    background: #fff;
    transition: .3s;
}

    .ecom-benefit:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(15,23,42,.07);
    }

.ecom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #eef5ff;
    font-size: 22px;
}

.ecom-benefit h3 {
    margin-bottom: 12px;
    color: #111827;
    font-size: 20px;
}

.ecom-benefit p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}


/*==========================================================
 FEATURES
==========================================================*/

.ecom-features {
    padding: 100px 0;
    background: #f8fbff;
}

.ecom-feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 55px;
}

.ecom-feature-card {
    padding: 30px;
    border: 1px solid #e3e8ef;
    border-radius: 15px;
    background: #fff;
    transition: .3s;
}

    .ecom-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(15,23,42,.07);
    }

    .ecom-feature-card > span {
        color: #2563eb;
        font-size: 13px;
        font-weight: 700;
    }

    .ecom-feature-card h3 {
        margin: 15px 0 10px;
        color: #111827;
        font-size: 20px;
    }

    .ecom-feature-card p {
        margin: 0;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
    }


/*==========================================================
 PRICING
==========================================================*/

.ecom-pricing {
    padding: 100px 0;
}

.ecom-price-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 55px;
}

.ecom-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    border: 1px solid #e1e7ef;
    border-radius: 18px;
    background: #fff;
    transition: .3s;
}

    .ecom-price-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 45px rgba(15,23,42,.08);
    }

    .ecom-price-card.popular {
        border: 2px solid #2563eb;
    }

.ecom-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 18px;
    border-radius: 30px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.ecom-price-card h3 {
    margin-bottom: 10px;
    color: #111827;
    font-size: 23px;
}

.ecom-price-description {
    min-height: 70px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.ecom-price {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

    .ecom-price small {
        display: block;
        margin-bottom: 5px;
        color: #6b7280;
        font-size: 12px;
    }

    .ecom-price strong {
        color: #2563eb;
        font-size: 38px;
    }

.ecom-price-card ul {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.ecom-price-card li {
    padding: 9px 0;
    border-bottom: 1px solid #f2f3f5;
    color: #4b5563;
    font-size: 14px;
}

    .ecom-price-card li::before {
        content: "✓";
        margin-right: 9px;
        color: #2563eb;
        font-weight: 700;
    }

.ecom-price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: auto;
    border-radius: 9px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

    .ecom-price-btn:hover {
        background: #1d4ed8;
        color: #fff;
    }

.ecom-pricing-note {
    margin-top: 30px;
    color: #6b7280;
    text-align: center;
    font-size: 13px;
}


/*==========================================================
 BUSINESS TYPES
==========================================================*/

.ecom-business {
    padding: 100px 0;
    background: #f8fbff;
}

.ecom-business-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 55px;
}

    .ecom-business-grid > div {
        padding: 30px;
        border: 1px solid #e2e8f0;
        border-radius: 15px;
        background: #fff;
    }

    .ecom-business-grid span {
        color: #2563eb;
        font-size: 13px;
        font-weight: 700;
    }

    .ecom-business-grid h3 {
        margin: 15px 0 10px;
        color: #111827;
        font-size: 19px;
    }

    .ecom-business-grid p {
        margin: 0;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
    }


/*==========================================================
 PROCESS
==========================================================*/

.ecom-process {
    padding: 100px 0;
}

.ecom-process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 55px;
}

    .ecom-process-grid > div {
        padding: 30px;
        border: 1px solid #e5e7eb;
        border-radius: 15px;
    }

    .ecom-process-grid span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-bottom: 20px;
        border-radius: 50%;
        background: #eef5ff;
        color: #2563eb;
        font-weight: 700;
    }

    .ecom-process-grid h3 {
        margin-bottom: 10px;
        color: #111827;
        font-size: 20px;
    }

    .ecom-process-grid p {
        margin: 0;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
    }


/*==========================================================
 CTA
==========================================================*/

.ecom-cta {
    padding: 90px 0;
    background: #111827;
}

.ecom-cta-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

    .ecom-cta-content h2 {
        margin: 15px 0 20px;
        color: #fff;
        font-size: 42px;
        line-height: 1.3;
    }

        .ecom-cta-content h2 span {
            color: #60a5fa;
        }

    .ecom-cta-content p {
        color: #cbd5e1;
        font-size: 17px;
        line-height: 1.8;
    }

.ecom-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}


/*==========================================================
 RESPONSIVE
==========================================================*/

@media(max-width:992px) {

    .ecom-hero {
        padding: 75px 0;
    }

    .ecom-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .ecom-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .ecom-hero-buttons {
        justify-content: center;
    }

    .ecom-trust {
        justify-content: center;
    }

    .ecom-hero-visual {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .ecom-benefit-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ecom-feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ecom-price-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .ecom-business-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ecom-process-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


@media(max-width:768px) {

    .ecom-hero {
        padding: 60px 0;
    }

    .ecom-hero-content h1 {
        font-size: 40px;
    }

    .ecom-hero-content p {
        font-size: 16px;
    }

    .ecom-hero-buttons {
        flex-direction: column;
    }

    .ecom-call-btn {
        width: 100%;
    }

    .ecom-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .ecom-benefit-grid {
        grid-template-columns: 1fr;
    }

    .ecom-feature-grid {
        grid-template-columns: 1fr;
    }

    .ecom-business-grid {
        grid-template-columns: 1fr;
    }

    .ecom-process-grid {
        grid-template-columns: 1fr;
    }

    .ecom-cta-content h2 {
        font-size: 32px;
    }

    .ecom-cta-buttons {
        flex-direction: column;
    }
}


@media(max-width:480px) {

    .ecom-hero-content h1 {
        font-size: 34px;
    }

    .ecom-trust {
        grid-template-columns: 1fr;
    }

        .ecom-trust div {
            align-items: center;
        }

    .ecom-store-banner {
        padding: 35px 22px;
    }

        .ecom-store-banner h3 {
            font-size: 25px;
        }

    .ecom-products {
        gap: 8px;
        padding: 15px;
    }

    .ecom-product-image {
        height: 75px;
    }

    .ecom-price strong {
        font-size: 34px;
    }
}
