/* -------------------------------------
   Díjszabás oldal
   ------------------------------------- */

.small-hero {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem 2rem;
    border-bottom: 3px solid var(--red);
}

.small-hero h1 {
    color: var(--red);
    margin-bottom: 0.5rem;
}

.small-hero p {
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* --- Árkártyák --- */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.price-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem 1.2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--red);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Ikon a kártya tetején --- */
.price-card .icon {
    color: var(--red);
    margin-bottom: 1rem;
}

.price-card h3 {
    color: #222;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.price-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.price-card .price {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

/* --- Gomb stílus --- */
.btn-offer {
    display: inline-block;
    margin-top: 0.5rem;
    background: var(--red);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.btn-offer:hover {
    background: #b80000;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* --- Mobil nézet --- */
@media (max-width: 600px) {
    .price-card {
        padding: 1.5rem 1rem;
    }
}
