:root {
    --bg-dark: #1a2d44;
    --panel-dark: #26436b;
    --accent-teal: #37c5c7;
    --accent-lime: #d4f75e;
    --accent-orange: #dd7a43;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --nav-height: 80px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Notebook Grid Pattern */
.landing-wrapper {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
}

/* NAVBAR */
.landing-navbar {
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .landing-navbar {
        height: auto;
        padding: 10px 0;
    }

    .nav-content {
        display: grid !important;
        grid-template-columns: 60px 1fr 60px;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .brand {
        justify-self: center;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .nav-logo {
        height: 40px !important;
        width: auto !important;
        max-height: 40px !important;
    }

    .btn-menu-mobile,
    .btn-search-mobile {
        background: transparent;
        border: none;
        font-size: 24px;
        color: #1a2d44;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-search-mobile {
        background: #d4f75e;
        border-radius: 8px;
        width: 45px;
        height: 45px;
        font-size: 18px;
        justify-self: end;
    }

    .nav-mobile-btn {
        justify-self: start;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-hero-primary {
        padding: 18px !important;
        font-size: 18px !important;
        border-radius: 50px !important;
        width: 100% !important;
    }
}


/* Navbar Search Bar */
.nav-search {
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 2px 2px 2px 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    background: #fff;
    border-color: var(--accent-teal);
    box-shadow: 0 0 15px rgba(55, 197, 199, 0.1);
}

.search-icon {
    color: #64748b;
}

.search-input {
    background: transparent;
    border: none;
    color: #1e293b;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.search-btn {
    background: var(--accent-teal);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:hover {
    transform: scale(1.05);
    background: var(--accent-lime);
    color: #1a2d44;
}

/* Nav links & Right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #475569;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.nav-links a.active {
    color: #0055A4 !important;
    /* Premium Royal Blue */
}

.nav-links a:hover {
    color: var(--accent-teal);
}

.nav-links a.nav-btn-discreet {
    color: #0055A4 !important;
    background: rgba(0, 85, 164, 0.05);
    border: 1px solid rgba(0, 85, 164, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.nav-links a.nav-btn-discreet:hover {
    background: rgba(0, 85, 164, 0.12);
    color: #003d7a !important;
    border-color: rgba(0, 85, 164, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 85, 164, 0.08);
}

.nav-auth {
    display: flex;
    gap: 12px;
}

.btn-login {
    color: #475569;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 15px;
}

.btn-login:hover {
    color: var(--accent-teal);
}

.btn-signup {
    background: var(--accent-teal);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(55, 197, 199, 0.3);
    transition: all 0.2s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 197, 199, 0.4);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 100px 0;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Waves / Orbs */
.hero-bg-accent {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(55, 197, 199, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.hero-box {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(55, 197, 199, 0.1);
    border: 1px solid rgba(55, 197, 199, 0.2);
    border-radius: 100px;
    color: var(--accent-teal);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.hero-title span {
    color: var(--accent-teal);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

.btn-hero-primary {
    background: var(--accent-lime);
    color: #1a2d44;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 247, 94, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Image / Visual */
.hero-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-visual:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        margin-top: 50px;
        transform: none;
    }
}

/* SECTION WHITE NOTEBOOK (Same as Navbar) */
.section-white-notebook {
    background-color: #ffffff;

    background-size: 30px 30px;
    padding: 100px 0;
    color: #1a2d44;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a2d44;
    text-align: center;
}

.section-text {
    font-size: 21px;
    line-height: 1.8;
    color: #475569;
    max-width: 950px;
    margin: 40px auto 0;
    text-align: center;
    font-style: italic;
}

/* SECTION DARK (Contrast) */
.section-dark {
    background-color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.v-card {
    background: var(--panel-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.v-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.v-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(55, 197, 199, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 28px;
    margin-bottom: 30px;
}

.v-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.v-card-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 16px;
}

/* SECTOR GRID */
.sector-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sector-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sector-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sector-card:hover .sector-img-box img {
    transform: scale(1.1);
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific Sector Tints (Based on Image Inspiration) */
.overlay-medical {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.7), rgba(219, 39, 119, 0.6));
}

.overlay-tech {
    background: linear-gradient(135deg, rgba(55, 197, 199, 0.7), rgba(38, 67, 107, 0.6));
}

.overlay-admin {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(99, 102, 241, 0.6));
}

.overlay-edu {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.7), rgba(16, 185, 129, 0.6));
}

.overlay-comm {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.7), rgba(234, 179, 8, 0.6));
}

.overlay-indus {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.7), rgba(51, 65, 85, 0.6));
}

.sector-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.sector-body {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sector-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a2d44;
}

.sector-info span {
    font-size: 14px;
    color: #64748b;
}

.sector-arrow {
    color: #cbd5e1;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sector-card:hover .sector-arrow {
    transform: translateX(5px);
    color: var(--accent-teal);
}

/* FOOTER (RemoteJobs Style) */
.landing-footer {
    background-color: #fbfbf7;

    background-size: 30px 30px;
    padding: 80px 0 40px;
    color: #1a2d44;
    border-top: 1px solid #eee;
}

.footer-logo {
    max-height: 60px;
    width: auto;
}

.social-links-footer {
    display: flex;
    gap: 20px;
}

.social-links-footer a {
    color: #1a2d44;
    font-size: 20px;
    transition: color 0.2s ease;
}

.social-links-footer a:hover {
    color: var(--accent-teal);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.footer-heading {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: none;
    color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-teal);
}

.footer-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-support-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
}

.footer-support-list i {
    color: #1a2d44;
    width: 20px;
}

.footer-sub-link {
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.footer-sub-link:hover {
    color: var(--accent-teal);
}


/* JOB OFFERS PAGE SPECIFIC */
.jobs-page-wrapper {
    background-color: #fff;
    min-height: 100vh;
}

.page-hero-section {
    padding: 60px 0;
}

.page-hero-content {
    background-color: #ebf5ff;
    /* Very light blue as in image */
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
}

.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #64748b;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a2d44;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.search-filter-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.btn-filter-all {
    background-color: #0062ff;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 0;
}

.filter-input-group {
    position: relative;
    width: 100%;
}

.filter-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.filter-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.filter-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-search-go {
    background-color: #d4f75e;
    color: #1a2d44;
    border-radius: 12px;
    height: 48px;
    font-size: 18px;
}

/* Job Cards */
.job-card-item {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.job-card-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: #3b82f6;
}

.job-logo {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #64748b;
}

.job-details {
    flex: 1;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2d44;
    margin: 0;
}

.job-badge {
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.type-cdi {
    background: #dcfce7;
    color: #166534;
}

.type-interim {
    background: #fef9c3;
    color: #854d0e;
}

.type-cdd {
    background: #dbeafe;
    color: #1e40af;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: #64748b;
    font-size: 14px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-view-job {
    background: #f8fafc;
    color: #1a2d44;
    border: 1px solid #e2e8f0;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-view-job:hover {
    background: #1a2d44;
    color: #fff;
}

@media (max-width: 768px) {
    .job-card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-actions {
        width: 100%;
        margin-top: 15px;
    }

    .btn-view-job {
        width: 100%;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-content {
        padding: 40px 20px;
    }
}

/* CONCEPT PAGE SPECIFIC */
.concept-page-wrapper {
    background-color: #fff;
}

.mission-text-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a2d44;
}

.concept-visual-card {
    background: #f8fafc;
    border-radius: 30px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.concept-visual-inner {
    position: relative;
    z-index: 2;
}

.visual-main-icon {
    font-size: 120px;
    color: var(--accent-teal);
    opacity: 0.2;
}

.floating-badge {
    position: absolute;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: #1a2d44;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatAnim 3s infinite ease-in-out;
}

.floating-badge i {
    color: var(--accent-teal);
}

.badge-1 {
    top: -20px;
    left: -100px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: -20px;
    right: -100px;
    animation-delay: 1.5s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pillar Cards */
.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-teal);
    transform: translateY(-10px);
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-teal);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a2d44;
    margin-bottom: 25px;
}

.pillar-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pillar-text {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

.bg-teal-soft {
    background-color: rgba(55, 197, 199, 0.1);
}

.text-teal {
    color: #37c5c7;
}

/* CTA Box Premium */
.cta-box-premium {
    background: #ffffff;
    border: 1px solid #f1f5f9;
}

.btn-hero-outline {
    border: 2px solid #1a2d44;
    color: #1a2d44;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-hero-outline:hover {
    background: #1a2d44;
    color: #fff;
}

@media (max-width: 992px) {
    .floating-badge {
        font-size: 14px;
        padding: 10px 20px;
    }

    .badge-1 {
        left: 0;
    }

    .badge-2 {
        right: 0;
    }

    .visual-main-icon {
        font-size: 80px;
    }

    .concept-visual-card {
        height: 300px;
        margin-top: 40px;
    }
}

/* MOBILE DRAWER STYLES */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 45, 68, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #1a2d44;
}

.drawer-menu {
    flex: 1;
}

.drawer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: #1a2d44;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.drawer-item:hover {
    color: var(--accent-teal);
}

.item-login {
    font-size: 20px;
    font-weight: 700;
}

.drawer-divider {
    height: 1px;
    background: #f1f5f9;
    width: 100%;
}

.drawer-footer {
    padding-top: 20px;
}

.drawer-register-link {
    display: block;
    margin-bottom: 14px;
    text-align: center;
    color: #475569;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.drawer-register-link:hover {
    color: #0055A4;
}

.btn-signup-drawer {
    display: block;
    width: 100%;
    background: var(--accent-lime);
    color: #1a2d44;
    text-align: center;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(212, 247, 94, 0.2);
}

/* ==========================================================================
   CANDIDATE PRESENTATION LANDING PAGE - MOCKUP REPRODUCTION
   ========================================================================== */

.candidate-hero-section {
    position: relative;
    background-color: #ffffff;
    background-image: url('../../images/landing/candidate_hero.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 60px 0 80px;
    color: #1e293b;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.about-hero-section {
    background-image: url('../../images/landing/hero.png') !important;
    background-position: center center !important;
}

/* Figma-accurate 270deg fading gradient overlay covering background */
.candidate-hero-section::before,
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.05) 41.83%, rgba(255, 255, 255, 0.95) 53.85%, #FFFFFF 100%);
    z-index: 1;
    pointer-events: none;
}

/* AI Badge */
.hero-badge-candidate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(114, 170, 254, 0.2);
    box-shadow: 0px 0px 10px #72AAFE;
    border-radius: 9999px;
    color: #175EAD;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.14px;
}

