:root {
    --primary: #ffc107;
    --dark: #111827;
    --soft-dark: #1f2937;
    --light-bg: #f8fafc;
    --text-muted: #64748b;
}

body {
    background: var(--light-bg);
    color: #111827;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--primary);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.hero-section {
    min-height: 78vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.28), transparent 32%),
        linear-gradient(135deg, #111827 0%, #1f2937 55%, #0f172a 100%);
    color: white;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fde68a;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.6px;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 620px;
    line-height: 1.8;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    padding: 26px;
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.13);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #fff7cc;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.section-title {
    font-weight: 900;
    letter-spacing: -0.8px;
}

.page-section {
    padding: 72px 0;
}

.footer-section {
    background: white;
    border-top: 1px solid #e5e7eb;
}

.za-footer {
    background: #1f2428;
    color: #ffffff;
    padding: 56px 0 28px;
}

.za-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.za-footer a:hover {
    color: #ffc107;
}

.footer-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #ffc107;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
}