/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

/* Variables */
:root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #f5576c 100%);
    --card-bg: #ffffff;
}

/* HERO */
.hero-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo-container img {
    max-width: 500px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* BUTTON */
.contact-btn {
    padding: 1rem 2.5rem;
    background: #1a202c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    background: #2d3748;
}

/* BRANDS */
.brands-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--card-bg);
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.brand-card img {
    max-width: 100%;
    height: auto;
}

.coming-soon {
    color: #cbd5e0;
    font-size: 0.9rem;
    text-align: center;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
        min-height: 50vh;
    }

    .logo-container img {
        max-width: 300px;
    }

    .brands-section {
        padding: 3rem 1rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        padding: 2rem;
        min-height: 150px;
    }
}