:root {
    --primary: #FD5D00;
    --primary-dark: #cc4b00;
    --primary-light: #fff3eb;
    --primary-glow: rgba(253, 93, 0, 0.15);
    --accent: #FF8C42;
    --accent-light: #fff6f0;
    --text: #202124;
    --text-light: #696969;
    --text-muted: #949494;
    --bg: #fafafa;
    --bg-alt: #fdf7f3;
    --white: #ffffff;
    --border: #ececec;
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(253, 93, 0, 0.12);
    --radius: 14px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    --max-width: 1320px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: 0 2px 20px rgba(253, 93, 0, 0.08);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.header-logo .logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
.header-logo span {
    color: var(--primary);
}
.header-logo .brand-logo {
    display: block;
    height: auto;
    max-width: 220px;
    width: 100%;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.header-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}
.header-nav a:hover,
.header-nav a.active {
    color: var(--primary);
}
.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-account-area {
    align-items: center;
    display: flex;
    gap: 12px;
}
.account-menu {
    position: relative;
}
.account-menu-trigger {
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    padding: 6px 13px 6px 7px;
    transition: var(--transition);
}
.account-menu-trigger:hover,
.account-menu-trigger[aria-expanded="true"] {
    border-color: rgba(253, 93, 0, .35);
    box-shadow: 0 7px 22px rgba(52, 29, 14, .09);
}
.account-avatar {
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 38px;
    font-size: 13px;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    width: 38px;
}
.account-identity {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 74px;
}
.account-identity strong {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    max-width: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.account-identity small {
    color: var(--primary);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-top: 4px;
    text-transform: uppercase;
}
.account-identity small i {
    font-size: 8px;
    margin-left: 3px;
}
.account-dropdown {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(34, 25, 19, .14);
    min-width: 220px;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 1100;
}
.account-dropdown[hidden] { display: none; }
.account-dropdown a,
.account-dropdown button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 9px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
    padding: 11px 12px;
    text-align: left;
    text-decoration: none;
    width: 100%;
}
.account-dropdown a:hover,
.account-dropdown button:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.account-dropdown i { width: 17px; text-align: center; }
.account-modal[hidden] { display: none; }
.account-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 22px;
    position: fixed;
    z-index: 3000;
}
.account-modal-backdrop {
    background: rgba(28, 22, 18, .56);
    inset: 0;
    position: absolute;
}
.account-modal-dialog {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
    max-width: 480px;
    padding: 32px;
    position: relative;
    width: 100%;
    z-index: 1;
}
.account-modal-close {
    background: #f5f5f5;
    border: 0;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    font-size: 17px;
    height: 36px;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 36px;
}
.account-modal-icon {
    align-items: center;
    background: var(--primary-light);
    border-radius: 13px;
    color: var(--primary);
    display: flex;
    font-size: 20px;
    height: 48px;
    justify-content: center;
    margin-bottom: 16px;
    width: 48px;
}
.account-modal-dialog h2 { font-size: 26px; margin-bottom: 5px; }
.account-modal-dialog > p { color: var(--text-light); margin-bottom: 20px; }
.account-modal-dialog form { display: grid; gap: 15px; }
.account-modal-dialog label { color: var(--text); font-size: 14px; font-weight: 700; }
.account-modal-dialog input {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: block;
    font: inherit;
    margin-top: 6px;
    min-height: 48px;
    padding: 10px 13px;
    width: 100%;
}
.account-modal-dialog form > small { color: var(--text-muted); font-size: 12px; }
.account-provider-notice {
    align-items: flex-start;
    background: #f8f9fa;
    border: 1px solid #e3e5e8;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
}
.account-provider-notice i { color: #4285f4; font-size: 22px; margin-top: 2px; }
.account-form-message { display: none; border-radius: 8px; font-size: 13px; padding: 10px 12px; }
.account-form-message.is-error { background: #fff0f0; color: #b42318; display: block; }
.account-form-message.is-success { background: #ecfdf3; color: #067647; display: block; }
.has-account-modal { overflow: hidden; }
.simple-content-page { min-height: calc(100vh - var(--header-height)); padding: 70px 0; text-align: center; }
.simple-content-page > .container > span { color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.simple-content-page h1 { font-size: clamp(36px, 5vw, 54px); margin: 6px 0 10px; }
.simple-content-page > .container > p { color: var(--text-light); font-size: 17px; margin: 0 auto; max-width: 690px; }
.simple-content-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin-top: 38px; text-align: left; }
.simple-content-grid article { border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 25px; }
.simple-content-grid article > i { color: var(--primary); font-size: 24px; }
.simple-content-grid h2 { font-size: 20px; margin: 13px 0 6px; }
.simple-content-grid p { color: var(--text-light); font-size: 14px; margin-bottom: 17px; }
.simple-content-grid a { color: var(--primary); font-weight: 700; text-decoration: none; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e84d00);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(253, 93, 0, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e84d00, #cc4000);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 93, 0, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(253, 93, 0, 0.3);
}
.btn-light {
    background: var(--primary-light);
    color: var(--primary);
}
.btn-light:hover {
    background: #ffe8d6;
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 36px;
    font-size: 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
.btn-lg {
    padding: 15px 36px;
    font-size: 16px;
    border-radius: var(--radius-sm);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 6px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}
.menu-toggle:hover {
    color: var(--primary);
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(165deg, #fff8f4 0%, #fff3eb 30%, #fef9f5 60%, #fdf2ec 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 93, 0, 0.07) 0%, transparent 65%);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}
.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
}
.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-content {
    flex: 1;
    max-width: 580px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(253, 93, 0, 0.08);
}
.hero-badge .dot {
    width: 9px;
    height: 9px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(253, 93, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(253, 93, 0, 0);
    }
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
    color: #1a1a1a;
}
.hero h1 span {
    color: var(--primary);
    position: relative;
}
.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(253, 93, 0, 0.13);
    border-radius: 4px;
    z-index: -1;
}
.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.65;
}
.hero-search {
    background: var(--white);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.hero-search .input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.hero-search .input-group:focus-within {
    background: #fff8f4;
    box-shadow: 0 0 0 3px rgba(253, 93, 0, 0.1);
}
.hero-search .input-group i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}
.hero-search input,
.hero-search select {
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: var(--text);
    outline: none;
    width: 100%;
}
.hero-search input::placeholder {
    color: var(--text-muted);
}
.hero-search select {
    cursor: pointer;
    color: var(--text);
    -webkit-appearance: none;
    appearance: none;
}
.hero-search .btn-primary {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.popular-searches {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}
.popular-searches .tag {
    background: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.popular-searches .tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-image .main-img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(253, 93, 0, 0.10);
}
.hero-image .floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}
.floating-card.card-1 {
    top: 10%;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}
.floating-card.card-2 {
    bottom: 15%;
    right: -10px;
    animation: float 3s ease-in-out 1s infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.floating-card .fc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.floating-card .fc-icon.green {
    background: var(--primary-light);
    color: var(--primary);
}
.floating-card .fc-icon.orange {
    background: #fff3eb;
    color: var(--accent);
}
.floating-card .fc-info .fc-number {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}
.floating-card .fc-info .fc-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 90px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* ========== STATS ========== */
.stats {
    background: var(--white);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}
.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}
.stat-card .stat-icon.c1 {
    background: var(--primary-light);
    color: var(--primary);
}
.stat-card .stat-icon.c2 {
    background: #e8f0fe;
    color: #4a90d9;
}
.stat-card .stat-icon.c3 {
    background: #fef3e8;
    color: #ff8c42;
}
.stat-card .stat-icon.c4 {
    background: #f3e8fe;
    color: #8b5cf6;
}
.stat-card .stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* ========== JOB CARDS ========== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    padding: 28px;
    transition: var(--transition);
    position: relative;
}
.job-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    transform: translateY(-3px);
}
.job-card .job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.job-badge.urgent {
    background: #fff3eb;
    color: var(--primary);
}
.job-badge.featured {
    background: #e8f8f2;
    color: #14B077;
}
.job-card .company-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.job-card .company-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}
.job-card .company-name {
    font-weight: 600;
    font-size: 15px;
}
.job-card .company-location {
    font-size: 13px;
    color: var(--text-muted);
}
.job-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.35;
}
.job-card h3 a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}
.job-card h3 a:hover {
    color: var(--primary);
}
.job-card .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.job-card .job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg);
    padding: 5px 12px;
    border-radius: 50px;
}
.job-card .job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.job-card .job-salary {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}
.job-card .job-type {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary);
}
.job-card .job-footer-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}
.job-card .job-details {
    align-items: center;
    border: 1px solid var(--primary);
    border-radius: 9px;
    color: var(--primary);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    padding: 7px 11px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.job-card .job-details:hover {
    background: var(--primary);
    color: #fff;
}

/* ========== CATEGORIES ========== */
.categories {
    background: var(--bg-alt);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text);
    display: block;
}
.category-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}
.category-card .cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    transition: var(--transition);
}
.category-card:hover .cat-icon {
    transform: scale(1.08) rotate(-3deg);
}
.cat-icon.c1 {
    background: #fff3eb;
    color: #FD5D00;
}
.cat-icon.c2 {
    background: #e8f0fe;
    color: #4a90d9;
}
.cat-icon.c3 {
    background: #fef3e8;
    color: #ff8c42;
}
.cat-icon.c4 {
    background: #f3e8fe;
    color: #8b5cf6;
}
.cat-icon.c5 {
    background: #fde8ec;
    color: #e8506b;
}
.cat-icon.c6 {
    background: #e8fbf3;
    color: #17c3a2;
}
.cat-icon.c7 {
    background: #fff7e8;
    color: #e8a828;
}
.cat-icon.c8 {
    background: #e8f2fe;
    color: #3b7ddd;
}
.category-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}
.category-card .cat-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.step-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
}
.step-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.step-card .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e84d00);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(253, 93, 0, 0.25);
}
.step-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, #FD5D00 0%, #e84d00 50%, #cc4000 100%);
    padding: 75px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}