.candidate-hero-section .hero-badge-candidate,
.about-hero-section .hero-badge-candidate {
    position: relative;
    top: -28px;
}

.badge-icon-sparkle {
    color: #FF7F00;
    font-size: 16px;
    display: flex;
    align-items: center;
}

/* Heading & Highlights */
.hero-title-candidate {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    color: #001946;
    letter-spacing: -0.96px;
}

.hero-title-candidate .highlight-orange {
    color: #FF7F00;
    position: relative;
    white-space: nowrap;
}

/* Description text */
.hero-desc-candidate {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #2D2D2D;
    max-width: 623px;
}

/* Action Buttons */
.btn-candidate-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FF7F00;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-candidate-primary:hover {
    background-color: #e67200;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 127, 0, 0.35);
    color: #ffffff;
}

.btn-candidate-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #0055A4;
    padding: 14px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    border: 2px solid #0055A4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-candidate-secondary:hover {
    background-color: #0055A4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 85, 164, 0.2);
}

/* Features Grid */
.hero-features-candidate {
    border-top: 1px solid #f1f5f9;
    padding-top: 40px;
    max-width: 623px;
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #2D2D2D;
}

/* Specific Feature Colors */
.border-teal {
    border: 2px solid #099C97;
    background-color: rgba(9, 156, 151, 0.05);
}

