/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

/* Full Page */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(15, 52, 96, 0.85) 100%),
                url('hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Text */
.hero-text {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: #f8a024;
}

.description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Partner Section */
.partner-section {
    text-align: center;
}

.partner-section h2 {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.partner-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    min-width: 280px;
}

.partner-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #f8a024;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-info {
    text-align: center;
}

.partner-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a2e;
}

.partner-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.partner-link {
    font-size: 0.8rem;
    color: #f8a024;
    font-weight: 500;
}

.partner-card:hover .partner-link {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
}

.footer p {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
    .partner-grid {
        gap: 1rem;
    }

    .partner-card {
        min-width: 260px;
    }
}

@media (max-width: 600px) {
    .content {
        padding: 2rem 1rem;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .partner-grid {
        flex-direction: column;
        align-items: center;
    }

    .partner-card {
        width: 100%;
        max-width: 300px;
        padding: 1.5rem 1.25rem;
    }

    .partner-logo {
        width: 140px;
        height: 50px;
    }

    .footer {
        margin-top: 2rem;
    }
}