.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 36px;
    font-size: 16px;
    border-radius: var(--radius-sm);
}
.cta-section .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
}
.testimonial-card .stars {
    color: #f4b740;
    margin-bottom: 16px;
    font-size: 15px;
}
.testimonial-card .quote {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.65;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-card .author-name {
    font-weight: 600;
    font-size: 15px;
}
.testimonial-card .author-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== NEWSLETTER ========== */
.newsletter {
    background: var(--bg-alt);
    padding: 60px 0;
}
.newsletter-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow);
}
.newsletter-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}
.newsletter-text p {
    color: var(--text-light);
    font-size: 15px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.newsletter-form input {
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    min-width: 300px;
    outline: none;
    transition: var(--transition);
}
.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(253, 93, 0, 0.08);
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1d23;
    color: #c5c7cc;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer .social-links {
    display: flex;
    gap: 10px;
}
.footer .social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5c7cc;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
}
.footer .social-links a:hover {
    background: var(--primary);
    color: var(--white);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #c5c7cc;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: #7a7d84;
}
.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}
.site-footer .footer-brand-logo { height: auto; margin-bottom: 13px; max-width: 190px; width: 100%; }
.site-footer .footer-company p { color: #c3c3c3; font-size: 13px; line-height: 1.55; margin-bottom: 7px; }
.site-footer .footer-company strong { color: #f0f0f0; font-size: 12px; }
.site-footer .footer-company a { align-items: center; color: var(--accent); display: inline-flex; font-size: 13px; font-weight: 650; gap: 7px; margin-top: 4px; text-decoration: none; }
.site-footer .footer-company a:hover { color: #fff; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero-image {
        display: none;
    }
    .hero-search {
        flex-direction: column;
    }
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .newsletter-form input {
        min-width: 100%;
    }
}
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .header-actions .btn-outline {
        display: none;
    }
    .site-header .account-identity {
        display: none;
    }
    .site-header .account-menu-trigger {
        padding: 5px;
    }
    .site-header .account-avatar {
        height: 36px;
        width: 36px;
    }
    .simple-content-grid { grid-template-columns: 1fr; }
    .hero {
        padding: 50px 0 70px;
    }
    .hero h1 {
        font-size: 34px;
    }
    .jobs-grid,
    .categories-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .site-header .header-signin {
        display: none;
    }
    .account-modal-dialog {
        border-radius: 16px;
        padding: 25px 20px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-card {
        padding: 20px 14px;
    }
    .stat-card .stat-number {
        font-size: 24px;
    }
    .header-actions .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
    }
    .header-logo .brand-logo {
        max-width: 165px;
    }
}