.text-teal {
    color: #099C97;
}

.border-purple {
    border: 2px solid #531FA7;
    background-color: rgba(83, 31, 167, 0.05);
}

.text-purple {
    color: #531FA7;
}

.border-pink {
    border: 2px solid #FB2764;
    background-color: rgba(251, 39, 100, 0.05);
}

.text-pink {
    color: #FB2764;
}

.border-sky {
    border: 2px solid #1697F9;
    background-color: rgba(22, 151, 249, 0.05);
}

.text-sky {
    color: #1697F9;
}

/* Visual Column */
.candidate-hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    z-index: 10;
}

/* Glassmorphic floating card */
.glass-card-candidate {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 279px;
    height: 239px;
    background: rgba(236, 241, 255, 0.6);
    border-bottom: 1px solid rgba(196, 198, 210, 0.3);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-card-candidate:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

.handwritten-text {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    color: #072D6C;
    font-weight: 700;
}

.handwritten-underline {
    width: 160px;
    height: 12px;
    display: block;
    margin: 0 auto;
}

.glass-card-subtext {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

/* Navbar Custom Buttons */
.btn-signup-link {
    color: #475569;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-signup-link:hover {
    color: #0055A4;
}

.btn-login-pill {
    background-color: #0055A4;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 85, 164, 0.2);
}

.btn-login-pill:hover {
    background-color: #003d7a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 85, 164, 0.3);
}

/* RESPONSIVE LAYOUT adjustments */
@media (max-width: 991px) {
    .candidate-hero-section {
        padding: 0 0 30px 0;
        background-position: center;
        min-height: auto !important;
    }

    .candidate-hero-section::before {
        background: rgba(255, 255, 255, 0.95);
    }

    .hero-text-box {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title-candidate {
        font-size: 38px;
        line-height: 48px;
    }

    .hero-title-candidate .highlight-orange {
        white-space: normal !important;
    }

    .hero-desc-candidate {
        margin: 0 auto 35px;
    }

    .hero-buttons-candidate {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons-candidate a {
        width: 100%;
        max-width: 320px;
    }

    .hero-features-candidate {
        margin: 0 auto;
    }

    .visual-column-box {
        margin-top: 40px;
    }

    .candidate-hero-visual-wrapper {
        min-height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .glass-card-candidate {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .hero-title-candidate {
        font-size: 32px;
    }

    .hero-features-candidate .row {
        text-align: left;
    }
}

/* Override parent layout dark theme specifically for Candidate Landing Page */
.candidate-landing-page {
    background-color: #ffffff !important;
    background-image: none !important;
    color: #2D2D2D !important;
}

/* ==========================================================================
   POUR QUI SECTION (Figma Style Reproduction)
   ========================================================================== */
.pour-qui-section {
    background-color: #F4F7FC !important;
    /* Force soft blue-grey mockup background over dark theme wrapper */
    background-image: none !important;
    padding: 90px 0;
    color: #1e293b;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.section-badge-orange {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #FF7F00;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.section-badge-orange::before,
.section-badge-orange::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background-color: #FF7F00;
    vertical-align: middle;
}

.section-title-navy {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #001946;
    line-height: 1.3;
}

.section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #475569;
    max-width: 680px;
    line-height: 1.6;
}

/* Figma Target Cards */
.pour-qui-card {
    background: #ffffff !important;
    /* Force crisp white cards over sections */
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pour-qui-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 85, 164, 0.06);
    border-color: rgba(0, 85, 164, 0.15);
}

.card-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.pour-qui-card:hover .card-icon-circle {
    transform: scale(1.1);
}

.card-text-content {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2D2D2D;
    line-height: 1.6;
}

/* Card Icon Tints & Colors */
.bg-tint-blue {
    background-color: rgba(22, 151, 249, 0.1) !important;
}

.text-brand-blue {
    color: #1697F9 !important;
}

.bg-tint-purple {
    background-color: rgba(83, 31, 167, 0.1) !important;
}

.text-brand-purple {
    color: #531FA7 !important;
}

.bg-tint-teal {
    background-color: rgba(9, 156, 151, 0.1) !important;
}

.text-brand-teal {
    color: #099C97 !important;
}

.bg-tint-orange {
    background-color: rgba(255, 127, 0, 0.1) !important;
}

.text-brand-orange {
    color: #FF7F00 !important;
}

/* ==========================================================================
   DES OPPORTUNITES SECTION (Figma Style Reproduction)
   ========================================================================== */
.opportunites-section {
    background-color: #ffffff !important;
    /* Crisp white background for section contrast */
    background-image: none !important;
    padding: 95px 0;
    color: #1e293b;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.opp-card {
    background: #ffffff !important;
    border-radius: 20px;
    padding: 40px 24px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.opp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 85, 164, 0.05);
    border-color: rgba(0, 85, 164, 0.12);
}

.opp-card:hover .card-icon-circle {
    transform: scale(1.1);
}

.opp-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #001946;
    line-height: 1.4;
}

.opp-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.6;
}

/* ==========================================================================
   COMMENT CA FONCTIONNE SECTION (Timeline Steps Workflow)
   ========================================================================== */
.fonctionnement-section {
    background-color: #F4F7FC !important;
    /* Soft blue-grey background to alternate sections */
    background-image: none !important;
    padding: 95px 0;
    color: #1e293b;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.timeline-container {
    position: relative;
    width: 100%;
}

/* Connecting horizontal line for large desktop viewports */
@media (min-width: 992px) {
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 60px;
        /* Mathematically aligned: 24px (Bootstrap .g-4 top padding) + 36px (half of 72px circle) */
        left: 3% !important;
        /* Extended outward to the left beyond the 1st circle */
        right: 3% !important;
        /* Extended outward to the right beyond the 5th circle */
        height: 2px;
        background-color: #CBD5E1;
        /* Slate-300 clean connecting line */
        z-index: 0;
    }
}

