.pricing-section {
    background: #F7FAFB;
    border-top: 1px solid #ECF1F2;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E9EEF0;
    border-radius: 999px;
    padding: 4px;
    margin: 26px auto 10px;
}

.pricing-toggle-btn {
    border: none;
    background: transparent;
    color: #5A6268;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.pricing-toggle-btn.active {
    background: #fff;
    color: #0B0E11;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.pricing-note {
    text-align: center;
    font-size: 13.5px;
    color: #7A828A;
    margin: 0 0 34px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.plan-card {
    position: relative;
    border-radius: 18px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
}

.plan-card.light {
    background: #fff;
    color: #0B0E11;
    border: 1px solid #E6EAEC;
}

.plan-card.dark {
    background: #0B0E11;
    color: #fff;
    border: 1px solid #0B0E11;
}

.plan-popular {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #F2675A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-name {
    font-family: 'Archivo';
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.04em;
}

.plan-name.teal {
    color: #0B7C84;
}

.plan-name.cyan {
    color: #7FE3F0;
}

.plan-blurb {
    font-size: 12.5px;
    margin: 3px 0 16px;
}

.plan-blurb.light {
    color: #6A727A;
}

.plan-blurb.dark {
    color: #B7C0C6;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-price .currency {
    font-size: 13px;
    font-weight: 600;
}

.plan-price .currency.light {
    color: #6A727A;
}

.plan-price .currency.dark {
    color: #B7C0C6;
}

.plan-price .amount {
    font-family: 'Archivo';
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -0.02em;
}

.plan-price .period {
    font-size: 13px;
    font-weight: 600;
}

.plan-price .period.light {
    color: #6A727A;
}

.plan-price .period.dark {
    color: #B7C0C6;
}

.plan-per {
    font-size: 12px;
    margin: 5px 0 18px;
}

.plan-per.light {
    color: #6A727A;
}

.plan-per.dark {
    color: #B7C0C6;
}

.plan-line {
    height: 1px;
    margin-bottom: 16px;
}

.plan-line.light {
    background: #EEF1F3;
}

.plan-line.dark {
    background: rgba(255, 255, 255, 0.14);
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.plan-feature .check {
    color: #0B7C84;
}

.plan-feature .check-cyan {
    color: #7FE3F0;
}

.plan-feature .muted {
    color: #AEB6BC;
}

.plan-feature .muted-dark {
    color: #8A9298;
}

.plan-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px;
    border-radius: 11px;
    transition: transform 0.2s;
}

.plan-btn:hover {
    transform: translateY(-1px);
}

.plan-btn.dark {
    background: #0B0E11;
    color: #fff;
}

.plan-btn.orange {
    background: #F2675A;
    color: #fff;
}

.enterprise-card {
    margin-top: 16px;
    background: #fff;
    border: 1px solid #E6EAEC;
    border-radius: 18px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.enterprise-card .info {
    flex: 1;
    min-width: 260px;
}

.enterprise-card .info h3 {
    font-family: 'Archivo';
    font-weight: 800;
    font-size: 18px;
    color: #0B0E11;
}

.enterprise-card .info p {
    font-size: 14.5px;
    color: #566069;
    margin: 6px 0 0;
}

.enterprise-card .right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.enterprise-card .right .number {
    font-family: 'Archivo';
    font-weight: 800;
    font-size: 22px;
}

.enterprise-card .right .desc {
    font-size: 12.5px;
    color: #7A828A;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-top: 12px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .pricing-grid .plan-card {
        flex: 0 0 190px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {

    .enterprise-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;

        overflow: visible;

    }

    .enterprise-card .info {
        width: 100%;
        min-width: 0;

    }

    .enterprise-card .info p {
        font-size: 10px;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
        line-height: 1.4;
    }

}