/* Talents.my - Landing Page Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #faf5ff 100%);
    min-height: 100vh;
    color: #111827;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo span {
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.nav-name {
    font-weight: 700;
    font-size: 20px;
    color: #111827;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #111827;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Hero */
.hero {
    padding: 80px 16px;
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 60px;
    }
}

.hero h1 span {
    color: #2563eb;
}

.hero p {
    font-size: 20px;
    color: #6b7280;
    max-width: 672px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-hero-primary {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-hero-primary:hover {
    background: #1d4ed8;
}

.btn-hero-secondary {
    background: white;
    color: #374151;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
}

.btn-hero-secondary:hover {
    background: #f9fafb;
}

/* Stats Section */
.stats {
    background: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 48px 16px;
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #6b7280;
    margin-top: 4px;
}

/* Section */
.section {
    padding: 80px 16px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 36px;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    max-width: 672px;
    margin: 0 auto 64px;
}

/* Cards Grid */
.cards-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #dbeafe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card p {
    color: #6b7280;
}

/* Platforms */
.platforms {
    background: #f9fafb;
    padding: 80px 16px;
}

.platforms-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .platforms-title {
        font-size: 36px;
    }
}

.platforms-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 48px;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.platform-item {
    background: white;
    padding: 16px 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-item svg {
    width: 24px;
    height: 24px;
}

.platform-item span {
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 80px 16px;
    text-align: center;
}

.cta-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 36px;
    }
}

.cta-text {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 48px 16px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo span {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.footer-name {
    color: white;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 14px;
}

/* Gray Background Section */
.section-gray {
    background: #f9fafb;
}

/* Inline SVG for platforms */
.tiktok-icon { color: #000; }
.instagram-icon { color: #e1306c; }
.youtube-icon { color: #ff0000; }
.facebook-icon { color: #1877f2; }
