/* ============================================
   CloudVPS — Единый файл стилей
   ============================================ */

/* --- Variables & Base --- */
:root {
    --primary: #454cee;
    --primary-dark: #353cdb;
    --primary-light: #eef0ff;
    --dark: #050c26;
    --text-secondary: #646b85;
    --bg-light: #f5f6fe;
    --radius: 24px;
    --radius-sm: 16px;
    --radius-xs: 12px;
    --shadow: 0 4px 24px rgba(5, 12, 38, 0.06);
    --shadow-hover: 0 12px 48px rgba(69, 76, 238, 0.12);
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: var(--bg-light);
    color: var(--dark);
}

/* --- Navbar --- */
.navbar {
    padding: 16px 0;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(5,12,38,0.04);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark) !important;
    letter-spacing: -0.5px;
}
.navbar-brand span {
    color: var(--primary);
}
.navbar .nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 8px 16px !important;
    border-radius: 10px;
    transition: all 0.2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--dark) !important;
    background: var(--bg-light);
}
.btn-login {
    font-weight: 600;
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 12px;
    border: 1.5px solid #e2e5f0;
    background: transparent;
    transition: all 0.2s;
}
.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-signup {
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    transition: all 0.2s;
}
.btn-signup:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(69,76,238,0.25);
}

/* --- Page Header (create-server, my-servers) --- */
.page-header {
    background: #fff;
    border-bottom: 1px solid #eef0f5;
    padding: 32px 0;
}
.page-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}
.page-header p {
    color: var(--text-secondary);
    margin: 4px 0 0;
}
.page-header .header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* --- Buttons: create-new, primary-custom, outline-custom --- */
.btn-create-new {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 14px;
    border: none;
    transition: all 0.3s;
}
.btn-create-new:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(69,76,238,0.25);
    color: #fff;
}
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 14px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(69,76,238,0.3);
    color: #fff;
}
.btn-outline-custom {
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 14px;
    border: 1.5px solid #e2e5f0;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ============================================
   INDEX.HTML — Hero
   ============================================ */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f5f6fe 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(69,76,238,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(69,76,238,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(69,76,238,0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
}
.hero-badge i {
    font-size: 1rem;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #7c82ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e5f0;
}
.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}
.hero-stat p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 4px 0 0;
}

/* ============================================
   INDEX.HTML — Sections common
   ============================================ */
section {
    padding: 80px 0;
}
.section-label {
    display: inline-block;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ============================================
   INDEX.HTML — Tariffs
   ============================================ */
.tariffs {
    background: var(--bg-light);
}
.tariff-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1.5px solid #eef0f5;
    transition: all 0.3s;
    position: relative;
    height: 100%;
}
.tariff-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.tariff-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(69,76,238,0.12);
}
.tariff-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tariff-card .tariff-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.tariff-card .tariff-price {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.tariff-card .tariff-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.tariff-card .tariff-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 8px 0 20px;
}
.tariff-card .tariff-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.tariff-card .tariff-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.tariff-card .tariff-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}
.tariff-card .btn-tariff {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
    border: 1.5px solid #e2e5f0;
    background: transparent;
    color: var(--dark);
    transition: all 0.2s;
}
.tariff-card .btn-tariff:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.tariff-card.popular .btn-tariff {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.tariff-card.popular .btn-tariff:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(69,76,238,0.25);
}

/* ============================================
   INDEX.HTML — Advantages
   ============================================ */
.advantage-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 1.5px solid #eef0f5;
    transition: all 0.3s;
    height: 100%;
}
.advantage-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.advantage-card .icon-box {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.advantage-card .icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
}
.advantage-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   INDEX.HTML — Features
   ============================================ */
.features {
    background: #fff;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.feature-item:hover {
    background: var(--primary-light);
}
.feature-item .fi-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #fff;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-item .fi-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}
.feature-item h6 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.feature-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   INDEX.HTML — CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a237e 100%);
    border-radius: var(--radius);
    padding: 64px;
    margin: 0 12px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(69,76,238,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}
.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}
.cta-section .btn-cta {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 14px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
}
.cta-section .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.cta-section .btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,0.2);
    font-size: 1rem;
    transition: all 0.3s;
}
.cta-section .btn-cta-outline:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

/* ============================================
   CREATE-SERVER.HTML — Step Indicator
   ============================================ */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 32px 0;
    position: relative;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e2e5f0;
    z-index: 0;
}
.step-indicator .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.step-indicator .step .step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.3s;
    margin-bottom: 8px;
}
.step-indicator .step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(69,76,238,0.3);
}
.step-indicator .step.completed .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.step-indicator .step .step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}
.step-indicator .step.active .step-label {
    color: var(--primary);
}
.step-indicator .step.completed .step-label {
    color: var(--dark);
}
.step-content {
    display: none;
}
.step-content.active {
    display: block;
}

/* ============================================
   CREATE-SERVER.HTML — Select Cards (Location / OS)
   ============================================ */
