:root {
    --v13-red: #e30613;
    --v13-dark: #121416;
    --v13-gray: #1e2124;
    --v13-text-dim: #9ca3af;
    --v13-transition: all 0.3s ease;
}

.v13-footer { background: var(--v13-dark); color: #fff; font-family: 'Ubuntu', sans-serif; }
.v13-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ВЕРХНЯЯ ЧАСТЬ */
.v13-footer-top { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.v13-footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }

.v13-form-title {
    color: #ffffff !important; /* Заголовок должен сиять */
}
.v13-form-title span {
    color: #ff1a1a !important; /* Более сочный красный для темного фона */
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.3); /* Легкое свечение добавит глубины */
}

.v13-input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.v13-input, .v13-textarea {
    background: var(--v13-gray);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 18px 25px;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: var(--v13-transition);
    width: 100%;
}
.v13-textarea { height: 120px; resize: none; margin-bottom: 25px; }
.v13-input:focus, .v13-textarea:focus { border-color: var(--v13-red); outline: none; background: #25282c; }

.v13-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.v13-checkbox { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--v13-text-dim); cursor: pointer; }
.v13-checkbox a { color: #fff; text-decoration: none; border-bottom: 1px solid var(--v13-red); }

.v13-submit-btn {
    background: var(--v13-red);
    color: #fff;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--v13-transition);
}
.v13-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(227, 6, 19, 0.4); }

/* КАРТОЧКА КОНСУЛЬТАНТА */
.v13-consult-card {
    background: var(--v13-gray);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.v13-consult-photo { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin-bottom: 20px; border: 3px solid var(--v13-red); }
.v13-consult-photo img { width: 100%; height: 100%; object-fit: cover; }
.v13-consult-label { font-size: 12px; text-transform: uppercase; color: var(--v13-red); font-weight: 700; margin-bottom: 10px; }
.v13-consult-name { 
    color: #ffffff !important;
    font-weight: 700;
}
.v13-consult-link { font-size: 22px; font-weight: 700; color: #ffffff; text-decoration: none; display: block; margin-bottom: 5px; }
.v13-consult-mail { 
    color: #9ca3af !important; 
}

.v13-social-mini { display: flex; gap: 10px; margin-top: 25px; }
.v13-sm-item { padding: 8px 15px; border-radius: 50px; font-size: 12px; font-weight: 700; text-decoration: none; color: #fff; background: rgba(255,255,255,0.05); transition: 0.3s; }
.v13-sm-item.wa:hover { background: #25D366; }
.v13-sm-item.tg:hover { background: #0088cc; }

/* НИЖНЯЯ ЧАСТЬ */
.v13-bottom-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; text-align: center; }
.v13-footer-bottom {
    color: #cccccc !important; /* Текст станет читаемым, но не будет отвлекать от главного */
}
.v13-b-phone {
    color: #ffffff !important; /* Основной телефон всегда белый */
}
.v13-bottom-logo img { height: 35px; margin-bottom: 5px; }
.v13-bottom-logo span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }
.v13-bottom-legal { text-align: right; }
.v13-social-main { display: flex; justify-content: flex-end; gap: 20px; margin-bottom: 15px; }
.v13-social-main a { color: #fff; text-decoration: none; font-weight: 700; }
.v13-policy { color: var(--v13-text-dim); text-decoration: none; font-size: 12px; }

@media (max-width: 1024px) {
    .v13-footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .v13-bottom-grid { grid-template-columns: 1fr; gap: 40px; }
    .v13-bottom-legal { text-align: center; }
    .v13-social-main { justify-content: center; }
}