@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* StaffYP Design System - Main Primary Color: Logo Yellow (#FED046) */
:root {
    --brand-yellow: #FED046;
    --brand-yellow-hover: #E5B82E;
    --brand-yellow-dark: #D9A71E;
    --brand-yellow-light: rgba(254, 208, 70, 0.2);
    
    --brand-blue: #016EB3;
    --brand-blue-hover: #01568C;
    --brand-blue-light: rgba(1, 110, 179, 0.08);

    --brand-dark: #292A25;
    --brand-dark-soft: #1E293B;
    --text-body: #475569;
    --text-muted: #64748B;
    --bg-light: #FFFDF5;
    --border-color: #E2E8F0;
}

* {
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: var(--text-body);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ── Navbar ── */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-color);
    padding: 0.9rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--brand-dark) !important;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted) !important;
    padding: 0.5rem 0.9rem !important;
    transition: color 0.15s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-blue) !important;
}

/* ── Hero ── */
.hero {
    padding: 90px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    background-color: var(--brand-yellow-light);
    border: 1px solid rgba(254, 208, 70, 0.6);
    color: #7A5200;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span.text-highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(254, 208, 70, 0.65) 60%);
    color: var(--brand-dark);
    padding: 0 4px;
}

.hero p {
    font-size: 17px;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ── Buttons (Main Yellow as Primary) ── */
.btn-main,
.btn-primary {
    background: var(--brand-yellow) !important;
    color: var(--brand-dark) !important;
    font-weight: 700 !important;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 6px;
    border: 1px solid var(--brand-yellow) !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 14px rgba(254, 208, 70, 0.4) !important;
}

.btn-main:hover,
.btn-primary:hover {
    background: var(--brand-yellow-hover) !important;
    border-color: var(--brand-yellow-hover) !important;
    color: #111111 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(254, 208, 70, 0.5) !important;
}

.btn-blue,
.btn-secondary {
    background: var(--brand-blue) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 6px;
    border: 1px solid var(--brand-blue) !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

.btn-blue:hover,
.btn-secondary:hover {
    background: var(--brand-blue-hover) !important;
    border-color: var(--brand-blue-hover) !important;
    color: #ffffff !important;
}

.btn-outline {
    background: transparent;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid var(--brand-yellow);
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

.btn-outline:hover {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    border-color: var(--brand-yellow);
}

/* ── Section Layouts ── */
.section {
    padding: 80px 0;
}

.section-gray {
    background: #FFFDF5;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #855300;
    background: var(--brand-yellow-light);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* ── Cards ── */
.card-clean {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 32px;
    height: 100%;
    transition: all 0.2s ease-in-out;
}

.card-clean:hover {
    border-color: var(--brand-yellow);
    box-shadow: 0 8px 24px rgba(254, 208, 70, 0.25);
    transform: translateY(-2px);
}

.card-clean h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.card-clean p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Step Numbers (Main Yellow) ── */
.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--brand-yellow);
    border: 2px solid var(--brand-yellow-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    color: var(--brand-dark);
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(254, 208, 70, 0.35);
}

/* ── Feature List ── */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-yellow);
    border: 2px solid var(--brand-dark);
    margin-top: 7px;
    flex-shrink: 0;
}

.feature-list h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.feature-list p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

/* ── FAQ ── */
.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Legal Pages ── */
.legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 80px;
}

.legal-page h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.legal-page .date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 10px;
    margin-top: 32px;
}

.legal-page p,
.legal-page li {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ── Contact Form ── */
.form-group label {
    font-weight: 600;
    font-size: 13px;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.form-control {
    background: #ffffff !important;
    border: 1px solid var(--border-color) !important;
    color: var(--brand-dark) !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    max-width: 100% !important;
    transition: all 0.15s ease-in-out !important;
}

.form-control:focus {
    border-color: var(--brand-yellow) !important;
    box-shadow: 0 0 0 3px var(--brand-yellow-light) !important;
    outline: none !important;
}

/* ── Footer ── */
footer {
    border-top: 1px solid var(--border-color);
    padding: 48px 0 32px;
    margin-top: 80px;
    background: #ffffff;
}

footer h5,
footer h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

footer p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.15s ease;
}

footer a:hover {
    color: var(--brand-blue);
}

footer .copyright {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Glass card (subpages) ── */
.glass-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* ── Utility ── */
.text-accent,
.text-yellow {
    color: var(--brand-dark) !important;
    background-color: var(--brand-yellow);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.text-blue {
    color: var(--brand-blue) !important;
    font-weight: 600;
}

.link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    text-decoration: none;
}

.link-arrow:hover {
    color: var(--brand-blue-hover);
    text-decoration: underline;
}