/* ========== MOBILE NAV OVERLAY ========== */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 30px;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}
.mobile-nav.active {
    display: flex;
}
.mobile-nav a {
    display: block;
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--primary-light);
    color: var(--primary);
}

/* ========== CADASTRO / AUTENTICAÇÃO ========== */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(155deg, #fff 0%, #fff8f4 45%, #fff1e8 100%);
}
.auth-header {
    position: relative;
}
.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.auth-back-link:hover {
    color: var(--primary);
    transform: translateX(-3px);
}
.auth-main {
    min-height: calc(100vh - var(--header-height));
    padding: 54px 0 70px;
    position: relative;
    overflow: hidden;
}
.profile-page .auth-main {
    padding-top: 40px;
}
.profile-page .auth-card-wizard.is-profile-editor:has(> .profile-choice-view:not(.is-hidden)) {
    margin-top: 8px;
}
.auth-main::before,
.auth-main::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.auth-main::before {
    width: 520px;
    height: 520px;
    right: -180px;
    top: -220px;
    background: radial-gradient(circle, rgba(253, 93, 0, 0.10), transparent 68%);
}
.auth-main::after {
    width: 360px;
    height: 360px;
    left: -150px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.09), transparent 68%);
}
.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
    position: relative;
    z-index: 1;
}
.auth-intro {
    max-width: 590px;
}
.auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: var(--white);
    border: 1px solid rgba(253, 93, 0, 0.12);
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(253, 93, 0, 0.08);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    margin-bottom: 24px;
}
.auth-intro h1 {
    color: #1a1a1a;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -1.4px;
    line-height: 1.12;
    margin-bottom: 20px;
}
.auth-intro h1 span {
    color: var(--primary);
}
.auth-intro > p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
}
.auth-benefits {
    display: grid;
    gap: 15px;
    list-style: none;
    margin-top: 32px;
}
.auth-benefits li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}
.auth-benefits li > span {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.auth-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(253, 93, 0, 0.10);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(65, 30, 10, 0.10);
    padding: 38px 42px;
}
.auth-card-header {
    margin-bottom: 26px;
}
.auth-card-header > span {
    color: var(--primary);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.auth-card-header h2,
.auth-success h2 {
    color: var(--text);
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.auth-card-header p,
.auth-success p {
    color: var(--text-light);
    font-size: 15px;
}
.auth-form {
    display: grid;
    gap: 17px;
}
.form-field label {
    color: var(--text);
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
}
.form-control {
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    min-height: 52px;
    padding: 0 15px;
    transition: var(--transition);
}
.form-control:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(253, 93, 0, 0.09);
}
.form-control.has-error {
    border-color: #dc3545;
    background: #fffafa;
}
.form-control > i {
    color: var(--text-muted);
    font-size: 16px;
    margin-right: 11px;
    width: 18px;
}
.form-control:focus-within > i {
    color: var(--primary);
}
.form-control input {
    background: transparent;
    border: 0;
    color: var(--text);
    flex: 1;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    min-width: 0;
    outline: 0;
    padding: 14px 0;
}
.form-control input::placeholder {
    color: #aaa;
}
.password-toggle {
    background: none;
    border: 0;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 8px 0 8px 12px;
}
.password-toggle:hover {
    color: var(--primary);
}
.field-error,
.field-hint {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 5px;
}
.field-error {
    color: #c92a3a;
}
.field-hint {
    color: var(--text-muted);
}
.form-alert {
    align-items: flex-start;
    background: #fff1f2;
    border: 1px solid #ffd4d8;
    border-radius: var(--radius-sm);
    color: #a61e2c;
    display: flex;
    font-size: 13px;
    gap: 9px;
    line-height: 1.45;
    margin-bottom: 18px;
    padding: 12px 14px;
}
.form-alert i {
    margin-top: 3px;
}
.auth-submit {
    justify-content: center;
    margin-top: 5px;
    width: 100%;
}
.auth-login-link {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 23px;
    text-align: center;
}
.auth-login-link a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}
.auth-login-link a:hover {
    text-decoration: underline;
}
.auth-success {
    padding: 35px 10px;
    text-align: center;
}
.auth-success-icon {
    align-items: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    font-size: 28px;
    height: 76px;
    justify-content: center;
    margin: 0 auto 24px;
    width: 76px;
}
.auth-success p {
    margin: 0 auto 26px;
    max-width: 360px;
}

