@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-variable.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* Core Colors */
    --primary: #1B365D; /* Dark Navy from logo */
    --primary-light: #2C4E86;
    --primary-dark: #112442;
    --gold: #B69762; /* Gold from logo */
    --gold-light: #D4B988;
    --gold-dark: #9A7D4E;
    
    /* Neutrals */
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --bg-main: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-subtle: #F3F4F6;
    --border: #E5E7EB;
    
    /* Elevations / Shadows - Premium soft feel */
    --shadow-sm: 0 2px 8px rgba(27, 54, 93, 0.04);
    --shadow-md: 0 12px 32px rgba(27, 54, 93, 0.08);
    --shadow-lg: 0 24px 60px rgba(27, 54, 93, 0.12);
    --shadow-gold: 0 12px 24px rgba(182, 151, 98, 0.25);
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 99px;
    
    /* Animation */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    word-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }

/* Utility for breaking long words/URLs */
.break-words {
    word-break: break-all;
    overflow-wrap: anywhere;
}

/* PAGE BACKGROUND IMAGE */
.page-with-bg {
    position: relative;
    background-color: var(--bg-main);
}

.page-with-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero_bg.webp') center/cover;
    opacity: 0.04;
    filter: grayscale(100%);
    z-index: -10;
    pointer-events: none;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Enhancements */
h1, h2, h3, h4 {
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gold { color: var(--gold); }
.mt-2 { margin-top: 0.5rem; }

/* HEADER - Massive white, shrinks on scroll */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgb(255, 255, 255); /* Solid fallback */
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    padding: 14px 0;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Performance optimizations for older devices */
    transform: translateZ(0); 
    backface-visibility: hidden;
    will-change: padding, background-color, backdrop-filter;
}

header.scrolled {
    padding: 8px 0;
    background-color: rgb(255, 255, 255); /* Solid fallback */
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Fallback: If backdrop-filter is NOT supported (often old Androids), 
   we use a slightly more opaque background so it remains readable. */
@supports not (backdrop-filter: blur(1px)) {
    header { background-color: rgba(255, 255, 255, 0.95); }
    header.scrolled { background-color: rgba(255, 255, 255, 0.98); }
}

@media (max-width: 768px) {
    header.scrolled {
        padding: 6px 0;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 58px; /* Reduced from 64px */
    transition: all var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

header.scrolled .logo img {
    height: 48px; /* Reduced from 52px */
}

@media (max-width: 768px) {
    .logo img {
        height: 48px; /* Reduced from 52px */
    }
    header.scrolled .logo img {
        height: 40px; /* Reduced from 44px */
    }
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.mobile-menu-btn span:nth-child(1) { width: 24px; }
.mobile-menu-btn span:nth-child(2) { width: 18px; align-self: flex-end; }
.mobile-menu-btn span:nth-child(3) { width: 24px; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary { 
    background: var(--primary); 
    color: var(--bg-white); 
    box-shadow: var(--shadow-md);
}
.btn-primary:hover { 
    background: var(--primary-light); 
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold { 
    background: var(--gold); 
    color: var(--bg-white); 
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { 
    background: var(--gold-light); 
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(182, 151, 98, 0.35);
}

.nav-links .btn-header {
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
    padding-bottom: 12px; /* Override nav-links padding */
}

.btn-full { width: 100%; }

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh; /* Fills the screen */
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 80px; 
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-mobile-image-wrapper {
    display: none;
}

.hero-text-wrapper {
    max-width: 800px;
    padding-left: 20px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--gold);
    margin-right: 12px;
}

.hero h1 {
    color: var(--bg-white);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 .text-gold {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(182, 151, 98, 0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    margin-bottom: 48px;
    max-width: 650px;
}

/* OVERLAP SECTION (Cards) */
.overlap-section {
    position: relative;
    z-index: 20;
    padding-top: 80px;
    padding-bottom: 80px;
}

.action-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.action-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.employer-card {
    border-top: 4px solid var(--primary);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(27, 54, 93, 0.02) 100%);
}

.applicant-card {
    border-top: 4px solid var(--gold);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(182, 151, 98, 0.03) 100%);
}

.employer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(27, 54, 93, 0.12);
    border-top-color: var(--primary);
}

.applicant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(182, 151, 98, 0.16);
    border-top-color: var(--gold);
}

.action-card .card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-card .card-icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-card .gold-wrapper {
    background: rgba(182, 151, 98, 0.1);
}

.action-card .gold-wrapper svg {
    stroke: var(--gold);
}

/* Hover Micro-Interactions */
.action-card:hover .card-icon-wrapper {
    transform: scale(1.1);
    background: var(--primary) !important;
}

.action-card:hover .card-icon-wrapper svg {
    stroke: var(--bg-white) !important;
}

.action-card:hover .gold-wrapper {
    background: var(--gold) !important;
}

.action-card:hover .gold-wrapper svg {
    stroke: var(--bg-white) !important;
}

.action-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary);
}

.action-card .benefit-list {
    margin-bottom: 32px;
    flex-grow: 1;
}

.action-card .benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-card:hover .benefit-list li {
    transform: translateX(4px);
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.applicant-card .check-icon {
    stroke: var(--gold);
}

.action-card .btn {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-card .btn span {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-card:hover .btn span {
    transform: translateX(6px);
}

.premium-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary);
}

.premium-card.gold-accent::before {
    background: var(--gold);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(27, 54, 93, 0.15);
}

.premium-card .card-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.premium-card .card-icon-wrapper.gold-icon {
    background: rgba(182, 151, 98, 0.1);
    color: var(--gold);
}

.premium-card .card-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.premium-card h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.benefit-list {
    margin-bottom: 32px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-main);
}


/* TRUST SECTION */
.trust-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: transparent;
    border-radius: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(182, 151, 98, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 26px;
    height: 26px;
}

.trust-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* SEO / ABOUT US SECTION */
.seo-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.seo-section .container {
    max-width: 800px;
}

.seo-section .eyebrow {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: center;
}

.seo-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary);
    text-align: center;
    line-height: 1.3;
}

