/* Colocation — banner, scroll offset */
.hosting-page--colocation {
    --hp-accent: #ff9c00;
    --hp-accent-dark: #e68a00;
    --hp-accent-glow: rgba(255, 156, 0, 0.25);
    --hp-dark: #2c3e50;
    --hp-muted: #6b7280;
}

.hosting-page--colocation .hp-hero {
    background-image: url('../img/colocation-banner.jpg');
    background-color: #2c3e50;
}

.hosting-page--colocation #genel-ozellikler,
.hosting-page--colocation #kabinler,
.hosting-page--colocation #servisler,
.hosting-page--colocation #sss,
.hosting-page--colocation #contact {
    scroll-margin-top: 130px;
}

/* 1U barındırma kartı */
.col-1u-section {
    padding: 56px 0;
    background: #f4f6f9;
}

.col-1u-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
}

.col-1u-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-bottom: 3px solid var(--hp-accent, #ff9c00);
}

.col-1u-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hp-accent, #ff9c00);
    background: rgba(255, 156, 0, 0.15);
    border: 1px solid rgba(255, 156, 0, 0.35);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 8px;
}

.col-1u-card__title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.col-1u-card__pricing {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.col-1u-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-width: 0;
}

.col-1u-card__price-value {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.col-1u-card__price-period {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.col-1u-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 170px;
    padding: 16px 32px;
    background: var(--hp-accent, #ff9c00);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--hp-accent-glow, rgba(255, 156, 0, 0.35));
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.col-1u-card__btn:hover {
    background: var(--hp-accent-dark, #e68a00);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--hp-accent-glow, rgba(255, 156, 0, 0.45));
    color: #fff !important;
    text-decoration: none;
}

.col-1u-card__btn i {
    font-size: 14px;
}

.col-1u-card__body {
    padding: 28px;
}

.col-1u-card__intro {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.col-1u-specs {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    overflow: hidden;
}

.col-1u-specs td {
    width: 50%;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    border: 1px solid #e8edf2;
    vertical-align: middle;
}

.col-1u-specs tr:nth-child(even) td {
    background: #f8fafc;
}

.col-1u-specs td i {
    color: var(--hp-accent, #ff9c00);
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

.col-1u-specs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hp-accent-dark, #e68a00) !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.col-1u-specs-link:hover {
    color: var(--hp-accent, #ff9c00) !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .col-1u-section {
        padding: 40px 0;
    }

    .col-1u-card__header {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .col-1u-card__pricing {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .col-1u-card__price {
        justify-content: center;
    }

    .col-1u-card__price-value {
        font-size: 26px;
    }

    .col-1u-card__btn {
        width: 100%;
        min-width: 0;
        padding: 18px 24px;
    }

    .col-1u-card__body {
        padding: 20px;
    }

    .col-1u-specs,
    .col-1u-specs tbody,
    .col-1u-specs tr,
    .col-1u-specs td {
        display: block;
        width: 100%;
    }

    .col-1u-specs tr {
        margin-bottom: 0;
    }

    .col-1u-specs td {
        border-bottom: none;
    }

    .col-1u-specs tr + tr td:first-child {
        border-top: none;
    }
}