@media (max-width: 960px) {
    .auth-layout {
        grid-template-columns: 1fr;
        gap: 38px;
        max-width: 620px;
    }
    .auth-intro {
        text-align: center;
    }
    .auth-intro > p {
        margin-left: auto;
        margin-right: auto;
    }
    .auth-benefits {
        display: none;
    }
}

@media (max-width: 600px) {
    .auth-header .brand-logo {
        max-width: 175px;
    }
    .auth-back-link {
        font-size: 0;
    }
    .auth-back-link i {
        font-size: 18px;
    }
    .auth-main {
        padding: 32px 0 50px;
    }
    .auth-intro h1 {
        font-size: 34px;
    }
    .auth-intro > p {
        font-size: 16px;
    }
    .auth-card {
        border-radius: 18px;
        padding: 30px 22px;
    }
}

/* ========== CADASTRO EM ETAPAS ========== */
.auth-card-wizard {
    min-height: 620px;
}
.signup-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
}
.signup-progress::before {
    background: var(--border);
    content: '';
    height: 2px;
    left: 16.66%;
    position: absolute;
    right: 16.66%;
    top: 17px;
}
.signup-progress li {
    align-items: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
    gap: 5px;
    position: relative;
    z-index: 1;
}
.signup-progress li > span {
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    font-size: 12px;
    height: 36px;
    justify-content: center;
    width: 36px;
}
.signup-progress li.is-active,
.signup-progress li.is-complete {
    color: var(--primary);
}
.signup-progress li.is-active > span,
.signup-progress li.is-complete > span {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(253, 93, 0, 0.24);
}
.google-button-wrap {
    display: flex;
    justify-content: center;
    min-height: 44px;
    overflow: hidden;
}
.google-placeholder {
    align-items: center;
    background: var(--white);
    border: 1px solid #dadce0;
    border-radius: 6px;
    color: #3c4043;
    cursor: pointer;
    display: flex;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 600;
    gap: 12px;
    justify-content: center;
    min-height: 44px;
    width: 100%;
}
.google-placeholder i,
.verification-icon.google {
    color: #4285f4;
}
.google-placeholder:hover {
    background: #f8f9fa;
    border-color: #c5c8cc;
}
.auth-divider {
    align-items: center;
    color: var(--text-muted);
    display: flex;
    font-size: 12px;
    gap: 12px;
    margin: 22px 0;
    text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after {
    background: var(--border);
    content: '';
    flex: 1;
    height: 1px;
}
.verification-view,
.profile-choice-view {
    text-align: center;
}
.verification-view .auth-card-header,
.profile-choice-view .auth-card-header {
    margin-left: auto;
    margin-right: auto;
    max-width: 410px;
    text-align: center;
}
.manual-profile-form {
    display: flex;
}
.manual-profile-form .profile-choice-card {
    width: 100%;
}
.verification-icon {
    align-items: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    font-size: 25px;
    height: 68px;
    justify-content: center;
    margin: 2px auto 22px;
    width: 68px;
}
.verification-view .auth-form {
    text-align: left;
}
.code-control {
    justify-content: center;
}
.form-control.code-control input {
    flex: 0 1 220px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 10px;
    text-align: center;
}
.restart-form {
    margin-top: 18px;
}
.restart-form button,
.profile-skip {
    background: none;
    border: 0;
    color: var(--primary);
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
}
.restart-form button:hover,
.profile-skip:hover {
    text-decoration: underline;
}
.profile-choice-grid {
    display: grid;
    gap: 14px;
    margin: 25px 0 20px;
}
.resume-upload-form {
    display: grid;
    gap: 10px;
}
.resume-upload-card {
    width: 100%;
}
.resume-upload-submit {
    justify-content: center;
    width: 100%;
}
.resume-upload-submit:disabled {
    cursor: not-allowed;
    opacity: .55;
}
.resume-upload-error {
    text-align: left;
}
.resume-import-summary {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 25px 0;
}
.resume-import-summary span {
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--text-light);
    padding: 14px 10px;
}
.resume-import-summary strong {
    color: var(--primary);
    display: block;
    font-size: 22px;
}
.profile-choice-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    padding: 18px;
    position: relative;
    text-align: left;
    transition: var(--transition);
}
.profile-choice-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}
.profile-choice-card > span {
    align-items: center;
    align-self: center;
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--primary);
    display: flex;
    font-size: 22px;
    grid-row: 1 / 3;
    height: 44px;
    justify-content: center;
    width: 44px;
}
.profile-choice-card strong {
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: 16px;
}
.profile-choice-card small {
    color: var(--text-light);
    font-family: 'Jost', sans-serif;
    grid-column: 2 / 4;
    line-height: 1.4;
    margin-top: 3px;
}
.profile-choice-card em {
    background: #e8f8f2;
    border-radius: 50px;
    color: #14865f;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    padding: 4px 9px;
}

