/* ------------------- */


.hero-section {
    background-color: #f8fafc;
}

.check-icon {
    background: #e6f9ef;
    color: #16a34a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.dashboard-card {
    max-width: 480px;
    margin-left: auto;
}

.stat-box {
    background: #f3f6ff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.chart-area {
    height: 140px;
}

.bar {
    width: 60px;
    border-radius: 14px;
    background: linear-gradient(180deg, #4f73ff, #2346e8);
}

.bar.h-100 {
    height: 100%;
}

.bar.h-75 {
    height: 75%;
}

.bar.h-50 {
    height: 50%;
}

.bar.h-25 {
    height: 25%;
}

.bar.h-15 {
    height: 15%;
}

@media (max-width: 991px) {
    .dashboard-card {
        margin: auto;
    }
}

/* ------------------------------- */

.why-choose {
    background-color: #f8fafc;
}

.feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: #eef2ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: auto;
}

/* ------------------------------- */


.how-it-works {
    background-color: #f8fafc;
}

.step-box {
    padding: 20px;
}

.step-icon {
    font-size: 36px;
}

.shipping-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.shipping-btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 14px;
}

/* Custom purple button */
.btn-purple {
    background-color: #8b5cf6;
    color: #fff;
}

.btn-purple:hover {
    background-color: #7c3aed;
    color: #fff;
}

/* -------------------------------------- */

.integration-section {
    background-color: #f8fafc;
}

.logo-card {
    background: #ffffff;
    border-radius: 18px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}


.api-inte-logo-card{
    background: #ffffff;
    border-radius: 18px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.api-inte-logo-card img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}
.logo-card img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

.api-inte-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ------------------------------- */

.pricing-section {
    background: #f8fafc;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.pricing-card.popular {
    border: 3px solid #1f4cff;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7a00;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.price {
    font-weight: 800;
    margin-top: 15px;
}

.price span {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.rate {
    font-size: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Full-width CTA */
.cta-section {
    width: 100%;
    background: #1146c6;
    /* close match to image */
    padding: 80px 20px;
}

.cta-title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

.cta-subtitle {
    color: #e6ecff;
    font-size: 18px;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Orange primary button */
.btn-orange {
    background: #ff7a00;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
}

.btn-orange:hover {
    background: #e96f00;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}