/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: white;
    padding: 3rem 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    border-radius: 1rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
}

.hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
}

.hero-badges .badge .icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.hero-badges .badge span:last-child {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* ===========================
   RESPONSIVE - Tablets
   =========================== */
@media (max-width: 1024px) {
    .hero {
        padding: 2.5rem 0;
    }

    .hero-wrapper {
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .hero-badges .badge .icon {
        font-size: 1.5rem;
    }

    .hero-badges .badge span:last-child {
        font-size: 0.85rem;
    }
}

/* ===========================
   RESPONSIVE - Mobile (iPad)
   =========================== */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 250px;
        order: -1;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn {
        flex: 1;
        min-width: 140px;
    }

    .hero-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .hero-badges .badge {
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .hero-badges .badge .icon {
        font-size: 1.5rem;
    }

    .hero-badges .badge span:last-child {
        font-size: 0.9rem;
    }
}

/* ===========================
   RESPONSIVE - Small Mobile
   =========================== */
@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0;
    }

    .hero-wrapper {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .hero-image {
        height: 200px;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .btn-small {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero-badges {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .hero-badges .badge {
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .hero-badges .badge .icon {
        font-size: 1.25rem;
        min-width: 30px;
    }

    .hero-badges .badge span:last-child {
        font-size: 0.75rem;
        font-weight: 600;
    }
}

/* ===========================
   RESPONSIVE - Extra Small
   =========================== */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .hero-image {
        height: 150px;
    }

    .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .hero-badges {
        padding: 1rem;
        gap: 0.5rem;
    }

    .hero-badges .badge .icon {
        font-size: 1.1rem;
    }

    .hero-badges .badge span:last-child {
        font-size: 0.7rem;
    }
}