/* ==========================================================================
   Vittur.by — Аренда буса page-specific styles
   Подключается ПОСЛЕ vittur-shared.css. Содержит только стили,
   уникальные для страницы аренды (hero-rent, fleet, cases).
   ========================================================================== */

/* ========== HERO RENT ========== */
.hero-rent {
    padding: 130px 0 60px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.breadcrumbs + .hero-rent { padding-top: 40px; }

.hero-rent::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-rent .container { position: relative; z-index: 1; }

.hero-rent h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.hero-rent h1 .accent { color: var(--accent); }

.hero-rent-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ========== FLEET ========== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--transition);
}

.fleet-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 212, 170, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.fleet-card:hover::before { opacity: 1; }

.fleet-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.fleet-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fleet-badge {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.fleet-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.fleet-feature-icon {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.fleet-cta { margin-top: 24px; }

/* ========== USE CASES ========== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all var(--transition);
}

.case-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 255, 255, 0.1);
}

.case-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.case-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.case-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .fleet-grid,
    .cases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-rent { padding: 100px 0 44px; }
    .breadcrumbs + .hero-rent { padding-top: 26px; }
    .hero-rent::before { width: 600px; height: 600px; top: -100px; }
    .hero-rent h1 { font-size: 28px; line-height: 1.2; margin-bottom: 14px; }
    .hero-rent-subtitle { font-size: 15px; line-height: 1.6; margin-bottom: 24px; padding: 0 2px; }

    .fleet-grid { gap: 14px; }
    .fleet-card { padding: 24px 20px; border-radius: var(--radius-md); }
    .fleet-icon { width: 46px; height: 46px; font-size: 22px; margin-bottom: 16px; }
    .fleet-card h3 { font-size: 18px; line-height: 1.3; }
    .fleet-badge { font-size: 12px; padding: 4px 12px; margin-bottom: 12px; }
    .fleet-feature { font-size: 13.5px; line-height: 1.5; }
    .fleet-cta { margin-top: 18px; }

    .cases-grid { grid-template-columns: 1fr; gap: 12px; }
    .case-card { padding: 18px; gap: 14px; border-radius: var(--radius-md); }
    .case-icon { width: 44px; height: 44px; font-size: 20px; border-radius: 12px; }
    .case-card h3 { font-size: 15px; margin-bottom: 3px; }
    .case-card p { font-size: 13px; line-height: 1.5; }
}

@media (max-width: 480px) {
    .hero-rent { padding: 92px 0 36px; }
    .breadcrumbs + .hero-rent { padding-top: 22px; }
    .hero-rent h1 { font-size: 25px; }
    .fleet-card { padding: 20px 16px; }
    .fleet-card h3 { font-size: 17px; }
}

@media (max-width: 360px) {
    .hero-rent h1 { font-size: 22px; }
    .case-card { padding: 14px; gap: 10px; }
    .case-icon { width: 40px; height: 40px; font-size: 18px; }
}
