/* Sevendyne / Empever portal — theme aligned with PayrollApp (`payrolls/src/app/globals.css`) */

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

:root {
    /* PayrollApp (shadcn) light theme — mirrors payrolls/src/app/globals.css */
    --background: oklch(1 0 0);
    --foreground: oklch(0.145 0 0);
    --card: oklch(1 0 0);
    --card-foreground: oklch(0.145 0 0);
    --muted: oklch(0.97 0 0);
    --muted-foreground: oklch(0.556 0 0);
    --primary: oklch(0.205 0 0);
    --primary-foreground: oklch(0.985 0 0);
    --primary-hover: oklch(0.28 0 0);
    --secondary: oklch(0.97 0 0);
    --secondary-foreground: oklch(0.205 0 0);
    --border: oklch(0.922 0 0);
    --ring: oklch(0.708 0 0);
    --radius: 0.625rem;
    /* Legacy aliases (existing site selectors) */
    --primary-color: var(--primary);
    --secondary-color: var(--primary-hover);
    --accent-color: var(--muted-foreground);
    --text-dark: var(--foreground);
    --text-light: var(--muted-foreground);
    --bg-light: var(--muted);
    --bg-white: var(--background);
    --border-color: var(--border);
    --success-color: oklch(0.55 0.12 145);
    --warning-color: oklch(0.75 0.15 85);
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--background);
    box-shadow: 0 1px 2px oklch(0 0 0 / 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.logo h1 a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
}

.logo .tagline {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin: 0;
    margin-top: 0.25rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--foreground);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0;
    padding-top: 0.75rem;
    list-style: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

/* Keep dropdown open when hovering over it */
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Add a pseudo-element to bridge the gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
    background: transparent;
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--muted);
    color: var(--foreground);
}

.cta-button {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s ease, opacity 0.2s ease;
    border: 1px solid transparent;
}

.cta-button:hover {
    background: var(--primary-hover);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--muted);
    color: var(--foreground);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--foreground);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--muted-foreground);
    opacity: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--muted-foreground);
    opacity: 1;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border: 1px solid transparent;
    box-shadow: 0 1px 2px oklch(0 0 0 / 0.06);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 2px 6px oklch(0 0 0 / 0.08);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: oklch(0.93 0 0);
    color: var(--foreground);
}

/* Service / Detail Pages */
.service-hero {
    background: var(--muted);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.service-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.service-hero-text h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px oklch(0 0 0 / 0.04);
}

.service-hero .hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.service-hero .hero-stats {
    color: var(--foreground);
    font-weight: 600;
    margin-bottom: 2rem;
}

.service-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero .btn-primary {
    box-shadow: 0 1px 2px oklch(0 0 0 / 0.06);
}

.service-hero .btn-secondary {
    border-color: var(--border);
}

.service-detail {
    padding: 4rem 0;
}

.track-record {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0 3rem;
}

.track-item {
    background: var(--card);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 8px 24px oklch(0 0 0 / 0.06);
}

.track-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.track-label {
    color: var(--text-light);
    margin-top: 0.35rem;
}

.track-item .btn-small {
    margin-top: 1rem;
}

.btn-small {
    display: inline-block;
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius);
    background: var(--primary-color);
    color: var(--primary-foreground);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-small:hover {
    background: var(--secondary-color);
}

/* Page Header */
.page-header {
    background: var(--muted);
    color: var(--foreground);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    opacity: 1;
}

/* Trust Section */
.trust-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    text-align: center;
}

.trust-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Overview */
.services-overview, .services-detail {
    padding: 4rem 0;
}