.timeline-step {
    position: relative;
    z-index: 1;
    height: 100%;
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 85, 164, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-col:hover .step-circle {
    transform: scale(1.15);
}

/* Borders & Text Colors for Step Circles */
.border-blue {
    border: 3px solid #0055A4 !important;
    /* Premium brand navy blue */
}

.text-blue {
    color: #0055A4 !important;
}

.border-orange {
    border: 3px solid #FF7F00 !important;
    /* Orange final callout */
}

.text-orange {
    color: #FF7F00 !important;
}

.timeline-col:hover .border-blue {
    box-shadow: 0 0 20px rgba(0, 85, 164, 0.15);
}

.timeline-col:hover .border-orange {
    box-shadow: 0 0 20px rgba(255, 127, 0, 0.2);
}

/* Step Typography */
.step-title-blue {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0055A4;
    line-height: 1.4;
    margin-top: 10px;
}

.step-title-orange {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #FF7F00;
    line-height: 1.4;
    margin-top: 10px;
}

.step-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    line-height: 1.6;
    max-width: 240px;
}

/* ==========================================================================
   ACCOMPAGNEMENT & TECHNOLOGIE SHOWCASE
   ========================================================================== */
.guide-tech-section {
    background-color: #ffffff !important;
    /* Crisp white section background */
    background-image: none !important;
    padding: 100px 0;
}