.seo-section h3 {
    font-size: 22px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary);
    text-align: center;
}

.seo-section p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .seo-section {
        padding: 60px 0;
    }
    .seo-section h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }
    .seo-section h3 {
        font-size: 20px;
        margin-top: 28px;
    }
    .seo-section p {
        font-size: 15px;
        text-align: left;
    }
}

/* FAQ SECTION */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    transition: var(--transition-fast);
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA BANNER */
.cta-banner {
    padding: 120px 0;
    background: var(--bg-main);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('hero_bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: grayscale(100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* FOOTER */
footer {
    background: var(--bg-white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    color: var(--text-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-col .footer-logo {
    height: 50px;
    margin-bottom: 24px;
}

.brand-col .footer-desc {
    color: var(--text-muted);
    max-width: 320px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--primary);
}

.footer-col ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.footer-col ul li a {
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.contact-mail {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--gold);
}

/* SUBPAGE & FORM STYLES */
.legal-page-main {
    padding-top: 180px;
    padding-bottom: 100px;
}

.legal-container {
    max-width: 800px;
}

.legal-card {
    padding: 40px;
}

@media (max-width: 768px) {
    .legal-page-main {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .legal-card {
        padding: 24px 20px;
    }
}

.page-hero {
    margin-top: 108px;
    background-color: var(--bg-main);
    padding: 80px 0 60px;
}

.hero-employer-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.hero-employer-text {
    flex: 1;
}

.hero-employer-text h1 {
    text-align: left;
}

.hero-employer-text p {
    text-align: left;
    margin: 0;
}

.hero-employer-img {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-employer-layout {
        flex-direction: column;
        text-align: center;
    }
    .hero-employer-text h1,
    .hero-employer-text p {
        text-align: center;
    }
    .hero-employer-img img {
        width: 160px !important;
    }
}

.page-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin: 0;
}

.form-layout {
    display: flex;
    gap: 40px;
    padding: 40px 0 100px;
    align-items: flex-start;
}

.form-box {
    flex: 1.5;
}

.benefits-box {
    flex: 1;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition-fast);
    background-color: var(--bg-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(182, 151, 98, 0.1);
}

.checkbox-group {
    margin-top: 24px;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.file-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    background: var(--bg-subtle);
    transition: var(--transition-fast);
    max-width: 100%;
    overflow: hidden;
}

.file-upload:hover {
    border-color: var(--gold);
    background: rgba(182, 151, 98, 0.05);
}

.file-upload p {
    margin-top: 16px;
    color: var(--text-muted);
    word-break: break-all;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.4;
}

.benefits-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(182, 151, 98, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 15px;
    color: var(--text-muted);
}

/* BLUE FEATURE BOX (SUBPAGES) */
.blue-feature-box {
    background-color: var(--primary) !important;
    color: var(--bg-white) !important;
    position: relative;
    z-index: 1;
}

.blue-feature-box h3 {
    color: var(--bg-white) !important;
}

.blue-feature-box h4 {
    color: var(--gold) !important;
}

.blue-feature-box p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.blue-feature-box .benefit-icon {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--bg-white) !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .action-cards-wrapper {
        grid-template-columns: 1fr;
    }
    .overlap-section {
        margin-top: -60px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .combined-card {
        flex-direction: column;
    }
    .column-divider {
        width: auto;
        height: 1px;
        margin: 0 32px;
    }
    .action-column {
        padding: 32px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trust-item {
        padding: 20px;
        background: var(--bg-subtle) !important;
        border: 1px solid rgba(27, 54, 93, 0.03) !important;
        border-radius: 12px !important;
    }
    .trust-icon {
        background: rgba(27, 54, 93, 0.05) !important;
        color: var(--primary) !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Sliding Navigation Drawer */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(11, 22, 40, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding: 100px 32px 40px;
        gap: 16px;
        align-items: stretch;
        justify-content: flex-start;
        transition: right var(--transition-smooth);
        z-index: 1000;
    }
    
    .nav-links.is-open {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        width: 100%;
        padding: 12px 0 12px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .nav-links a:hover {
        color: var(--gold-light);
        padding-left: 16px;
        border-bottom-color: var(--gold-light);
    }
    
    .nav-links a.btn-header {
        border-bottom: none;
        padding: 14px 24px;
        text-align: center;
        margin-top: 16px;
        color: var(--primary) !important;
        background: var(--gold) !important;
        border-radius: var(--radius-pill);
        display: block;
    }

    .nav-links a.btn-header:hover {
        background: var(--gold-light) !important;
        color: var(--primary) !important;
        padding-left: 24px;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    /* Hamburger to 'X' Animation */
    .mobile-menu-btn.is-open span {
        background-color: var(--bg-white);
    }
    
    .mobile-menu-btn.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        width: 24px;
    }
    .mobile-menu-btn.is-open span:nth-child(2) {
        opacity: 0;
        width: 0;
    }
    .mobile-menu-btn.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        width: 24px;
    }
    
    /* Backdrop overlay */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(11, 22, 40, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-smooth);
        z-index: 999;
    }
    
    .mobile-menu-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-layout {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    .action-card {
        padding: 32px 24px;
    }
    .premium-card {
        padding: 24px 20px;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
        display: flex;
        align-items: center;
    }
    .hero-bg {
        background-position: 25% center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(11, 22, 40, 0.92) 0%, rgba(17, 36, 66, 0.75) 100%) !important;
    }
    .hero h1 {
        font-size: clamp(30px, 8vw, 44px);
        line-height: 1.2;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .hero-text-wrapper {
        padding-left: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    .hero-badge {
        justify-content: flex-start;
        margin-bottom: 16px;
    }
    .hero-actions {
        display: flex;
        flex-direction: row !important;
        justify-content: flex-start;
        width: 100%;
        gap: 12px;
        margin-top: 32px !important;
    }
    .hero-actions .btn {
        width: auto;
        padding: 14px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
    header { padding: 12px 0; }
    .form-layout {
        flex-direction: column;
    }
    .benefits-box {
        width: 92% !important;
        max-width: 480px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 30px 24px !important;
    }
    .benefits-box h3 {
        font-size: 24px !important;
        margin-bottom: 24px !important;
    }
    .benefit-item {
        gap: 18px !important;
        margin-bottom: 24px !important;
    }
    .benefit-item:last-child {
        margin-bottom: 0 !important;
    }
    .benefit-icon {
        width: 42px !important;
        height: 42px !important;
    }
    .benefit-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    .benefit-text h4 {
        font-size: 17px !important;
        margin-bottom: 6px !important;
    }
    .benefit-text p {
        font-size: 14.5px !important;
        line-height: 1.45 !important;
    }
}

/* FORM SUCCESS MESSAGE */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
    animation: fadeInSuccess 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ECFDF5;
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.form-success p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

@keyframes fadeInSuccess {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* PREMIUM PAGE ENTRANCE ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Homepage Hero Animation */
.hero-text-wrapper > span,
.hero-text-wrapper > h1,
.hero-text-wrapper > p,
.hero-actions {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-text-wrapper > span { animation-delay: 0.1s; }
.hero-text-wrapper > h1 { animation-delay: 0.25s; }
.hero-text-wrapper > p { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.55s; }

/* Subpage Hero & Form Animation */
.page-hero h1,
.page-hero p,
.hero-employer-img,
.form-layout {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-hero h1 { animation-delay: 0.1s; }
.page-hero p { animation-delay: 0.25s; }
.hero-employer-img { animation-delay: 0.35s; }
.form-layout { animation-delay: 0.45s; }