.select-card {
    background: #fff;
    border: 2px solid #eef0f5;
    border-radius: var(--radius-sm);
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
    position: relative;
}
.select-card:hover {
    border-color: var(--primary);
}
.select-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(69,76,238,0.1);
}
.select-card .check-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #e2e5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: transparent;
    transition: all 0.2s;
}
.select-card.selected .check-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.select-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.select-card.selected .card-icon {
    background: #fff;
}
.select-card h6 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}
.select-card .card-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}
.select-card .card-badge {
    display: inline-block;
    background: rgba(69,76,238,0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 100px;
    margin-top: 8px;
}

/* ============================================
   CREATE-SERVER.HTML — Config Cards
   ============================================ */
.config-card {
    background: #fff;
    border: 2px solid #eef0f5;
    border-radius: var(--radius-sm);
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
    position: relative;
}
.config-card:hover {
    border-color: var(--primary);
}
.config-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(69,76,238,0.1);
}
.config-card .popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.config-card .cfg-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.config-card .cfg-price {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.config-card .cfg-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.config-card .cfg-specs {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.config-card .cfg-specs li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.config-card .cfg-specs li i {
    color: var(--primary);
    font-size: 1rem;
    width: 18px;
}

/* ============================================
   CREATE-SERVER.HTML — Summary
   ============================================ */
.summary-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 1.5px solid #eef0f5;
    position: sticky;
    top: 100px;
}
.summary-card h5 {
    font-weight: 700;
    margin-bottom: 20px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eef0f5;
}
.summary-item:last-child {
    border-bottom: none;
}
.summary-item .si-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.summary-item .si-value {
    font-weight: 600;
    font-size: 0.9rem;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    margin-top: 8px;
    border-top: 2px solid var(--dark);
}
.summary-total .st-label {
    font-weight: 700;
    font-size: 1.1rem;
}
.summary-total .st-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}
.summary-total .st-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.btn-create {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    transition: all 0.3s;
    margin-top: 20px;
}
.btn-create:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(69,76,238,0.3);
}
.btn-create:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-next {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 14px;
    border: none;
    transition: all 0.3s;
}
.btn-next:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(69,76,238,0.25);
}
.btn-prev {
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 14px;
    border: 1.5px solid #e2e5f0;
    transition: all 0.2s;
}
.btn-prev:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   MY-SERVERS.HTML — Filters
   ============================================ */
.filters-bar {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 24px 0;
    border: 1px solid #eef0f5;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.filters-bar .form-select,
.filters-bar .form-control {
    border-radius: 12px;
    border: 1.5px solid #e2e5f0;
    font-size: 0.9rem;
    padding: 8px 16px;
    min-width: 160px;
}
.filters-bar .form-select:focus,
.filters-bar .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(69,76,238,0.1);
}
.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 4px;
}

/* ============================================
   MY-SERVERS.HTML — Server Cards
   ============================================ */
.server-card {
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1.5px solid #eef0f5;
    padding: 24px;
    transition: all 0.2s;
    margin-bottom: 16px;
}
.server-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.server-card .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.server-card .sc-name {
    font-weight: 700;
    font-size: 1.1rem;
}
.server-card .sc-name small {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-badge .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.status-badge.active {
    background: rgba(34,197,94,0.1);
    color: #16a34a;
}
.status-badge.active .status-dot {
    background: #16a34a;
}
.status-badge.stopped {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
}
.status-badge.stopped .status-dot {
    background: #dc2626;
}
.status-badge.suspended {
    background: rgba(245,158,11,0.1);
    color: #d97706;
}
.status-badge.suspended .status-dot {
    background: #d97706;
}
.server-card .sc-specs {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-top: 1px solid #eef0f5;
    border-bottom: 1px solid #eef0f5;
    margin-bottom: 12px;
}
.server-card .sc-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.server-card .sc-specs .spec-item i {
    color: var(--primary);
    font-size: 1rem;
}
.server-card .sc-specs .spec-item strong {
    color: var(--dark);
    font-weight: 600;
}
.server-card .sc-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.server-card .sc-actions .btn-action {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid #e2e5f0;
    background: transparent;
    color: var(--dark);
    transition: all 0.2s;
}
.server-card .sc-actions .btn-action:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.server-card .sc-actions .btn-action.danger:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: rgba(239,68,68,0.05);
}
.server-card .sc-actions .btn-action.primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.server-card .sc-actions .btn-action.primary:hover {
    background: var(--primary-dark);
}

/* ============================================
   MY-SERVERS.HTML — Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 2px dashed #e2e5f0;
}
.empty-state .empty-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary);
}
.empty-state h4 {
    font-weight: 700;
    margin-bottom: 8px;
}
.empty-state p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 24px;
}

/* ============================================
   Footer (общий для всех страниц)
   ============================================ */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    color: #fff;
}
.footer-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.footer-brand span {
    color: var(--primary);
}
.footer p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.footer h6 {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
}
.footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    margin-top: 48px;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}
.footer .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    margin-right: 8px;
    transition: all 0.2s;
}
.footer .social-links a:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 40px 24px; }
    .cta-section h2 { font-size: 1.6rem; }
}
@media (max-width: 767.98px) {
    body.index-page { overflow-x: hidden; }
    .hero { padding: 80px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 16px; }
    .hero-stat h3 { font-size: 1.5rem; }
    section { padding: 60px 0; }
    .section-title { font-size: 1.6rem; }
    .cta-section { padding: 32px 20px; }
    .cta-section h2 { font-size: 1.3rem; }
    .cta-section .btn-cta,
    .cta-section .btn-cta-outline { width: 100%; }
    .step-indicator .step .step-label { font-size: 0.7rem; }
    .summary-card { position: static; margin-top: 24px; }
    .page-header .header-actions { margin-top: 12px; }
    .server-card .sc-specs { gap: 12px; }
    .server-card .sc-header { flex-direction: column; gap: 8px; }
}