.showcase-container {
    background-color: #ECF2FF !important;
    /* Premium soft lavender-blue background for the wrapper */
    border-radius: 28px;
    overflow: hidden;
    /* Clips the inner images and backgrounds cleanly */
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.bg-soft-blue {
    background-color: #ECF2FF !important;
}

.showcase-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 420px;
    /* Ensures nice vertical presence on mobile and desktop auto-stretch */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-col {
    overflow: hidden;
}

.showcase-container:hover .showcase-image-wrapper {
    transform: scale(1.03);
    /* Subtle premium zoom on hover */
}

.showcase-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #001946;
    line-height: 1.3;
}

.showcase-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    line-height: 1.6;
}

/* Feature Lists */
.feature-list-check,
.feature-list-bolt {
    list-style: none;
}

.list-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1E293B;
    line-height: 1.6;
}

/* Custom Badges (Checkmark Rosette / Badge) */
.list-badge-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #ffffff !important;
    border: 2px solid #1697F9 !important;
    border-radius: 50%;
    font-size: 11px;
    color: #1697F9 !important;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(22, 151, 249, 0.1);
}

.list-badge-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #ffffff !important;
    border: 2px solid #FF7F00 !important;
    border-radius: 50%;
    font-size: 11px;
    color: #FF7F00 !important;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 127, 0, 0.1);
}

/* Showcase pill button banner */
.showcase-pill-badge {
    background-color: #0055A4 !important;
    /* Premium brand navy blue */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 85, 164, 0.15);
    transition: all 0.3s ease;
}

.showcase-pill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 85, 164, 0.22);
}

.badge-message {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
}

/* ==========================================================================
   SECTEURS DIVERSIFIES SECTION
   ========================================================================== */
.secteurs-section {
    background-color: #F4F7FC !important;
    /* Soft blue-grey background to alternate sections */
    background-image: none !important;
    padding: 95px 0;
    color: #1e293b;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.sector-card {
    position: relative;
    height: 100%;
}

.sector-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Standard square ratio or slightly vertical */
    border-radius: 20px;
    overflow: visible;
    /* Allows the overlapping circle badge to render cleanly */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.sector-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-col:hover .sector-img {
    transform: scale(1.05);
    /* Soft zoom on hover */
}

/* Overlapping Circle badge centered at bottom of the image */
.sector-icon-circle {
    position: absolute;
    bottom: -22px;
    /* Shifts the circle exactly 50% across the bottom edge */
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 3px solid #ffffff !important;
    /* Elegant white border separation */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-col:hover .sector-icon-circle {
    transform: translateX(-50%) scale(1.12);
    /* Expand the circle on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Color Palette for Circle Badges */
.bg-brand-blue {
    background-color: #0055A4 !important;
    /* Royal Blue */
}

.bg-brand-purple {
    background-color: #531FA7 !important;
    /* Deep Violet */
}

.bg-brand-orange {
    background-color: #FF7F00 !important;
    /* Orange */
}

.bg-brand-pink {
    background-color: #E21B5A !important;
    /* Pink/Magenta */
}

.bg-brand-teal {
    background-color: #099C97 !important;
    /* Teal */
}

.bg-brand-skyblue {
    background-color: #1697F9 !important;
    /* Sky Blue */
}

/* Sector Card Title typography */
.sector-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #001946;
    line-height: 1.4;
    text-align: center;
}

/* Sector Footer styling */
.sector-more-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0055A4;
    /* Royal blue */
}

.sector-footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    line-height: 1.7;
    max-width: 760px;
}

/* ==========================================================================
   CANDIDATE LANDING PREMIUM FOOTER CARD
   ========================================================================== */