.services-overview h2, .services-detail h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px oklch(0 0 0 / 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px oklch(0 0 0 / 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Service Details */
.service-section {
    margin-bottom: 4rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-header h2 {
    margin-bottom: 0.5rem;
}

.service-icon-large {
    font-size: 4rem;
}

.service-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-features h3, .service-benefits h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features ul, .service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-features li, .service-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.service-pricing-preview {
    grid-column: 1 / -1;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-pricing-preview strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.service-divider {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 4rem 0;
}

/* Service Comparison Section */
.service-comparison {
    background: var(--bg-light);
    padding: 4rem 0;
}

.service-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    box-shadow: 0 2px 8px oklch(0 0 0 / 0.06);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--primary-foreground);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table td {
    color: var(--text-dark);
}

.comparison-table td strong {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* About Story Section */
.about-story {
    padding: 4rem 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Approach Section */
.approach-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.approach-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Sevendyne Seeks Section */
.why-Sevendyne Seeks {
    background: var(--bg-light);
    padding: 4rem 0;
}

.why-Sevendyne Seeks h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.reason-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose / Expertise */
.why-choose, .expertise-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.expertise-section h2, .why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.why-grid, .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-item, .expertise-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.why-icon, .expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-item h3, .expertise-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.why-item p, .expertise-card p {
    color: var(--text-light);
}

/* Portfolio */
.portfolio-note {
    background: #fff3cd;
    padding: 2rem 0;
}

.note-box {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--warning-color);
}

.note-box h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.portfolio-section {
    padding: 4rem 0;
}

.portfolio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.portfolio-header {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-header h3 {
    font-size: 1.3rem;
}

.location-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.portfolio-body {
    padding: 1.5rem;
}

.project-type, .project-desc {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.project-details {
    margin: 1.5rem 0;
}

.project-details h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.project-details ul {
    list-style: none;
    padding: 0;
}

.project-details li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    font-size: 0.9rem;
}

.stat-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

/* Client Success Section */
.client-success {
    padding: 4rem 0;
}

.client-success h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary-color);
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.success-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.success-card p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Industries Section */
.industries {
    background: var(--bg-light);
    padding: 4rem 0;
}

.industries h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.industry-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.industry-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Industries & Technologies */
.industries-served, .technologies-section {
    background: var(--bg-light);
    padding: 3rem 0;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.industry-badge {
    background: var(--card);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-category {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
}

.tech-category h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Pricing */
.pricing-intro, .pricing-plans, .detailed-pricing, .additional-fees, .pricing-faq {
    padding: 4rem 0;
}

.pricing-plans {
    background: var(--bg-light);
}

.pricing-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detailed-pricing h2, .additional-fees h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px oklch(0 0 0 / 0.06);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px oklch(0 0 0 / 0.08);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--primary-foreground);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.period {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.plan-features h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--primary-foreground);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 2rem;
    transition: background 0.3s;
}

.btn-plan:hover {
    background: var(--secondary-color);
}

.pricing-table-container {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--card);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fee-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.fee-card h3 {
    margin-bottom: 0.5rem;
}

.fee-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fee-desc {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.fee-list {
    list-style: none;
    padding: 0;
}

.fee-list li {
    padding: 0.35rem 0;
    color: var(--text-dark);
}

/* Contact */
.contact-section {
    padding: 4rem 0;
    background: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-info {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px oklch(0 0 0 / 0.05);
    border: 1px solid var(--border);
}

.contact-info h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-info p strong {
    color: var(--text-dark);
    display: inline-block;
    min-width: 120px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px oklch(0 0 0 / 0.05);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* File Input Custom Styling */
.form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed var(--border-color);
    background: var(--bg-light);
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: var(--muted);
}

.form-group input[type="file"]:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
}

/* Style the file input button - Chrome/Safari */
.form-group input[type="file"]::-webkit-file-upload-button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
    background: var(--primary-hover);
}

.form-group input[type="file"]::-webkit-file-upload-button:active {
    background: oklch(0.22 0 0);
}

/* Style the file input button - Firefox and Modern Browsers */
.form-group input[type="file"]::file-selector-button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: var(--primary-hover);
}

.form-group input[type="file"]::file-selector-button:active {
    background: oklch(0.22 0 0);
}

/* Additional styling for file input label */
.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 2rem;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-dark);
    margin: 0.25rem 0;
}

.info-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

.quick-links {
    margin-top: 2rem;
}

.quick-links h3 {
    margin-bottom: 1rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links a {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.quick-links a:hover {
    color: var(--secondary-color);
}

/* Stats Section */
.stats-section, .portfolio-stats {
    background: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-box .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    display: block;
    color: var(--text-light);
}

/* FAQ */
.faq-grid, .contact-faq {
    padding: 2rem 0;
}

.contact-faq {
    background: var(--bg-light);
    padding: 4rem 0;
}

.contact-faq h2, .pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: var(--muted);
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--card);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px oklch(0 0 0 / 0.06);
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.coming-soon-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.coming-soon-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.coming-soon-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.service-summary {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: left;
}

.service-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-summary ul {
    list-style: none;
    padding: 0;
}

.service-summary li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-foreground);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: oklch(0.92 0 0);
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-white, .btn-secondary-white {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-white {
    background: var(--primary-foreground);
    color: var(--primary);
}

.btn-primary-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px oklch(0 0 0 / 0.15);
    opacity: 0.95;
}

.btn-secondary-white {
    background: transparent;
    color: var(--primary-foreground);
    border: 1px solid oklch(0.985 0 0 / 0.45);
}

.btn-secondary-white:hover {
    background: oklch(0.985 0 0 / 0.12);
    color: var(--primary-foreground);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p, .footer-col ul {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-col ul li {
    margin: 0;
}

.footer-col a {
    color: oklch(0.985 0 0 / 0.78);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-foreground);
}

.footer-tagline {
    color: oklch(0.985 0 0 / 0.65);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-hours {
    color: oklch(0.985 0 0 / 0.65);
    font-size: 0.9rem;
}

.footer-affiliation {
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid oklch(0.985 0 0 / 0.12);
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: center;
    color: oklch(0.985 0 0 / 0.78);
}

.footer-affiliation a {
    color: var(--primary-foreground);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-affiliation a:hover {
    opacity: 0.92;
}

.footer-bottom {
    border-top: 1px solid oklch(0.985 0 0 / 0.12);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: oklch(0.985 0 0 / 0.78);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-foreground);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-actions .btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
}

.tag-coming {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 10px;
    background: var(--muted);
    color: var(--muted-foreground);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding: 0.5rem 0 0.5rem 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 0;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Show compact Get Started button on mobile */
    .cta-button {
        display: inline-block;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info p strong {
        min-width: 100px;
    }
    
    .pricing-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-header {
        flex-direction: column;
        text-align: center;
    }
    
    .location-badge {
        position: static;
        margin-top: 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid, .approach-content, .reasons-grid, .success-grid, .industries-grid, .fees-grid, .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .pricing-card, .portfolio-card {
        margin-bottom: 1rem;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-content {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-content h1 {
        font-size: 1.8rem;
    }
    
    .coming-soon-content h2 {
        font-size: 1.4rem;
    }
    
    .coming-soon-actions {
        flex-direction: column;
    }
    
    .coming-soon-actions .btn-primary,
    .coming-soon-actions .btn-secondary {
        width: 100%;
    }
}

/* ===================================
   CANDIDATE ENROLLMENT & LISTING STYLES
   =================================== */

/* Join Page Hero */
.join-hero {
    background: var(--muted);
    color: var(--foreground);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.join-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--foreground);
}

.join-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--muted-foreground);
    opacity: 1;
}

.join-benefits {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.benefit-item p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    opacity: 1;
}

.join-hero-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-box-join {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.stat-box-join .stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.stat-box-join .stat-label {
    font-size: 0.9375rem;
    opacity: 1;
    color: var(--muted-foreground);
}

/* Enrollment Form */
.enrollment-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.enrollment-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.enrollment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.enrollment-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.enrollment-header p {
    font-size: 1.0625rem;
    color: var(--text-light);
}

.enrollment-form {
    display: grid;
    gap: 2.5rem;
}

.form-section {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 2rem;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    padding: 0.25rem;
    transition: background 0.2s;
}

.checkbox-group label:not([style]):hover {
    background: var(--card);
    border-radius: 4px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.btn-submit-large {
    padding: 1.25rem 3rem;
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-large:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px oklch(0 0 0 / 0.1);
}

.btn-submit-large:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Why Join Section */
.why-join-section {
    padding: 4rem 0;
}

.why-join-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-join-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.why-join-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-join-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Privacy Notice */
.privacy-notice {
    background: #fffbeb;
    padding: 2rem 0;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
}

.notice-box {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.notice-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.notice-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Candidates Grid */
.candidates-section {
    padding: 4rem 0;
}

.candidates-header {
    text-align: center;
    margin-bottom: 3rem;
}

.candidates-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.candidates-header p {
    color: var(--text-light);
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

@media (min-width: 1200px) {
    .candidates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.candidate-card {
    background: var(--card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.candidate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.candidate-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.candidate-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.candidate-info-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.availability-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.status-available {
    background: #d1fae5;
    color: #065f46;
}

.status-notice {
    background: #fef3c7;
    color: #92400e;
}

.candidate-details {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--text-light);
}

.candidate-skills {
    margin-bottom: 1.5rem;
}

.candidate-skills strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.candidate-contact-locked {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.locked-info {
    text-align: center;
}

.lock-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.locked-info p {
    margin: 0.25rem 0;
    font-size: 0.9375rem;
}

.locked-info strong {
    color: #991b1b;
}

.locked-details {
    font-size: 0.8125rem;
    color: #7f1d1d;
}

.candidate-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.candidate-actions button {
    background: var(--card);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.candidate-actions button:hover {
    background: var(--primary-color);
    color: var(--primary-foreground);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px oklch(0 0 0 / 0.1);
}

.candidate-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-btn {
    background: var(--card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s;
    min-width: 40px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--primary-foreground);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px oklch(0 0 0 / 0.1);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: var(--primary-foreground);
    border-color: var(--primary-color);
    font-weight: 600;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: var(--text-light);
    padding: 0 0.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pagination-controls {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

.candidate-footer small {
    color: var(--text-light);
    font-size: 0.8125rem;
}

/* Shortlist Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card);
    padding: 3rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Large Modal for Resume Preview */
.modal-content-large {
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Resume Preview Styles */
.resume-preview-content {
    margin-top: 2rem;
    max-height: 600px;
    overflow-y: auto;
}

.resume-preview-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.resume-privacy-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #92400e;
}

.resume-section {
    background: var(--card);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.resume-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.resume-details p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.resume-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.resume-experience p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.resume-experience p:empty {
    display: none;
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-submit-modal {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-modal:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.modal-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.modal-message.success {
    background: #d1fae5;
    color: #065f46;
}

.modal-message.error {
    background: #fee2e2;
    color: #991b1b;
}

/* New Homepage Styles */
.featured-candidates {
    padding: 4rem 0;
    background: var(--bg-light);
}

.featured-contact-banner {
    margin: 3rem 0 2rem;
    background: var(--card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.featured-contact-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.featured-contact-text p {
    color: var(--text-light);
    margin: 0;
}

.featured-contact-actions {
    margin-left: auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-candidates .section-subtitle {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 720px;
}

.featured-candidates h2 {
    text-align: center;
}

.featured-candidates .candidates-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .featured-candidates .candidates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.featured-footnote {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.featured-footnote a {
    color: var(--primary-color);
    font-weight: 600;
}

.featured-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-actions .btn-primary,
.featured-actions .btn-secondary {
    min-width: 230px;
    text-align: center;
    border: 1px solid var(--border-color);
    background: var(--background);
}

.featured-actions .btn-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.featured-actions .btn-primary:hover {
    background: var(--primary-color);
    color: var(--primary-foreground);
}

.featured-actions .btn-secondary {
    color: var(--text-dark);
}

.featured-actions .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .featured-contact-banner {
        flex-direction: column;
        text-align: center;
    }

    .featured-contact-actions {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .featured-actions .btn-primary,
    .featured-actions .btn-secondary,
    .btn-outline {
        width: 100%;
    }
}

/* Candidate Filters */
.filters-section {
    background: var(--card);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 220px;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--card);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px oklch(0.708 0 0 / 0.35);
}

.btn-reset {
    padding: 0.9rem 1.75rem;
    border: 1px solid var(--primary-color);
    background: var(--background);
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: var(--primary-color);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group,
    .btn-reset {
        width: 100%;
    }
}

/* About Page */
.company-story {
    padding: 4rem 0;
    background: var(--background);
}

.story-content {
    display: grid;
    gap: 2.5rem;
}

.story-intro {
    font-size: 1.05rem;
    color: var(--text-light);
}

.timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: start;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.story-present {
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-services {
    padding: 4rem 0;
}

.about-services-grid {
    display: grid;
    gap: 2rem;
}

.about-service-card {
    background: var(--card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.about-service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-service-card ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.25rem;
    color: var(--text-light);
}

.about-service-link {
    font-weight: 600;
    color: var(--primary-color);
}

.global-presence {
    padding: 4rem 0;
    background: var(--muted);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.regions-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.region-card {
    background: var(--card);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px oklch(0 0 0 / 0.05);
}

.team-partnerships {
    padding: 4rem 0;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: var(--card);
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    margin-top: 0.45rem;
}

.partners-list {
    display: grid;
    gap: 1.5rem;
}

.partner-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
}

@media (max-width: 992px) {
    .service-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .service-hero .hero-actions {
        justify-content: center;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}

/* Educates Tracks */
.educates-tracks {
    padding: 4rem 0;
}

.educates-tracks .section-subtitle {
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 680px;
}

.track-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.track-card {
    background: var(--card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.track-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.track-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.track-highlights {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 0;
}

.track-highlights li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    list-style: none;
}

.track-highlights li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.hero-stat strong,
.hero-stat small,
.hero-stat span,
.hero-stat label {
    color: var(--foreground);
}

.hero-cta .btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border: 1px solid transparent;
}

.hero-cta .btn-primary:hover {
    background: var(--primary-hover);
}

.hero-cta .btn-secondary {
    color: var(--foreground);
    border-color: var(--border);
    background: var(--secondary);
}

.hero-cta .btn-secondary:hover {
    background: oklch(0.93 0 0);
}

.hero-stats .stat-number,
.hero-stats .stat-label {
    color: var(--foreground);
}

.hero .stat-number,
.hero .stat-label {
    color: var(--muted-foreground);
}

.candidate-scroll {
    max-height: 1500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.candidate-scroll::-webkit-scrollbar {
    width: 10px;
}

.candidate-scroll::-webkit-scrollbar-thumb {
    background: oklch(0.708 0 0 / 0.45);
    border-radius: 999px;
}

.candidate-scroll::-webkit-scrollbar-track {
    background: var(--muted);
}

.featured-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.featured-pagination .pagination-btn {
    border: 1px solid var(--border-color);
    background: var(--card);
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-pagination .pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.featured-pagination .pagination-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: transparent;
    box-shadow: 0 1px 3px oklch(0 0 0 / 0.12);
}

.featured-pagination .pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.featured-roster {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px oklch(0 0 0 / 0.06);
    padding: 2.5rem;
    margin-top: 2.5rem;
}

.featured-candidates .candidates-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .featured-candidates .candidates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.featured-footnote {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Empever home: skilled grid + platform flow --- */
.sf-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.sf-section--muted {
    background: var(--bg-light);
}

.sf-shortlist-hint {
    max-width: 52rem;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
}

.sf-pro-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .sf-pro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .sf-pro-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.sf-pro-card {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    background: var(--card);
    box-shadow: 0 1px 3px oklch(0 0 0 / 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sf-pro-card--shortlisted {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px oklch(0 0 0 / 0.08);
}

.sf-pro-card__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
    background: var(--muted);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.65rem;
}

.sf-pro-card__name {
    font-size: 1.15rem;
    margin: 0 0 0.25rem;
    color: var(--text-dark);
}

.sf-pro-card__role {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0 0 0.5rem;
}

.sf-pro-card__skills {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0 0 1rem;
    line-height: 1.45;
}

.sf-pro-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.sf-btn-shortlist {
    flex: 1 1 auto;
    min-width: 8rem;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sf-btn-shortlist:hover {
    background: var(--muted);
}

.sf-pro-card--shortlisted .sf-btn-shortlist {
    background: var(--primary-color);
    color: var(--primary-foreground);
}

.sf-link-muted {
    font-size: 0.82rem;
    color: var(--text-light);
}

.sf-link-muted:hover {
    color: var(--primary-color);
}

.sf-dev-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.sf-flow-layout {
    display: grid;
    gap: 1.75rem;
    align-items: stretch;
    margin-top: 1rem;
}

@media (min-width: 960px) {
    .sf-flow-layout {
        grid-template-columns: 1fr minmax(220px, 0.9fr) 1fr;
        gap: 1.25rem;
    }
}

/* Empever home: proactive top — on-demand courses + hire rail */
.sf-hero-compact {
    padding: 2.25rem 0 1.75rem;
}

.sf-hero-compact .hero-subtitle {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.sf-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.35rem;
}

.sf-hero-actions .btn-primary,
.sf-hero-actions .btn-secondary {
    min-width: 10rem;
    text-align: center;
}

.sf-section--top {
    padding-top: 2.5rem;
}

.sf-proactive-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.sf-proactive-head h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    color: var(--text-dark);
}

.sf-proactive-head p {
    margin: 0;
    max-width: 36rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
}

.sf-course-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 560px) {
    .sf-course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .sf-course-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.sf-course-card {
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 1.15rem 1.2rem;
    background: var(--card);
    box-shadow: 0 1px 3px oklch(0 0 0 / 0.05);
    border-top: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 9rem;
}

.sf-course-card__mode {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
    background: var(--muted);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    width: fit-content;
}

.sf-course-card h3 {
    margin: 0;
    font-size: 1.02rem;
    color: var(--text-dark);
    line-height: 1.35;
}

.sf-course-card__meta {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.45;
}

.sf-course-card__outcome {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-dark);
    flex: 1;
}

.sf-course-card .btn-primary,
.sf-course-card .btn-secondary {
    margin-top: 0.35rem;
    text-align: center;
    font-size: 0.88rem;
    padding: 0.5rem 0.75rem;
}

.sf-rail-cta {
    margin: 1.35rem 0 0;
    text-align: center;
    font-size: 0.92rem;
}

.sf-rail-cta a {
    font-weight: 600;
}

/* Empever home — AI-era narrative & hero */
.sf-home-ai-hero {
    background: linear-gradient(
        165deg,
        oklch(0.985 0.025 265) 0%,
        oklch(0.992 0.01 280) 42%,
        oklch(0.975 0.02 250) 100%
    );
    border-bottom: 1px solid var(--border-color);
    padding: 2.75rem 0 2.6rem;
}

.sf-home-ai-hero h1 {
    font-size: clamp(1.65rem, 4.2vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    max-width: 54rem;
    margin: 0 auto;
    text-align: center;
    color: var(--foreground);
}

.sf-home-ai-lede {
    max-width: 46rem;
    margin: 1.1rem auto 0;
    text-align: center;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    line-height: 1.65;
    color: var(--muted-foreground);
}

.sf-home-ai-grid {
    display: grid;
    gap: 0.75rem;
    max-width: 44rem;
    margin: 1.65rem auto 0;
}

@media (min-width: 560px) {
    .sf-home-ai-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 48rem;
    }
}

.sf-home-ai-pill {
    background: var(--card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--foreground);
    box-shadow: 0 1px 2px oklch(0 0 0 / 0.04);
}

.sf-home-ai-pill strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.sf-course-card__ai {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    line-height: 1.45;
    font-style: italic;
    border-left: 2px solid oklch(0.75 0.08 250);
    padding-left: 0.55rem;
}

.sf-section-ai-courses .sf-proactive-head {
    margin-bottom: 1.5rem;
}

/* Workspace dashboard — embedded apps */
.sf-dash-body .sf-dash-page-header {
    padding-bottom: 0.75rem;
}

.sf-dash-toolbar-wrap {
    max-width: 1200px;
}

.sf-dash-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.65rem 0 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.sf-dash-toolbar-note {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted-foreground);
    flex: 1;
    min-width: 12rem;
}

.sf-dash-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.sf-dash-frame-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.sf-dash-frame {
    display: block;
    width: 100%;
    min-height: min(78vh, 920px);
    height: 78vh;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--muted);
}

.sf-dash-frame-fallback {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    text-align: center;
}

@media (max-width: 640px) {
    .sf-dash-frame {
        height: 70vh;
        min-height: 420px;
    }
}

/* Workspace dashboard — slim shell (header + footer only) */
.sf-dash-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header--dash-slim {
    box-shadow: 0 1px 0 var(--border-color);
}

.nav-container--dash-slim {
    padding: 0.4rem 20px;
    min-height: auto;
}

.logo--dash-slim h1 {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.2;
}

.logo--dash-slim .tagline {
    display: none;
}

.nav-menu--dash {
    gap: 0.35rem 0.75rem;
}

.nav-menu--dash a {
    font-size: 0.88rem;
}

.cta-button--dash-slim {
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
}

.sf-dash-main-spacer {
    flex: 1;
    min-height: 0.5rem;
}

/* Full-viewport iframe between slim header and footer */
.sf-dash-app-host {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    position: relative;
}

.sf-dash-frame-fill {
    flex: 1;
    width: 100%;
    min-height: 240px;
    border: 0;
    background: var(--muted);
}

.sf-dash-fallback {
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    text-align: center;
}

.footer--dash-slim {
    padding: 0.15rem 0;
    margin-top: auto;
}

.footer--dash-slim .container--dash-footer {
    max-width: 1200px;
    padding: 0 10px;
}

.sf-dash-footer-single {
    margin: 0;
    text-align: center;
    font-size: 0.65rem;
    line-height: 1.25;
    color: var(--muted-foreground);
}

.sf-dash-footer-single a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sf-dash-footer-single a:hover {
    color: var(--foreground);
}

.sf-dash-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    font-size: 0.8rem;
    margin: 0 0 0.35rem;
}

.sf-dash-footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
}

.sf-dash-footer-links a:hover {
    color: var(--foreground);
    text-decoration: underline;
}

.sf-dash-footer-brand {
    margin: 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

.sf-dash-port-hint {
    margin: 0.35rem 0 0;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--muted-foreground);
    word-break: break-all;
}

.sf-dash-footer-copy {
    margin: 0.25rem 0 0;
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted-foreground);
}

/* Empever course booking wizard */
.sf-booking-page .join-subtitle {
    max-width: 42rem;
}

.sf-booking-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.sf-booking-steps li {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted-foreground);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--background);
}

.sf-booking-steps li.is-active {
    color: var(--primary-foreground);
    background: var(--primary);
    border-color: var(--primary);
}

.sf-booking-steps li.is-done {
    color: var(--success-color);
    border-color: oklch(0.7 0.1 145);
    background: oklch(0.97 0.02 145);
}

.sf-booking-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.sf-booking-fieldset[hidden] {
    display: none !important;
}

.sf-calendly-wrap {
    min-height: 640px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    margin: 1rem 0 1.25rem;
}

.sf-calendly-wrap .calendly-inline-widget {
    min-width: 100%;
    height: 640px;
}

.sf-booking-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
    align-items: center;
}

.sf-course-card__includes {
    margin: 0.25rem 0 0 1rem;
    padding: 0;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    line-height: 1.45;
}

.sf-course-card__includes li {
    margin-bottom: 0.2rem;
}

/* Empever home: dual path (hiring vs courses) — no external app links */
.sf-paths {
    padding: 0 0 2.5rem;
}

.sf-path-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sf-path-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.sf-path-card {
    border-radius: var(--radius);
    padding: 1.6rem 1.45rem;
    border: 1px solid var(--border-color);
    background: var(--card);
    box-shadow: 0 8px 28px oklch(0 0 0 / 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
}

.sf-path-card--hire {
    border-top: 4px solid var(--primary);
}

.sf-path-card--learn {
    border-top: 4px solid oklch(0.45 0 0);
}

.sf-path-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.sf-path-lead {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.55;
}

.sf-path-card ul {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.55;
}

.sf-path-card li + li {
    margin-top: 0.35rem;
}

.sf-path-actions {
    margin-top: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sf-path-actions .btn-primary,
.sf-path-actions .btn-secondary {
    text-align: center;
    justify-content: center;
}

.sf-path-micro {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.45;
}

.sf-path-automation {
    margin: 1rem auto 0;
    max-width: 40rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* login.html — three workspace entry points */
.sf-login-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .sf-login-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sf-login-intro {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.55;
}

.sf-login-note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.sf-login-creds {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--muted);
    text-align: left;
}

.sf-login-creds__label {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.sf-login-creds__row {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: var(--foreground);
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    align-items: baseline;
}

.sf-login-creds__row span {
    min-width: 4.5rem;
    color: var(--muted-foreground);
    font-size: 0.8rem;
}

.sf-login-creds__row code {
    font-size: 0.82rem;
    padding: 0.12rem 0.4rem;
    border-radius: calc(var(--radius) - 2px);
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
}

.sf-flow-layout--dual {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .sf-flow-layout--dual {
        grid-template-columns: 1fr 1fr;
    }
}

.nav-menu--compact {
    gap: 0.35rem;
}

.sf-flow-column {
    padding: 0.25rem 0;
}

.sf-flow-title {
    font-size: 1.05rem;
    margin: 0 0 1rem;
    color: var(--secondary-color);
}

.sf-flow-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-flow-steps li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-dark);
}

.sf-flow-steps li:last-child {
    margin-bottom: 0;
}

.sf-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--primary-foreground);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-flow-hub {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-flow-hub__inner {
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, oklch(0.2 0 0) 0%, oklch(0.28 0 0) 100%);
    color: oklch(0.96 0 0);
    text-align: center;
    box-shadow: 0 8px 24px oklch(0 0 0 / 0.12);
}

.sf-flow-hub__inner h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--primary-foreground);
}

.sf-flow-hub__inner p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: oklch(0.9 0 0);
}

.sf-flow-hub__links {
    margin: 0 !important;
    font-size: 0.85rem;
}

.sf-flow-hub__links a {
    color: oklch(0.95 0 0);
    font-weight: 600;
}

.sf-flow-join {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    border: 1px dashed var(--border-color);
    background: var(--card);
    text-align: center;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.sf-flow-join p {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.sf-flow-join p:last-child {
    margin-bottom: 0;
}

.sf-flow-join a {
    font-weight: 600;
}

/* Home: hide “Professionals you can hire now” until vetted profiles exist (see hiring-portal.html). */
.sf-home-hiring-hidden {
    display: none !important;
}

/* login.html — role selection */
.sf-role-fieldset {
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: var(--radius, 8px);
    padding: 1rem 1.1rem 1.1rem;
    margin: 0 0 1.25rem;
}

.sf-role-legend {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 0.35rem;
}

.sf-role-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.65rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark, #334155);
}

.sf-role-option:first-of-type {
    margin-top: 0.5rem;
}

.sf-role-option input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--primary-color, #2563eb);
}

/* Candidate listing — embedded in client dashboard iframe */
.sf-candidates-embed {
    background: #f8fafc;
}

.sf-candidates-embed .page-header {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
}

.sf-candidates-embed .page-header .section-subtitle {
    font-size: 0.95rem;
}

.sf-candidates-embed .filters-section,
.sf-candidates-embed .candidates-section {
    padding-top: 0.5rem;
}

.sf-embed-workspace-bar {
    margin: 0;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e40af;
    background: #eff6ff;
    border-bottom: 1px solid #bfdbfe;
    text-align: center;
}

.sf-candidate-dash-main {
    padding: 1rem 1.25rem 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.sf-candidate-dash.sf-candidates-embed .sf-candidate-dash-main {
    padding-top: 0.5rem;
}

.sf-cd-form textarea {
    font-family: inherit;
    font-size: 0.92rem;
    line-height: 1.5;
}

.sf-cd-workspace-head {
    margin-bottom: 1rem;
}

.sf-cd-workspace-title {
    font-size: 1.35rem;
    margin: 0 0 0.25rem;
}

.sf-cd-workspace-sub {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
}

.sf-cd-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.sf-cd-tab {
    font: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: #475569;
    cursor: pointer;
}

.sf-cd-tab:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.sf-cd-tab--active,
.sf-cd-tab[aria-selected="true"] {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}

.sf-cd-training-hint {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 0.65rem;
}

.sf-cd-training-frame {
    width: 100%;
    min-height: min(72vh, 720px);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.sf-candidate-dash-main:has(.sf-cd-training-frame:not([hidden])) {
    max-width: 56rem;
}

.sf-invite-card,
.sf-pipeline-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 1.15rem;
    margin-bottom: 0.75rem;
    background: #fff;
}

.sf-invite-card.sf-invite--active {
    border-color: #a5b4fc;
    background: #f8fafc;
}

.sf-invite-card.sf-invite--hired {
    border-color: #86efac;
    background: #f0fdf4;
}

.sf-invite-card.sf-invite--closed {
    opacity: 0.75;
}

.sf-invite-meta,
.sf-pipeline-section p.sf-cd-workspace-sub {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0.25rem 0 0.75rem;
}

.sf-pipeline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.sf-pipeline-action {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
}

.sf-pipeline-action:hover {
    background: #f1f5f9;
}

.sf-notif-item {
    padding: 0.65rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.sf-notif-item--unread {
    font-weight: 600;
}

.sf-cd-invite-empty {
    color: #64748b;
    font-size: 0.92rem;
}
