:root {
    --mega-yellow: #FFC73A;
    --mega-orange: #FC7557;
    --mega-blue: #2D65F2;
    --mega-bg: #F9FBFD;
}

@font-face {
    font-family: 'Nekst';
    src: url('/assets/fonts/Nekst-SemiBold-Web.woff2') format('woff2'),
         url('/assets/fonts/Nekst-SemiBold-Web.woff') format('woff'),
         url('/assets/fonts/Nekst-SemiBold-Web.ttf') format('truetype'),
         url('/assets/fonts/Nekst-SemiBold-Web.eot') format('embedded-opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



body {
    background: var(--mega-bg);
}

/* Typography (Nekst for headings, Manrope for body) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nekst', 'Manrope', ui-sans-serif, system-ui, sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.2;
}
.font-nekst {
    font-family: 'Nekst', 'Manrope', ui-sans-serif, system-ui, sans-serif !important;
}
p, span, div, a, li, td, th {
    font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif !important;
}

label, input, textarea, select {
    font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif !important;
    color: #333;
}

/* Buttons and badges use Nekst */
button, .btn, .button, .badge, .tag, .chip, .pill,
.mega-button, .mega-badge {
    font-family: 'Nekst', 'Manrope', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.mega-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.mega-button-primary {
    background: var(--mega-yellow);
    color: #111827;
    box-shadow: 0 10px 20px rgba(255, 199, 58, 0.25);
}

.mega-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(255, 199, 58, 0.35);
}

.mega-button-secondary {
    background: #111827;
    color: #ffffff;
}

.mega-nav-link {
    color: #374151;
    font-weight: 600;
    transition: color 0.2s ease;
}

.mega-nav-link:hover {
    color: var(--mega-blue);
}

.mega-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mega-badge {
    background: rgba(45, 101, 242, 0.1);
    color: var(--mega-blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.mega-link {
    margin-top: auto;
    font-weight: 700;
    color: var(--mega-blue);
}

.mega-step {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.mega-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: var(--mega-yellow);
    font-weight: 700;
}