.candidate-footer {
    background-color: #ffffff !important;
    /* Matches the white page theme */
    padding-top: 40px;
    padding-bottom: 0;
}

.candidate-footer-card {
    background-color: #0055A4 !important;
    /* Premium Royal Blue */
    border-radius: 28px 28px 0 0;
    /* Gorgeous rounded top corners */
    box-shadow: 0 -10px 40px rgba(0, 85, 164, 0.08);
    padding: 2rem 2.5rem !important;
    /* Sleek compact card padding */
}

.candidate-footer--enterprise {
    padding-top: 20px;
}

.candidate-footer-card--enterprise {
    position: relative;
    background: #0f5eae !important;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 0 !important;
    box-shadow: none;
    padding: 1.05rem 1.1rem 0.95rem !important;
}

/* Block 1: CTA Banner */
.footer-cta-banner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
}

.footer-rocket-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.footer-cta-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.candidate-footer--enterprise .footer-cta-title {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 0.1px;
}

.footer-cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff !important;
    opacity: 1 !important;
    line-height: 1.4;
}

.candidate-footer--enterprise .footer-cta-subtitle {
    font-size: 13px;
    line-height: 1.45;
}

/* Orange CTA Pill Button */
.footer-cta-pill {
    background-color: #FF7F00 !important;
    /* Brand orange color */
    border-radius: 40px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(255, 127, 0, 0.2);
    padding: 8px 22px !important;
    /* Sleek button padding */
}

.candidate-footer--enterprise .footer-cta-pill {
    min-width: 248px;
    border-radius: 999px;
    padding: 8px 14px 8px 18px !important;
    box-shadow: none;
}

.footer-cta-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 127, 0, 0.35);
}

.cta-pill-small {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 1.2;
}

.candidate-footer--enterprise .cta-pill-small {
    font-size: 9px;
    letter-spacing: 0.35px;
}

.cta-pill-large {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.candidate-footer--enterprise .cta-pill-large {
    font-size: 16px;
}

.cta-pill-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #FF7F00 !important;
    font-size: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.candidate-footer--enterprise .cta-pill-arrow {
    width: 28px;
    height: 28px;
}

.footer-cta-pill:hover .cta-pill-arrow {
    transform: translateX(3px);
}

/* Block 2: 3-Column Info Links Grid */
.candidate-footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.candidate-footer--enterprise .candidate-footer-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.28) !important;
}

.candidate-footer-logo {
    height: 50px !important;
    max-height: 50px !important;
    width: auto !important;
    filter: brightness(0) invert(1);
    /* Forces standard white logo */
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .candidate-footer-logo {
        height: 40px !important;
        max-height: 40px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff !important;
    opacity: 1 !important;
    margin-top: 8px;
}

.candidate-footer--enterprise .footer-tagline,
.candidate-footer--enterprise .footer-contact-list li,
.candidate-footer--enterprise .footer-legal-links li a {
    font-size: 12px;
}

/* Contact Info list */
.footer-contact-list li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff !important;
    margin-bottom: 8px !important;
}

.footer-contact-list i {
    font-size: 15px;
    width: 20px;
    text-align: center;
    color: #ffffff !important;
    opacity: 1 !important;
}

.candidate-footer--enterprise .footer-contact-list i {
    width: 18px;
}

/* Legal links list */
.footer-legal-links li {
    margin-bottom: 8px !important;
}

.footer-legal-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

.footer-legal-links li a:hover {
    opacity: 0.8 !important;
    text-decoration: underline !important;
}

/* Copyright Bottom Banner */
.footer-copyright-banner {
    padding-top: 15px !important;
}

.footer-grid-columns--enterprise {
    align-items: center;
}

.footer-copyright-banner--enterprise {
    margin-top: 12px;
    padding: 8px 12px !important;
    border: 1px dashed rgba(255, 255, 255, 0.22);
}

.footer-copyright-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff !important;
    opacity: 1 !important;
}

.footer-copyright-banner--enterprise p {
    font-size: 14px;
}

@media (max-width: 991px) {
    .candidate-footer-card--enterprise {
        padding: 1rem 0.95rem 0.85rem !important;
    }

    .candidate-footer--enterprise .footer-cta-pill {
        min-width: min(100%, 280px);
    }

    .footer-grid-columns--enterprise {
        row-gap: 1rem !important;
    }
}

/* ==========================================================================
   CANDIDATE LANDING - ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: #ffffff !important;
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.about-narrative-card {
    background-color: #ECF2FF !important;
    /* soft lavender blue */
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px rgba(0, 85, 164, 0.02);
}

.about-title-navy {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #001946;
    line-height: 1.3;
}