@media (max-width: 600px) {
    .auth-card-wizard {
        min-height: 0;
    }
    .signup-progress small {
        font-size: 10px;
    }
    .profile-choice-card {
        grid-template-columns: 48px 1fr;
    }
    .profile-choice-card em {
        display: none;
    }
    .profile-choice-card small {
        grid-column: 2;
    }
}

/* Perfil profissional do cadastro */
.is-hidden {
    display: none !important;
}
.auth-layout.is-profile-editor {
    display: block;
    max-width: 1240px;
}
.auth-layout.is-profile-editor .auth-intro,
.auth-card-wizard.is-profile-editor > .signup-progress {
    display: none;
}
.auth-card-wizard.is-profile-editor {
    padding: 32px;
    width: 100%;
}
.professional-profile-editor {
    text-align: left;
}
.professional-profile-heading {
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
}
.professional-profile-heading .auth-eyebrow {
    margin-bottom: 12px;
}
.professional-profile-heading h2 {
    color: var(--text);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    margin-bottom: 8px;
}
.professional-profile-heading p {
    color: var(--text-light);
    line-height: 1.6;
}
.ai-filled-badge {
    align-items: center;
    background: linear-gradient(135deg, #fff1e8, #fff8f2);
    border: 1px solid rgba(253, 93, 0, .24);
    border-radius: 999px;
    color: var(--primary);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 700;
    gap: 7px;
    padding: 9px 14px;
}
.profile-ai-alert,
.profile-saved-alert {
    align-items: center;
    border-radius: 14px;
    display: flex;
    gap: 13px;
    margin-bottom: 22px;
    padding: 14px 16px;
}
.profile-ai-alert {
    background: #fff8f2;
    border: 1px solid #fed7bd;
    color: #9a3f07;
}
.profile-saved-alert {
    background: #edf9f3;
    border: 1px solid #bde8d1;
    color: #176b46;
}
.profile-ai-alert > i,
.profile-saved-alert > i {
    font-size: 20px;
}
.profile-ai-alert div,
.profile-saved-alert div {
    display: grid;
    gap: 2px;
}
.profile-ai-alert span,
.profile-saved-alert span {
    font-size: 13px;
}
.professional-profile-shell {
    align-items: start;
    display: grid;
    gap: 26px;
    grid-template-columns: 255px minmax(0, 1fr);
}
.profile-form-navigation {
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 16px;
    display: grid;
    gap: 6px;
    padding: 10px;
    position: sticky;
    top: 20px;
}
.profile-step-button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 12px;
    color: var(--text-light);
    cursor: pointer;
    display: grid;
    font-family: inherit;
    gap: 10px;
    grid-template-columns: 38px 1fr auto;
    padding: 12px;
    text-align: left;
    transition: var(--transition);
}
.profile-step-button:hover,
.profile-step-button.is-active {
    background: var(--white);
    box-shadow: 0 5px 18px rgba(32, 20, 12, .06);
    color: var(--text);
}
.profile-step-button > span:first-child {
    align-items: center;
    background: #eeeeee;
    border-radius: 10px;
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}
.profile-step-button.is-active > span:first-child {
    background: var(--primary-light);
    color: var(--primary);
}
.profile-step-button > span:nth-child(2) {
    display: grid;
    gap: 2px;
}
.profile-step-button strong {
    font-size: 14px;
}
.profile-step-button small {
    color: var(--text-muted);
    font-size: 11px;
}
.profile-step-status {
    border-radius: 999px;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    justify-self: start;
    line-height: 1.2;
    margin-top: 3px;
    padding: 4px 7px;
}
.profile-step-status.is-missing {
    background: #f3f3f3;
    color: #777;
}
.profile-step-status.is-filling {
    background: #fff1e8;
    color: #b94b0a;
}
.profile-step-status.is-complete {
    background: #e8f7ef;
    color: #167048;
}
.profile-step-button > i {
    font-size: 10px;
    opacity: .45;
}
.profile-security-note {
    align-items: flex-start;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    font-size: 11px;
    gap: 8px;
    line-height: 1.45;
    margin: 8px 8px 2px;
    padding-top: 14px;
}
.professional-profile-form {
    min-width: 0;
}
.profile-form-step {
    display: none;
}
.profile-form-step.is-active {
    display: block;
}
.profile-section-title {
    align-items: center;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 13px;
    margin-bottom: 24px;
    padding-bottom: 18px;
}
.profile-section-title > span {
    align-items: center;
    background: var(--primary);
    border-radius: 11px;
    color: #fff;
    display: flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    width: 38px;
}
.profile-section-title h3 {
    color: var(--text);
    font-size: 20px;
    margin-bottom: 2px;
}
.profile-section-title p,
.profile-subsection > div:first-child p {
    color: var(--text-muted);
    font-size: 13px;
}
.profile-fields-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.profile-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}
.profile-field-wide {
    grid-column: 1 / -1;
}
.profile-field > label,
.profile-field > legend,
.profile-modalities legend {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}
.profile-field input:not([type="checkbox"]),
.profile-field select,
.profile-field textarea {
    background: #fbfbfb;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font: inherit;
    font-size: 14px;
    outline: none;
    padding: 12px 13px;
    transition: var(--transition);
    width: 100%;
}
.profile-field textarea {
    line-height: 1.55;
    resize: vertical;
}
.profile-field input:focus,
.profile-field select:focus,
.profile-field textarea:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(253, 93, 0, .09);
}
.profile-field input[readonly] {
    background: #f1f1f1;
    color: var(--text-muted);
}
.profile-field input.is-invalid,
.profile-field select.is-invalid,
.profile-field textarea.is-invalid {
    border-color: #dc3545;
}
.profile-field > small:not(.field-error) {
    color: var(--text-muted);
    font-size: 11px;
}
.profile-location-box {
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 13px;
    display: grid;
    gap: 16px;
    grid-template-columns: 150px 1fr;
    padding: 16px;
}
.profile-field-checkbox {
    align-self: end;
}
.profile-field-checkbox > label {
    align-items: center;
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    gap: 11px;
    min-height: 46px;
    padding: 10px 13px;
}
.profile-field-checkbox label > span {
    display: grid;
    gap: 1px;
}
.profile-field-checkbox small {
    color: var(--text-muted);
    font-weight: 400;
}
.profile-modalities {
    border: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
}
.profile-modalities legend {
    grid-column: 1 / -1;
    margin-bottom: 1px;
}
.profile-modalities label {
    cursor: pointer;
    position: relative;
}
.profile-modalities input {
    opacity: 0;
    position: absolute;
}
.profile-modalities span {
    align-items: center;
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    padding: 12px;
}
.profile-modalities input:checked + span {
    background: var(--primary-light);
    border-color: rgba(253, 93, 0, .35);
    color: var(--primary);
}
.profile-step-actions {
    align-items: center;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
}
.profile-repeater {
    display: grid;
    gap: 12px;
}
.profile-repeater-list {
    display: grid;
    gap: 14px;
}
.profile-repeat-card {
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 17px;
    position: relative;
}
.profile-repeat-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.profile-repeat-header strong {
    color: var(--text);
    font-size: 14px;
}
.profile-repeat-header button,
.profile-inline-remove {
    background: transparent;
    border: 0;
    color: #b86565;
    cursor: pointer;
}
.profile-add-row {
    align-items: center;
    align-self: start;
    background: #fff;
    border: 1px dashed #f0a676;
    border-radius: 10px;
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    gap: 7px;
    justify-self: start;
    padding: 10px 13px;
}
.profile-subsection {
    border-top: 1px solid var(--border);
    margin-top: 26px;
    padding-top: 24px;
}
.profile-subsection > div:first-child h4 {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 3px;
}
.profile-subsection .profile-repeater {
    margin-top: 14px;
}
.profile-repeater.compact .profile-repeat-card {
    padding-right: 44px;
}
.profile-inline-remove {
    position: absolute;
    right: 14px;
    top: 14px;
}
.profile-current-job label {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 8px;
}
.profile-resume-status {
    align-items: center;
    background: #fff8f2;
    border: 1px solid #fed7bd;
    border-radius: 13px;
    display: grid;
    gap: 12px;
    grid-template-columns: 42px 1fr auto;
    margin-top: 26px;
    padding: 14px;
}
.profile-resume-status > span {
    align-items: center;
    background: #fff;
    border-radius: 10px;
    color: var(--primary);
    display: flex;
    font-size: 20px;
    height: 42px;
    justify-content: center;
}
.profile-resume-status > div {
    display: grid;
    gap: 2px;
}
.profile-resume-status small {
    color: var(--text-muted);
}
.profile-resume-status em {
    color: var(--primary);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}
