/* -- Public careers & vacancies pages -- */
/* Extracted from portal-pages.css so the public marketing/SEO pages no longer
   need to download the 283 KB client-portal stylesheet. Loaded only by
   templates/pages/careers/* and templates/pages/vacancies/*. */

/* ═══════════════════════════════════════════════════
   Public Careers Pages  (.cr-*)
   ═══════════════════════════════════════════════════ */

.cr-body {
    background: #fafaf8;
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    color: #1a1a1a;
}
.cr-shell {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}
/* ── Hero / Header ── */
.cr-hero {
    text-align: center;
    padding: 2.5rem 0 2rem;
}
.cr-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
    margin-bottom: 1rem;
}
.cr-logo-sm {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}
.cr-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: #0e1428;
}
.cr-subtitle {
    color: #888;
    font-size: 1.05rem;
}
/* ── Breadcrumb ── */
.cr-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.5rem;
}
.cr-breadcrumb a {
    color: #ff8a00;
    text-decoration: none;
}
.cr-breadcrumb a:hover {
    text-decoration: underline;
}
/* ── Position Cards Grid ── */
.cr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.cr-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cr-card:hover {
    border-color: #ff8a00;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cr-card-top {}
.cr-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #0e1428;
}
.cr-card-meta {
    font-size: 0.82rem;
    color: #888;
    display: block;
    margin-top: 0.2rem;
}
.cr-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.cr-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: #f5f3ef;
    color: #666;
}
.cr-card-salary {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff8a00;
}
.cr-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.cr-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: rgba(255,138,0,0.12);
    color: #ff8a00;
}
.cr-card-roles {
    font-size: 0.8rem;
    color: #999;
}
/* ── Position Detail ── */
.cr-position-hero {
    margin-bottom: 2rem;
}
.cr-position-hero h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0.5rem 0 0.25rem;
    color: #0e1428;
}
.cr-position-meta {
    color: #888;
    font-size: 0.95rem;
}
.cr-position-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}
.cr-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
.cr-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.cr-detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #999;
}
.cr-detail-val {
    font-size: 0.95rem;
    font-weight: 600;
}
.cr-description {
    margin-bottom: 2rem;
}
.cr-description h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.cr-description p {
    color: #555;
    line-height: 1.7;
}
.cr-skills {
    margin-bottom: 2rem;
}
.cr-skills h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.cr-skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.cr-skill-pill {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    background: #f5f3ef;
    color: #555;
}
.cr-assessment-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,138,0,0.08);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 2rem;
}
/* ── Apply Panel ── */
.cr-apply-panel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.75rem;
    position: sticky;
    top: 2rem;
}
.cr-apply-panel h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
}
.cr-apply-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cr-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #444;
}
.cr-field input[type="text"],
.cr-field input[type="email"],
.cr-field input[type="file"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #fafaf8;
    transition: border-color 0.15s;
}
.cr-field input:focus {
    outline: none;
    border-color: #ff8a00;
}
.cr-help {
    font-size: 0.75rem;
    color: #999;
    display: block;
    margin-top: 0.2rem;
}
.cr-error {
    font-size: 0.8rem;
    color: #d44;
    display: block;
    margin-top: 0.2rem;
}
.cr-submit {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    background: #ff8a00;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.15s;
    margin-top: 0.5rem;
}
.cr-submit:hover {
    opacity: 0.9;
}
/* ── Success Page ── */
.cr-success {
    text-align: center;
    padding: 6rem 1rem;
}
.cr-success h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 1.25rem 0 0.5rem;
    color: #0e1428;
}
.cr-success p {
    color: #555;
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}
.cr-success-sub {
    color: #888 !important;
    font-size: 0.95rem !important;
}
.cr-back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #ff8a00;
    text-decoration: none;
    font-weight: 600;
}
.cr-back-link:hover {
    text-decoration: underline;
}
/* ── Empty ── */
.cr-empty {
    text-align: center;
    padding: 5rem 1rem;
    color: #888;
}
.cr-empty h2 {
    color: #555;
    margin-bottom: 0.25rem;
}
/* ── Footer ── */
.cr-footer {
    text-align: center;
    padding: 3rem 0 1rem;
    font-size: 0.8rem;
    color: #bbb;
}
.cr-footer a {
    color: #ff8a00;
    text-decoration: none;
}
/* ═══════════════════════════════════════════════════
   Public Vacancy Pages  (.vc-*)
   ═══════════════════════════════════════════════════ */