.about-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    line-height: 1.7;
}

.about-pillar-card {
    background-color: #ffffff !important;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 85, 164, 0.06);
    border-color: rgba(55, 197, 199, 0.3);
}

.pillar-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.pillar-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #001946;
}

.pillar-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    line-height: 1.6;
}

/* ==========================================================================
   LANDING LOGIN MODAL
   ========================================================================== */
.landing-login-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.landing-login-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.landing-login-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.landing-login-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    min-height: 460px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(0, 85, 164, 0.1);
}

.landing-login-modal__panel {
    padding: 40px 38px;
}

.landing-login-modal__panel--aside {
    position: relative;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.4s ease;
}

.landing-login-modal__panel--aside.aside-candidate {
    background:
        linear-gradient(90deg, rgba(7, 45, 108, 0.12) 0%, rgba(7, 45, 108, 0.1) 36%, rgba(255, 255, 255, 0.88) 100%),
        url('../../images/login/login_left.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.landing-login-modal__panel--aside.aside-company {
    background:
        linear-gradient(90deg, rgba(26, 45, 68, 0.2) 0%, rgba(26, 45, 68, 0.15) 36%, rgba(255, 255, 255, 0.88) 100%),
        url('../../images/landing/votre_guide.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.landing-login-modal__panel--aside::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: background 0.4s ease;
}

.landing-login-modal__panel--aside.aside-candidate::before {
    background:
        linear-gradient(90deg, rgba(7, 45, 108, 0.62) 0%, rgba(0, 85, 164, 0.46) 38%, rgba(255, 255, 255, 0) 92%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 28%);
}

.landing-login-modal__panel--aside.aside-company::before {
    background:
        linear-gradient(90deg, rgba(15, 28, 54, 0.72) 0%, rgba(255, 127, 0, 0.42) 48%, rgba(255, 255, 255, 0) 92%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%);
}

.landing-login-modal__panel--aside > * {
    position: relative;
    z-index: 1;
}

.landing-login-brand {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.landing-login-hero {
    max-width: 360px;
    margin: 32px 0 40px;
    font-family: 'Sora', sans-serif;
    font-size: 38px;
    line-height: 1.02;
    font-weight: 700;
    color: #ffffff;
}

.landing-login-testimonial {
    max-width: 360px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.landing-login-testimonial__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.landing-login-testimonial__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 38px;
}

.landing-login-testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-login-testimonial__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.landing-login-testimonial__meta {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.78;
}

.landing-login-testimonial__stars {
    color: #ffd53d;
    letter-spacing: 0.28em;
    font-size: 13px;
    margin-bottom: 14px;
}

.landing-login-testimonial__quote {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    font-style: italic;
    color: rgba(255, 255, 255, 0.94);
}

.landing-login-modal__panel--form {
    position: relative;
    color: #0f172a;
    background:
        radial-gradient(circle at top right, rgba(0, 85, 164, 0.06), transparent 28%),
        #ffffff;
}

.landing-login-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #5b6777;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.landing-login-modal__title {
    margin: 0 0 8px;
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #001946;
}

.landing-login-modal__subtitle {
    margin: 0 0 26px;
    color: #5f6f85;
    font-size: 15px;
}

.landing-login-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 85, 164, 0.16);
    border-radius: 14px;
    background: #ffffff;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.landing-login-google:hover {
    border-color: rgba(0, 85, 164, 0.35);
    box-shadow: 0 10px 24px rgba(0, 85, 164, 0.08);
    transform: translateY(-1px);
}

.landing-login-google__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    color: #ea4335;
    background: linear-gradient(45deg, #ea4335 0 25%, #fbbc05 25% 50%, #34a853 50% 75%, #4285f4 75% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-login-separator {
    position: relative;
    margin: 0 0 18px;
    text-align: center;
}

.landing-login-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #e2e8f0;
}

.landing-login-separator span {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    background: #ffffff;
    color: #7b8798;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.landing-login-form__group {
    margin-bottom: 18px;
}

.landing-login-form__group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.landing-login-form__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.landing-login-form__label-row label {
    margin-bottom: 0;
}

.landing-login-form__forgot {
    font-size: 12px;
    font-weight: 700;
    color: #1697f9;
    text-decoration: none;
}

.landing-login-form__field {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 58px;
    padding: 0 16px;
    border: 1px solid #d8e3ef;
    border-radius: 14px;
    background: #fbfdff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.landing-login-form__field:focus-within {
    border-color: rgba(0, 85, 164, 0.45);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 85, 164, 0.08);
}

.landing-login-form__icon {
    color: #8aa0b6;
    font-size: 16px;
    flex: 0 0 auto;
}

