   /* Глобальный сброс для исключения вылетов за границы */
    .step-container, .step-container *, .step-container *::before, .step-container *::after {
        box-sizing: border-box !important;
    }

    .step-container {
        padding: 0; 
        margin: 0 auto; 
        width: 100%; 
        max-width: 100%;
        padding-bottom: 100px; 
        overflow-x: hidden;
    }
    
    /* Стили основной карточки */
    .card-main {
        background: #fff; 
        border: 1px solid #e0e0e0; 
        border-radius: 12px; 
        overflow: hidden; 
        margin: 10px;
        width: calc(100% - 20px);
    }

    .card-table { 
        width: 100%; 
        border-collapse: collapse; 
        table-layout: fixed; /* Фиксирует ширину колонок */
    }

    .card-table td { 
        padding: 15px; 
        border-bottom: 1px solid #f2f2f2; 
        vertical-align: middle;
    }

    .card-table tr:last-child td { border-bottom: none; }

    .card-table td:first-child {
        width: 60px; 
        text-align: center;
    }

    .info-label {
        font-size: 11px; 
        color: #000; 
        font-weight: 600; 
        text-transform: uppercase; 
        display: block; 
        letter-spacing: 0.5px;
    }

    .info-value {
        font-weight: 700; 
        color: #333; 
        font-size: 17px; 
        display: block;
        word-wrap: break-word; /* Чтобы длинные адреса не ломали верстку */
    }

    /* Кнопка и футер */
    .mobile-fixed-footer {
        position: fixed; 
        bottom: 0; 
        left: 0; 
        right: 0;
        background: #fff; 
        padding: 15px; 
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1); 
        z-index: 999;
    }

    .btn-submit {
        background-color: #1a6d8a; 
        color: #fff; 
        border: none; 
        border-radius: 8px; 
        text-transform: uppercase; 
        padding: 16px 0; 
        font-size: 14px; 
        font-weight: bold; 
        width: 100%; 
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media (min-width: 768px) {
        .step-container { width: 600px; margin: 0 auto; padding-top: 20px; }
        .mobile-fixed-footer { position: relative; box-shadow: none; padding: 20px 0; }
        .card-main { margin: 0 0 15px 0; width: 100%; }
    }
	
	.step-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    padding: 10px;
    padding-bottom: 110px;
}

.fields-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #cce3ff;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.input-group-custom {
    padding: 12px 15px;
    border-bottom: 1px solid #eef4fb;
}
.input-group-custom:last-child { border-bottom: none; }

/* ОБЕРТКА ДЛЯ ДОМЕНА — ВСЕГДА АКТИВНАЯ СИНЯЯ РАМКА */
.domain-border-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #0056b3; /* Сразу синий цвет */
    border-radius: 10px;
    padding: 10px 14px;
    background: #fff;
    width: 100%;
    /* Добавляем постоянное легкое свечение */
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.08);
}

.input-wrapper-custom {
    display: flex;
    align-items: center;
    width: 100%;
}

.field-input {
    border: none;
    padding: 0;
    flex: 1;
    outline: none;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    background: transparent;
    min-width: 0;
}

/* Доменная часть */
.domain-suffix-brand {
    color: #000; /* Сделал чуть насыщеннее в тон рамке */
    font-weight: 600;
    font-size: 22px;
    margin-left: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-icon-box {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    flex-shrink: 0;
}

.field-icon {
    font-size: 18px;
    color: #0056b3;
    margin-right: 12px;
    flex-shrink: 0;
}

.field-label-text {
    color: #888;
    font-size: 14px;
    margin-right: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Сетка для Zip/ISO */
.dual-fields-container {
    display: flex; 
    border-bottom: 1px solid #eef4fb;
}

@media (max-width: 480px) {
    .dual-fields-container { flex-direction: column; }
    .dual-fields-container > div {
        border-right: none !important;
        border-bottom: 1px solid #eef4fb;
        width: 100% !important;
    }
}

.mobile-fixed-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}