.profile-overview-hero {
    align-items: center;
    background: linear-gradient(135deg, #fff8f2 0%, #fff 65%);
    border: 1px solid #f4d7c4;
    border-radius: 18px;
    display: grid;
    gap: 18px;
    grid-template-columns: 64px 1fr auto;
    margin-bottom: 20px;
    padding: 20px;
}
.profile-overview-avatar {
    align-items: center;
    background: var(--primary);
    border-radius: 18px;
    color: #fff;
    display: flex;
    font-size: 25px;
    height: 64px;
    justify-content: center;
    width: 64px;
}
.profile-overview-eyebrow {
    color: var(--primary);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 3px;
    text-transform: uppercase;
}
.profile-overview-hero h3 {
    color: var(--text);
    font-size: clamp(20px, 2.5vw, 28px);
    margin-bottom: 7px;
}
.profile-overview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
}
.profile-overview-meta span {
    align-items: center;
    color: var(--text-light);
    display: inline-flex;
    font-size: 12px;
    gap: 6px;
}
.profile-overview-meta i {
    color: var(--primary);
}
.profile-overview-status {
    align-items: center;
    background: #f4f4f4;
    border-radius: 999px;
    color: var(--text-muted);
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    padding: 8px 11px;
}
.profile-overview-status.is-complete {
    background: #e8f7ef;
    color: #167048;
}
.profile-overview-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.profile-overview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    min-width: 0;
    padding: 17px;
}
.profile-overview-wide {
    grid-column: 1 / -1;
}
.profile-overview-card > header {
    align-items: center;
    display: flex;
    gap: 11px;
    margin-bottom: 15px;
}
.profile-overview-card > header > span {
    align-items: center;
    background: var(--primary-light);
    border-radius: 10px;
    color: var(--primary);
    display: flex;
    flex: 0 0 auto;
    height: 38px;
    justify-content: center;
    width: 38px;
}
.profile-overview-card h4 {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 1px;
}
.profile-overview-card header p {
    color: var(--text-muted);
    font-size: 11px;
}
.profile-overview-summary {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}
.profile-overview-summary em,
.profile-overview-tags em {
    color: var(--text-muted);
    font-size: 12px;
}
.profile-overview-details {
    display: grid;
    gap: 9px;
    margin: 0;
}
.profile-overview-details > div {
    align-items: start;
    border-bottom: 1px solid #f2f2f2;
    display: grid;
    gap: 10px;
    grid-template-columns: 105px 1fr;
    padding-bottom: 8px;
}
.profile-overview-details > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.profile-overview-details dt,
.profile-overview-groups strong {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
}
.profile-overview-details dd {
    color: var(--text);
    font-size: 12px;
    margin: 0;
    overflow-wrap: anywhere;
    text-align: right;
}
.profile-overview-groups {
    border-top: 1px solid var(--border);
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
}
.profile-overview-groups > div {
    display: grid;
    gap: 7px;
}
.profile-overview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.profile-overview-tags span {
    background: #f7f7f7;
    border: 1px solid #ededed;
    border-radius: 999px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 9px;
}
.profile-overview-timeline {
    display: grid;
    gap: 15px;
}
.profile-overview-timeline > div {
    display: grid;
    gap: 12px;
    grid-template-columns: 10px 1fr;
}
.profile-overview-timeline > div > span {
    background: var(--primary);
    border: 3px solid #ffe4d2;
    border-radius: 50%;
    height: 10px;
    margin-top: 5px;
    width: 10px;
}
.profile-overview-timeline strong {
    color: var(--text);
    display: block;
    font-size: 13px;
}
.profile-overview-timeline p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 2px;
}
.profile-overview-timeline small {
    color: var(--text-muted);
    display: block;
    font-size: 10px;
    margin-top: 3px;
}
.profile-overview-timeline .profile-overview-description {
    border-left: 2px solid #eeeeee;
    margin-top: 8px;
    padding-left: 10px;
}
.profile-overview-empty {
    color: var(--text-muted);
    font-size: 12px;
}
.profile-overview-list,
.profile-overview-links {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.profile-overview-list li {
    align-items: start;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}
.profile-overview-list strong {
    color: var(--text);
    font-size: 12px;
}
.profile-overview-list span,
.profile-overview-list li {
    color: var(--text-muted);
    font-size: 11px;
}
.profile-overview-links li {
    align-items: center;
    color: var(--text-light);
    display: flex;
    font-size: 12px;
    gap: 9px;
}
.profile-overview-links i {
    color: var(--primary);
    text-align: center;
    width: 17px;
}
.profile-overview-links a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}
.profile-overview-links a:hover {
    color: var(--primary);
}

