/* BASE */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    background: linear-gradient(to bottom, #f5f5f7, #eaeaf0);
}

/* SECTION */
.pricing-section {
    padding: 100px 20px;
    text-align: center;
}

.subtitle {
    color: #86868b;
    font-size: 14px;
}

.title {
    font-size: 42px;
    font-weight: 600;
    margin: 10px 0 70px;
    color: #1d1d1f;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* CARD */
.card {
    position: relative;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 460px;
    text-align: left;

    transition: all 0.35s ease;

    box-shadow: 
        0 10px 30px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

/* HOVER */
.card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #0071e3, #42a1ff);
    box-shadow: 0 30px 80px rgba(0,113,227,0.25);
}

/* TITLE */
.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* PRICE */
.price {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #1d1d1f;
}

/* LABEL */
.plan-label,
.price-sub {
    font-size: 13px;
    color: #86868b;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 20px 0;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.features li {
    font-size: 14px;
    padding: 10px 0;
    color: #515154;
    display: flex;
    align-items: center;
}

/* CHECK ICON */
.features li::before {
    content: "✓";
    margin-right: 10px;
    color: #0071e3;
    font-size: 12px;
}

/* HIGHLIGHT */
.features li.highlight {
    font-weight: 600;
    color: #0071e3;
}

/* MUTED */
.features li.muted {
    color: #999;
    font-size: 13px;
}

/* BUTTON */
.card button {
    margin-top: auto;
    background: #0071e3;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #005bb5;
}

/* BADGE */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    color: #ff3b30;
    font-weight: 600;
}

/* HOVER TEXT FIX */
.card:hover h3,
.card:hover .price,
.card:hover .features li,
.card:hover .plan-label,
.card:hover .price-sub {
    color: #fff;
}

.card:hover .features li::before {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .title {
        font-size: 30px;
    }
}
/* logo scrolling */
/* LOGO SLIDER */
.client-logos {
    overflow: hidden;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    width: max-content; /* 🔥 THIS FIXES SCROLL */
    animation: scroll 60s linear infinite;
}

.logo-track img {
    width: 180px;
    margin: 0 25px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

/* Hover */
.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* CLIENT LOGOS GRID */
.client-img {
    width: 100%;
    max-width: 120px;
    margin: auto;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.client-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}