.landing-login-form__field input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #0f172a;
}

.landing-login-form__field input::placeholder {
    color: #94a3b8;
}

.landing-login-form__remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 18px;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
}

.landing-login-form__submit {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #0055a4 0%, #1a7fd6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0, 85, 164, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-login-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(0, 85, 164, 0.3);
}

.landing-login-form__signup {
    margin: 18px 0 0;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.landing-login-form__signup a {
    color: #ff7f00;
    font-weight: 700;
    text-decoration: none;
}

.landing-login-form__error {
    margin-top: 8px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
}

.landing-login-form__error--block {
    margin: 0 0 16px;
}

@media (max-width: 991px) {
    .landing-login-modal {
        padding: 16px;
    }

    .landing-login-modal__dialog {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
    }

    .landing-login-modal__panel {
        padding: 28px 22px;
    }

    .landing-login-modal__panel--aside {
        display: none;
    }
}

@media (max-width: 575px) {
    .landing-login-modal__dialog {
        border-radius: 22px;
    }

    .landing-login-modal__close {
        top: 14px;
        right: 14px;
    }

    .landing-login-hero {
        font-size: 26px;
    }

    .landing-login-modal__title {
        font-size: 24px;
    }

    .landing-login-testimonial__quote {
        font-size: 14px;
    }
}

/* ==========================================================================
   LANDING REGISTER MODAL CHOICE CARDS
   ========================================================================== */
.register-choice-card {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.register-choice-card .choice-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.register-choice-card.candidate .choice-icon-wrapper {
    background-color: rgba(255, 127, 0, 0.08);
    color: #FF7F00;
}

.register-choice-card.company .choice-icon-wrapper {
    background-color: rgba(0, 85, 164, 0.08);
    color: #0055A4;
}

.register-choice-card .choice-content {
    flex-grow: 1;
    text-align: left;
}

.register-choice-card .choice-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #001946;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.register-choice-card .choice-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #64748b;
    margin-bottom: 0;
}

.register-choice-card .choice-arrow {
    color: #cbd5e1;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-left: 15px;
}

/* Hover effects */
.register-choice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 25, 70, 0.04);
}

.register-choice-card.candidate:hover {
    border-color: #FF7F00;
    background-color: rgba(255, 127, 0, 0.02);
}

.register-choice-card.company:hover {
    border-color: #0055A4;
    background-color: rgba(0, 85, 164, 0.02);
}

.register-choice-card.candidate:hover .choice-icon-wrapper {
    transform: scale(1.1);
    background-color: #FF7F00;
    color: #ffffff;
}

.register-choice-card.company:hover .choice-icon-wrapper {
    transform: scale(1.1);
    background-color: #0055A4;
    color: #ffffff;
}

.register-choice-card.candidate:hover .choice-title {
    color: #FF7F00;
}

.register-choice-card.company:hover .choice-title {
    color: #0055A4;
}

.register-choice-card:hover .choice-arrow {
    transform: translateX(4px);
    color: inherit;
}

/* ==========================================================================
   LANDING LOGIN ROLE SELECTOR TABS
   ========================================================================== */
.login-role-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.login-role-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
}

.login-role-tab .role-tab-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #f1f5f9;
    color: #64748b;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.login-role-tab .role-tab-label {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    transition: all 0.3s ease;
}

/* Hover effect on tabs */
.login-role-tab:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.03);
}

/* Candidate active state (Orange) */
.login-role-tab.candidate.active {
    border-color: #FF7F00;
    background-color: rgba(255, 127, 0, 0.04);
    box-shadow: 0 8px 20px rgba(255, 127, 0, 0.08);
}

.login-role-tab.candidate.active .role-tab-icon {
    background-color: #FF7F00;
    color: #ffffff;
}

.login-role-tab.candidate.active .role-tab-label {
    color: #FF7F00;
}

/* Company active state (Blue) */
.login-role-tab.company.active {
    border-color: #0055A4;
    background-color: rgba(0, 85, 164, 0.04);
    box-shadow: 0 8px 20px rgba(0, 85, 164, 0.08);
}

.login-role-tab.company.active .role-tab-icon {
    background-color: #0055A4;
    color: #ffffff;
}

.login-role-tab.company.active .role-tab-label {
    color: #0055A4;
}

/* ==========================================================================
   BARRE DE DÉFILEMENT (SCROLLBAR) MASQUÉE
   ========================================================================== */
html.hide-scrollbar,
body.hide-scrollbar {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

html.hide-scrollbar::-webkit-scrollbar,
body.hide-scrollbar::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}
