.pricing-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
}

/* Card */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

/* Highlight popular */
.pricing-card.popular {
    border: 2px solid #4CAF50;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* Price */
.price {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.price span {
    font-size: 16px;
    color: #777;
}

.annual {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* Features */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    padding: 6px 0;
    color: #555;
}

/* Button */
.pricing-card button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #4CAF50;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.pricing-card button:hover {
    background: #43a047;
}

.gallery-section {
    padding: 80px 20px;
    background: #fff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    max-width: 1200px;
    margin: 40px auto 0;
}

/* Image container */
.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Optional overlay */
.gallery-item::after {
    content: "Ver";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phones */
@media (max-width: 500px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}