@media (max-width: 900px) {
    .auth-card-wizard.is-profile-editor {
        padding: 24px;
    }
    .professional-profile-shell {
        grid-template-columns: 1fr;
    }
    .profile-form-navigation {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        position: static;
    }
    .profile-step-button {
        grid-template-columns: 34px 1fr;
    }
    .profile-step-button > i,
    .profile-step-button small,
    .profile-security-note {
        display: none;
    }
}

@media (max-width: 620px) {
    .auth-main:has(.auth-layout.is-profile-editor) {
        padding-top: 24px;
    }
    .auth-card-wizard.is-profile-editor {
        border-radius: 16px;
        padding: 18px;
    }
    .profile-page .auth-card-wizard.is-profile-editor:has(> .profile-choice-view:not(.is-hidden)) {
        margin-top: 8px;
    }
    .professional-profile-heading {
        display: grid;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    .profile-overview-hero {
        grid-template-columns: 52px 1fr;
        padding: 16px;
    }
    .profile-overview-avatar {
        border-radius: 14px;
        height: 52px;
        width: 52px;
    }
    .profile-overview-status {
        grid-column: 1 / -1;
        justify-self: start;
    }
    .profile-overview-grid {
        grid-template-columns: 1fr;
    }
    .profile-overview-wide {
        grid-column: auto;
    }
    .profile-overview-details > div {
        grid-template-columns: 90px 1fr;
    }
    .profile-form-navigation {
        display: flex;
        overflow-x: auto;
    }
    .profile-step-button {
        flex: 0 0 150px;
    }
    .profile-fields-grid,
    .profile-location-box,
    .profile-modalities {
        grid-template-columns: 1fr;
    }
    .profile-modalities legend {
        grid-column: auto;
    }
    .profile-step-actions {
        align-items: stretch;
        flex-direction: column-reverse;
        gap: 10px;
    }
    .profile-step-actions .btn {
        justify-content: center;
        width: 100%;
    }
    .profile-resume-status {
        grid-template-columns: 42px 1fr;
    }
    .profile-resume-status em {
        grid-column: 2;
    }
}
