.kk-cities-section {
    background: #fff;
    padding: 3rem 0 3.5rem;
}

.kk-cities-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.kk-cities-header h2 {
    font-size: clamp(1.65rem, 3.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.kk-cities-header p {
    margin-top: 0.6rem;
    font-size: 1rem;
    color: #6b7280;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.kk-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.kk-cities-col {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 1.1rem 1rem 0.75rem;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.kk-cities-col__head {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #f3f4f6;
}

.kk-cities-col__bar {
    width: 4px;
    border-radius: 999px;
    align-self: stretch;
    min-height: 42px;
    flex-shrink: 0;
}

.kk-cities-col--primary .kk-cities-col__bar { background: #dc2626; }
.kk-cities-col--secondary .kk-cities-col__bar { background: #ef4444; }
.kk-cities-col--deep .kk-cities-col__bar { background: #b91c1c; }
.kk-cities-col--soft .kk-cities-col__bar { background: #f87171; }

.kk-cities-col__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
}

.kk-cities-col__sub {
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.35;
}

.kk-cities-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kk-cities-row {
    border-bottom: 1px solid #f3f4f6;
}

.kk-cities-row:last-child {
    border-bottom: none;
}

.kk-cities-row a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0.15rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.12s ease;
    border-radius: 8px;
}

.kk-cities-row a:hover {
    background: #fef2f2;
}

.kk-cities-row__left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.kk-cities-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    flex-shrink: 0;
}

.kk-cities-col--primary .kk-cities-dot { background: #dc2626; }
.kk-cities-col--secondary .kk-cities-dot { background: #ef4444; }
.kk-cities-col--deep .kk-cities-dot { background: #b91c1c; }
.kk-cities-col--soft .kk-cities-dot { background: #f87171; }

.kk-cities-rank {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: #dc2626;
    flex-shrink: 0;
}

.kk-cities-row__name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kk-cities-row__meta {
    text-align: right;
    flex-shrink: 0;
}

.kk-cities-row__price {
    font-size: 0.82rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.kk-cities-row__subprice {
    margin-top: 0.1rem;
    font-size: 0.72rem;
    color: #9ca3af;
}

.kk-cities-row__yoy {
    font-size: 0.82rem;
    font-weight: 800;
    color: #dc2626;
}

.kk-cities-row__payback {
    margin-top: 0.1rem;
    font-size: 0.72rem;
    color: #9ca3af;
}

.kk-cities-row__chevron {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.kk-cities-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.kk-cities-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    border: 1.5px solid #dc2626;
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
    transition: all 0.15s ease;
}

.kk-cities-cta a:hover {
    background: #fef2f2;
}

@media (max-width: 1100px) {
    .kk-cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .kk-cities-grid {
        grid-template-columns: 1fr;
    }

    .kk-cities-section {
        padding: 2.25rem 0 2.75rem;
    }
}
