.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 70px 0 50px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--web-dark);
}

.hero p {
    font-size: 1.08rem;
    color: #4b5563;
    max-width: 650px;
}

.hero-visual {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--web-dark);
}

.caravan-card {
    border: 1px solid var(--web-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    background: #fff;
}

.caravan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.caravan-card img,
.caravan-noimg {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #f3f4f6;
}

.caravan-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 500;
}

.param-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    font-size: 0.95rem;
    color: #4b5563;
}

.feature-box {
    border: 1px solid var(--web-border);
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    background: #fff;
}
