/* =========================
   VIVATEH HVAC PREMIUM CLEAN v2
========================= */

.vht-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #ffffff;
    color: #111827;
    line-height: 1.9;
    max-width: 1040px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* HERO */
.hero {
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0b1220;
    letter-spacing: -0.6px;
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 850px;
}

/* kicker */
.kicker {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 12px;
}

/* TEXT */
.vht-page p {
    font-size: 17px;
    color: #374151;
    margin-bottom: 18px;
    max-width: 760px;
}

/* TITLURI */
.vht-page h2 {
    font-size: 30px;
    margin-top: 60px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #0b1220;
    line-height: 1.3;
}

.vht-page h3 {
    font-size: 21px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #111827;
}

/* IMAGINI PREMIUM CU DIMENSIUNI MINIME */
.vht-page img {
    width: 100%;
    max-width: 700px; /* limiteaza dimensiunea */
    height: auto; /* pastreaza proportiile */

    margin: 30px auto; /* centrare */
    display: block;

    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.vht-page img:hover {
    transform: scale(1.02);
}
/* SECTIUNI */
.vht-page section {
    margin-bottom: 65px;
}

/* SEPARATOR SUBTIL */
.vht-page section:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 40px;
}

/* LISTE (daca le folosesti) */
.vht-page ul {
    padding-left: 18px;
    margin: 15px 0;
}

.vht-page li {
    margin-bottom: 8px;
    color: #374151;
}

/* LINKS */
.vht-page a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.vht-page a:hover {
    text-decoration: underline;
}

/* OPTIONAL: highlight text */
.vht-page strong {
    color: #0b1220;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {

    .vht-page {
        padding: 35px 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .vht-page h2 {
        font-size: 23px;
    }

    .vht-page p {
        font-size: 16px;
    }
}