:root {
    --primary: #005EB8;
    --secondary: #40E0D0;
    --tertiary: #E0F2F1;
    --neutral: #F8FAFC;

    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #dbe4ee;

    --success: #059669;
    --danger: #dc2626;
    --warning: #d97706;

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 20px 60px rgba(0, 94, 184, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 94, 184, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--neutral);
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(219, 228, 238, 0.82);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.input {
    width: 100%;
    border: 1px solid var(--border);
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 15px 16px;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.input:focus {
    border-color: rgba(0, 94, 184, 0.45);
    box-shadow: 0 0 0 4px rgba(0, 94, 184, 0.10);
}

.btn {
    border: 0;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: .18s ease;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, #005EB8 0%, #2e74cf 100%);
    box-shadow: 0 12px 28px rgba(0, 94, 184, 0.22);
}

.btn-primary:hover {
    opacity: .96;
    transform: translateY(-1px);
}

.alert {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.12);
    color: #991b1b;
}

.alert-success {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.12);
    color: #065f46;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
.fc-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.fc-site-header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.fc-site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.fc-site-logo img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
}

.fc-site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.fc-site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.18s ease;
}

.fc-site-nav a:hover,
.fc-site-nav a.active {
    background: #e8f2ff;
    color: #005bb2;
}

.fc-site-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.fc-header-login,
.fc-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.fc-header-login {
    color: #005bb2;
    background: #e8f2ff;
}

.fc-header-cta {
    color: #ffffff;
    background: linear-gradient(135deg, #005bb2, #2672d8);
    box-shadow: 0 14px 26px rgba(0, 91, 178, 0.22);
}

.fc-header-cta.ghost {
    color: #334155;
    background: #f1f5f9;
    box-shadow: none;
}

.fc-header-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #e8f2ff;
    cursor: pointer;
    padding: 10px;
}

.fc-header-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: #005bb2;
}

@media (max-width: 860px) {
    .fc-site-header-inner {
        min-height: 72px;
        flex-wrap: wrap;
    }

    .fc-site-logo img {
        height: 38px;
        max-width: 190px;
    }

    .fc-header-toggle {
        display: block;
        margin-left: auto;
    }

    .fc-site-nav,
    .fc-site-actions {
        display: none;
        width: 100%;
    }

    .fc-site-header.is-open .fc-site-nav,
    .fc-site-header.is-open .fc-site-actions {
        display: flex;
    }

    .fc-site-nav {
        flex-direction: column;
        align-items: stretch;
        padding-top: 8px;
    }

    .fc-site-nav a {
        width: 100%;
        justify-content: flex-start;
        padding: 13px 14px;
        border-radius: 14px;
        background: #f8fafc;
    }

    .fc-site-actions {
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 16px;
    }

    .fc-header-login,
    .fc-header-cta {
        width: 100%;
    }
}
.fc-public-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.fc-public-header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.fc-public-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.fc-public-logo img {
    display: block;
    width: auto;
    height: 44px;
    max-width: 230px;
    object-fit: contain;
}

.fc-public-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.fc-public-nav a {
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.fc-public-nav a:hover,
.fc-public-nav a.active {
    color: #005bb2;
}

.fc-public-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.fc-public-btn {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.fc-public-btn.ghost {
    color: #0f172a;
    background: #f1f5f9;
}

.fc-public-btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, #005bb2, #2775d8);
    box-shadow: 0 12px 26px rgba(0, 91, 178, 0.22);
}

.fc-public-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    border-radius: 14px;
    background: #e8f2ff;
    cursor: pointer;
    padding: 10px;
}

.fc-public-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: #005bb2;
}

@media (max-width: 900px) {
    .fc-public-header-inner {
        min-height: 68px;
        flex-wrap: wrap;
        gap: 14px;
    }

    .fc-public-logo img {
        height: 38px;
        max-width: 200px;
    }

    .fc-public-menu-btn {
        display: block;
    }

    .fc-public-nav,
    .fc-public-actions {
        display: none;
        width: 100%;
    }

    .fc-public-header.is-open .fc-public-nav,
    .fc-public-header.is-open .fc-public-actions {
        display: flex;
    }

    .fc-public-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 8px;
    }

    .fc-public-nav a {
        padding: 13px 14px;
        border-radius: 14px;
        background: #f8fafc;
    }

    .fc-public-actions {
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 16px;
    }

    .fc-public-btn {
        width: 100%;
    }
}