/* ── Entrance Animation ── */
.vc-anim {
    opacity: 0;
    transform: translateY(16px);
    animation: vc-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--d, 0s);
}
.vc-body {
    background: #f8f9fc;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    margin: 0;
}
.vc-shell {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}
.vc-shell-wide {
    max-width: 1060px;
}
/* ── Hero ── */
/* Uses Evalon design system (orange #ff8a00 + navy #0e1428) for consistency.
   Client branding comes through logo; accent colors are always legible. */
.vc-hero {
    background: linear-gradient(180deg, #111830 0%, #0e1428 50%, #0b1020 100%);
    padding: 5.5rem 2rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Warm orange glow from top center */
.vc-hero-glow {
    position: absolute;
    width: 1000px;
    height: 600px;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, #ff8a00, transparent 65%);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}
/* Subtle bottom glow */
.vc-glow-2 {
    width: 700px;
    height: 400px;
    top: auto;
    bottom: -200px;
    opacity: 0.06;
}
/* Decorative horizon line */
.vc-hero-line {
    position: absolute;
    bottom: 140px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.06) 80%, transparent);
    z-index: 1;
    pointer-events: none;
}
/* Content — flexbox column */
.vc-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Logo */
.vc-logo-row {
    margin-bottom: 1.75rem;
}
.vc-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 22px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 8px 32px rgba(0,0,0,0.4),
        0 0 50px -5px rgba(255,138,0,0.25);
    overflow: hidden;
}
.vc-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
/* Eyebrow */
.vc-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff8a00;
}
.vc-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff8a00;
    box-shadow: 0 0 10px rgba(255,138,0,0.7);
    animation: vc-pulse 2s ease-in-out infinite;
}
/* Heading */
.vc-hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: #fff;
    letter-spacing: -0.035em;
    line-height: 1.2;
}
.vc-hero-accent {
    color: #ff8a00;
}
/* Subtitle */
.vc-hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.65;
    font-weight: 400;
    max-width: 460px;
}
/* Stats row */
.vc-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 1.1rem 2.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}
.vc-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.vc-stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ff8a00;
    letter-spacing: -0.02em;
    line-height: 1;
}
.vc-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
}
.vc-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.12);
}
/* Hero fade to page bg */
.vc-hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, #f8f9fc);
    z-index: 2;
}
/* ── Toolbar (Search + Filters) ── */
.vc-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1.25rem;
    flex-wrap: wrap;
}
.vc-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
    max-width: 360px;
    padding: 0.55rem 0.9rem;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.vc-search:focus-within {
    border-color: #ff8a00;
    box-shadow: 0 0 0 3px rgba(255,138,0,0.08);
}
.vc-search svg {
    color: #94a3b8;
    flex-shrink: 0;
}
.vc-search input {
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    font-size: 0.88rem;
    color: #1e293b;
    width: 100%;
}
.vc-search input::placeholder {
    color: #94a3b8;
}
.vc-filters {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.vc-filter {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s;
}
.vc-filter:hover {
    border-color: #cbd5e1;
    color: #1e293b;
}
.vc-filter.active {
    background: #0e1428;
    border-color: #0e1428;
    color: #fff;
}
/* No results */
.vc-no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}
.vc-no-results svg {
    opacity: 0.3;
    margin-bottom: 0.75rem;
}
.vc-no-results p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #64748b;
}
.vc-clear-search {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff8a00;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
/* ── Position Cards Grid ── */
.vc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
/* ── Cards ── */
.vc-card {
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    transition-timing-function: cubic-bezier(0.16,1,0.3,1);
}
.vc-card:hover {
    border-color: rgba(255,138,0,0.3);
    box-shadow: 0 6px 24px rgba(14,20,40,0.08);
    transform: translateY(-2px);
}
/* Top section: title + meta */
.vc-card-top {
    padding: 1.15rem 1.25rem 0.85rem;
}
.vc-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}
.vc-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: #0e1428;
    line-height: 1.35;
    transition: color 0.15s;
}
.vc-card:hover .vc-card-title {
    color: #ff8a00;
}
.vc-card-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f4f6fa;
    color: #94a3b8;
    transition: all 0.2s;
}
.vc-card:hover .vc-card-arrow {
    background: #ff8a00;
    color: #fff;
    transform: translate(2px, -2px);
}
.vc-card-meta {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}
.vc-meta-item {
    font-size: 0.8rem;
    color: #7c8ba5;
}
.vc-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c5cdd8;
    margin: 0 0.5rem;
    flex-shrink: 0;
}
/* Bottom section: pills + salary */
.vc-card-bottom {
    padding: 0.7rem 1.25rem 1rem;
    border-top: 1px solid #f0f3f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.vc-card-pills {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}
.vc-pill {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 5px;
    background: #f0f3f9;
    color: #5b6882;
}
.vc-pill-roles {
    background: rgba(99,102,241,0.08);
    color: #6366f1;
}
.vc-card-salary {
    font-size: 0.82rem;
    font-weight: 700;
    color: #16a34a;
    white-space: nowrap;
    flex-shrink: 0;
}
/* ── Detail Bar (Position Page) ── */
.vc-detail-bar {
    background: #0e1428;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vc-detail-bar-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
/* ── Breadcrumb ── */
.vc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.45);
    padding: 0.85rem 0;
}
.vc-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s;
}
.vc-breadcrumb a:hover {
    color: #ff8a00;
}
.vc-bc-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}
.vc-breadcrumb svg {
    opacity: 0.35;
}
.vc-breadcrumb > span {
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* ── Position Detail Hero ── */
.vc-pos-hero {
    margin-bottom: 1.75rem;
    padding-top: 2rem;
}
.vc-pos-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    color: #1e293b;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.vc-pos-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.vc-pos-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
    padding: 0.35rem 0.85rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
}
.vc-pos-chip svg {
    opacity: 0.45;
    flex-shrink: 0;
}
/* ── Position Layout ── */
.vc-position-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}
.vc-position-info {
    min-width: 0;
}
/* ── Highlights (Salary / Open Roles) ── */
.vc-highlights {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 2rem;
}
.vc-highlight {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border: 1.5px solid #edf0f7;
    border-radius: 14px;
    padding: 1rem 1.15rem;
}
.vc-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(255,138,0,0.08), rgba(255,138,0,0.04));
    flex-shrink: 0;
    color: #ff8a00;
}
.vc-highlight-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    display: block;
}
.vc-highlight-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
    margin-top: 0.1rem;
}
/* ── Description ── */
.vc-description {
    margin-bottom: 2rem;
}
.vc-description h2,
.vc-skills h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.85rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.vc-description h2::before,
.vc-skills h2::before {
    content: '';
    width: 3px;
    height: 16px;
    border-radius: 2px;
    background: #ff8a00;
    flex-shrink: 0;
}
.vc-desc-body {
    color: #5a6577;
    line-height: 1.8;
    font-size: 0.95rem;
}
.vc-jd-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.vc-jd-list li {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #5a6577;
    margin-bottom: 0.4rem;
    padding-left: 1.25rem;
    position: relative;
}
.vc-jd-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff8a00;
    opacity: 0.5;
}
.vc-jd-list li:last-child {
    margin-bottom: 0;
}
/* ── Skills ── */
.vc-skills {
    margin-bottom: 2rem;
}
.vc-skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.vc-skill-pill {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    transition: all 0.2s;
}
.vc-skill-pill:hover {
    background: rgba(255,138,0,0.06);
    border-color: rgba(255,138,0,0.2);
    color: #ff8a00;
}
/* ── Apply Panel ── */
.vc-apply-panel {
    background: #fff;
    border: 1.5px solid #edf0f7;
    border-radius: 18px;
    padding: 0;
    position: sticky;
    top: 1.5rem;
    box-shadow: 0 8px 36px rgba(14,20,40,0.05);
    overflow: hidden;
}
.vc-apply-accent {
    height: 4px;
    background: linear-gradient(90deg, #ff8a00, #ffb347);
}
.vc-apply-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.5rem 1.75rem 1.1rem;
}
.vc-apply-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ff8a00;
    box-shadow: 0 4px 14px rgba(255,138,0,0.3);
    flex-shrink: 0;
}
.vc-apply-head h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}
.vc-apply-sub {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0.1rem 0 0;
}
.vc-apply-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0 1.75rem 1.75rem;
}
.vc-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #475569;
}
.vc-req {
    color: #ef4444;
}
.vc-field input[type="text"],
.vc-field input[type="email"],
.vc-field input[type="tel"],
.vc-field input[type="file"],
.vc-field select,
.vc-field textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.vc-field input:focus,
.vc-field select:focus,
.vc-field textarea:focus {
    outline: none;
    border-color: #ff8a00;
    box-shadow: 0 0 0 3px rgba(255,138,0,0.08);
    background: #fff;
}
.vc-help {
    font-size: 0.75rem;
    color: #94a3b8;
    display: block;
    margin-top: 0.25rem;
}
.vc-error {
    font-size: 0.8rem;
    color: #dc3545;
    display: block;
    margin-top: 0.25rem;
    font-weight: 500;
}
.vc-submit {
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 12px;
    background: #ff8a00;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 18px rgba(255,138,0,0.25);
    transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.vc-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: vc-shimmer 3s ease-in-out infinite;
}
.vc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,138,0,0.35);
}
.vc-submit span { position: relative; z-index: 1; }
.vc-submit svg { position: relative; z-index: 1; }
/* ── Success Page ── */
.vc-success {
    text-align: center;
    padding: 5rem 1rem 3rem;
    position: relative;
    overflow: hidden;
}
.vc-confetti {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
}
.vc-confetti span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--c);
    transform: translate(var(--x), var(--y)) rotate(var(--r));
    opacity: 0;
    animation: vc-confetti-burst 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
    animation-delay: var(--d, 0s);
}
.vc-success-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ff8a00;
    box-shadow: 0 8px 32px rgba(255,138,0,0.3);
    margin-bottom: 1.5rem;
}
.vc-success h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #1e293b;
    letter-spacing: -0.01em;
}
.vc-success p {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    line-height: 1.6;
}
.vc-success-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin: 2rem auto 0;
    max-width: 420px;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.vc-success-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: #1e293b;
}
/* Timeline */
.vc-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.vc-tl-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    position: relative;
}
.vc-tl-item:last-child { padding-bottom: 0; }
.vc-tl-item::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}
.vc-tl-item:last-child::before { display: none; }
.vc-tl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-top: 1px;
}
.vc-tl-done .vc-tl-dot {
    border-color: #ff8a00;
    background: #ff8a00;
    box-shadow: 0 0 0 3px rgba(255,138,0,0.15);
}
.vc-tl-done .vc-tl-dot::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
}
.vc-tl-done::before {
    background: #ff8a00 !important;
}
.vc-tl-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.vc-tl-content strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
}
.vc-tl-content span {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.4;
}
/* Back Button */
.vc-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2rem;
    color: #ff8a00;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.3rem;
    border: 1.5px solid rgba(255,138,0,0.3);
    border-radius: 999px;
    transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
}
.vc-back-btn:hover {
    background: rgba(255,138,0,0.06);
    border-color: #ff8a00;
    transform: translateX(-3px);
}
/* ── Empty State ── */
.vc-empty {
    text-align: center;
    padding: 5rem 1rem;
    color: #94a3b8;
}
.vc-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    margin-bottom: 1.5rem;
}
.vc-empty-icon svg {
    opacity: 0.35;
    color: #ff8a00;
}
.vc-empty h2 {
    color: #475569;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
}
.vc-empty p {
    font-size: 0.92rem;
    margin: 0;
}
/* ── Footer ── */
.vc-footer {
    text-align: center;
    padding: 3rem 0 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
}
.vc-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.vc-footer-brand a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.15s;
}
.vc-footer-brand a:hover {
    color: #ff8a00;
}
.vc-footer-brand svg {
    color: #ff8a00;
}
@media (max-width: 480px) {
.vc-hero {
        padding: 2.5rem 1rem 4rem;
    }
.vc-hero h1 {
        font-size: 1.7rem;
    }
.vc-hero h1 br {
        display: none;
    }
.vc-logo-wrap {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
.vc-logo-row {
        margin-bottom: 1.25rem;
    }
.vc-logo {
        width: 42px;
        height: 42px;
    }
.vc-hero-glow {
        width: 500px;
        height: 300px;
    }
.vc-apply-head {
        padding: 1.25rem 1.25rem 0.85rem;
    }
.vc-apply-form {
        padding: 0 1.25rem 1.25rem;
    }
}
