/* =========================
   GLOBAL / RESET
   ========================= */
/* Modern Gen Z Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

::selection {
    background: var(--cw-lime);
    color: var(--cw-navy);
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* =========================
   TOKENS / VARIABLES
   ========================= */
:root {
    /* =========================
       Catalyst Workforce — Brand Colors
       ========================= */
    --cw-navy: #0B1E3B;
    --cw-lime: #B7F000;
    --cw-lime-bright: #C7FF1F;
    --cw-lime-soft: #E8F9A8;
    --cw-teal: #02B9BC;
    --cw-white: #FFFFFF;
    --cw-bg: #FFFFFF;

    /* Semantic color mapping */
    --primary: #0B1E3B;
    --primary-dark: #061526;
    --secondary: #02B9BC;
    --accent: #B7F000;
    --dark: #0B1E3B;
    --dark-80: #1A2E4B;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text: #0B1E3B;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 14px;
    --radius-lg: 20px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(11, 30, 59, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 30, 59, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 30, 59, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   LAYOUT / TYPOGRAPHY
   ========================= */
/* Brand Utility Classes */
.bg-navy {
    background: var(--cw-navy);
    color: var(--cw-white);
}

.bg-teal {
    background: var(--cw-teal);
    color: var(--cw-white);
}

.bg-lime {
    background: var(--cw-lime);
    color: var(--cw-navy);
}

.text-navy {
    color: var(--cw-navy);
}

.text-teal {
    color: var(--cw-teal);
}

.text-lime {
    color: var(--cw-lime);
}

.border-navy {
    border: 2px solid var(--cw-navy);
}

.border-teal {
    border: 2px solid var(--cw-teal);
}

.border-lime {
    border: 2px solid var(--cw-lime);
}

.highlight {
    box-shadow: 0 0 0 3px var(--cw-lime);
    border-radius: var(--radius);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    padding-bottom: 16px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--cw-lime);
    border-radius: 2px;
    box-shadow: 0 0 0 4px rgba(183, 240, 0, 0.18);
}

.services-overview h2,
.roles-upgrade h2,
.faq-section h2,
.industries h2,
.footer-cta h2,
.trust-headline {
    text-align: center;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

/* Links */
a {
    color: var(--cw-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--cw-navy);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.79rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--cw-lime);
    color: var(--cw-navy);
    border-color: var(--cw-lime);
    box-shadow: 0 0 0 0 rgba(183, 240, 0, 0.4);
}

.btn-primary:hover {
    background: var(--cw-lime-bright);
    border-color: var(--cw-lime-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(183, 240, 0, 0.35);
    opacity: 1;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(11, 30, 59, 0.5), 0 0 0 6px rgba(183, 240, 0, 0.6);
}

.btn-secondary {
    background: var(--cw-navy);
    color: var(--cw-white);
    border-color: var(--cw-navy);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    opacity: 0.95;
}

.btn-outline {
    background: transparent;
    color: var(--cw-navy);
    border-color: var(--cw-navy);
}

.btn-outline:hover {
    background: var(--cw-navy);
    color: var(--cw-white);
}

.btn-large {
    padding: 1.01rem 2.25rem;
    font-size: 1.01rem;
}

/* Header - consistent height */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(11, 30, 59, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--cw-lime);
    height: 120px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: var(--spacing-md);
}

/* Logo link wrapper */
.logo-link {
    display: inline-flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

/* Logo - never stretch, keeps proportions */
.site-logo {
    height: 84px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
}

/* Legacy logo class support */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 110px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cw-navy);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    justify-content: center;
    flex: 1;
    align-items: center;
}

nav li {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    color: var(--cw-navy);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 3px;
    display: inline-block;
    text-align: center;
    line-height: 1.25;
    min-width: 90px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cw-lime);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--cw-navy);
    font-weight: 700;
}

.header-cta {
    display: flex;
    gap: var(--spacing-sm);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cw-navy);
    background: rgba(183, 240, 0, 0.2);
    border: 1px solid rgba(183, 240, 0, 0.55);
    border-radius: 999px;
    padding: 0.38rem 0.62rem;
}

.lang-link {
    color: var(--cw-navy);
    letter-spacing: 0.02em;
}

.lang-link.active {
    color: var(--cw-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* =========================
   HOMEPAGE / HERO
   ========================= */
.hero {
    background: linear-gradient(135deg, var(--cw-navy) 0%, #081a33 55%, #0d2a52 100%);
    color: var(--cw-white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(183, 240, 0, 0.08) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: clamp(1.8rem, 3.4vw, 3rem);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    font-weight: 400;
}

.hero-cta-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust-line {
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero .btn-outline {
    border-color: var(--cw-white);
    color: var(--cw-white);
}

.hero .btn-outline:hover {
    background: var(--cw-white);
    color: var(--cw-navy);
}

/* =========================
   HOMEPAGE / TRUST
   ========================= */
.premium-proof {
    background: linear-gradient(180deg, #ffffff 0%, #f2f9db 100%);
    padding: calc(var(--spacing-lg) - 1rem) 0;
    border-top: 1px solid rgba(183, 240, 0, 0.45);
    border-bottom: 1px solid rgba(183, 240, 0, 0.45);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
}

.proof-item {
    background: #ffffff;
    border: 1px solid rgba(11, 30, 59, 0.1);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: 0 12px 26px rgba(11, 30, 59, 0.08);
    border-top: 5px solid var(--cw-lime);
}

.proof-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(11, 30, 59, 0.12);
}

.proof-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.proof-item p {
    margin-bottom: 0;
    color: #30415b;
    font-size: 1rem;
}

.proof-label {
    display: inline-block;
    background: rgba(183, 240, 0, 0.18);
    color: #233150;
    border: 1px solid rgba(183, 240, 0, 0.6);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.trust-strip {
    background: var(--cw-navy);
    color: var(--cw-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 4px solid var(--cw-lime);
    border-bottom: 4px solid var(--cw-lime);
}

.trust-headline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.trust-details {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-details p {
    margin: 0;
}

.trust-strip a {
    color: var(--cw-lime);
}

/* =========================
   HOMEPAGE / SERVICES
   ========================= */
.services-overview {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    border-top: 1px solid rgba(11, 30, 59, 0.06);
    border-bottom: 1px solid rgba(183, 240, 0, 0.35);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 10px 24px rgba(11, 30, 59, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cw-lime), #d4ff57);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card.featured {
    border: 2px solid var(--cw-lime);
    box-shadow: 0 0 0 4px rgba(183, 240, 0, 0.22);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--cw-lime);
    box-shadow: 0 16px 34px rgba(11, 30, 59, 0.14), 0 0 0 2px var(--cw-lime);
}

.service-card h3 {
    letter-spacing: -0.01em;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.badge {
    display: inline-block;
    background: var(--cw-lime);
    color: var(--cw-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(183, 240, 0, 0.35);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.recommendation-box {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    border-left: 4px solid var(--cw-teal);
}

.recommendation-box h4 {
    margin-bottom: var(--spacing-sm);
}

.recommendation-box ul {
    list-style: none;
    padding: 0;
}

.recommendation-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.recommendation-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cw-teal);
    font-weight: bold;
}

/* =========================
   HOMEPAGE / ROLES
   ========================= */
.roles-upgrade {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, #0b1e3b 0%, #10284d 100%);
    color: var(--cw-white);
    border-top: 1px solid rgba(183, 240, 0, 0.35);
    border-bottom: 1px solid rgba(183, 240, 0, 0.35);
}

.roles-upgrade h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--cw-white);
}

.roles-upgrade h3 {
    color: var(--cw-white);
}

.roles-upgrade-intro {
    max-width: 980px;
    margin: 0 auto var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
}

.roles-models {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(183, 240, 0, 0.35);
    border-radius: var(--radius);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.roles-models:hover {
    border-color: var(--cw-lime);
    box-shadow: 0 0 0 2px rgba(183, 240, 0, 0.28), 0 14px 30px rgba(5, 12, 26, 0.22);
}

.roles-models ul,
.role-card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.roles-models li,
.role-card li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.role-levels {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--cw-lime);
    font-weight: 600;
}

.role-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.role-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    padding: var(--spacing-md);
    box-shadow: 0 8px 20px rgba(5, 12, 26, 0.24);
    transition: var(--transition);
}

.role-card:hover {
    transform: translateY(-4px);
    border-color: var(--cw-lime);
    box-shadow: 0 0 0 2px rgba(183, 240, 0, 0.28), 0 16px 32px rgba(5, 12, 26, 0.32);
}

.role-card:hover h3 {
    color: var(--cw-lime);
}

.role-card-exec {
    border: 1px solid var(--cw-lime);
    box-shadow: 0 0 0 2px rgba(183, 240, 0, 0.3), 0 12px 28px rgba(5, 12, 26, 0.28);
}

.leadership-lane {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(183, 240, 0, 0.42);
    border-radius: var(--radius);
    background: rgba(183, 240, 0, 0.08);
}

.leadership-lane h3 {
    margin-bottom: 0.5rem;
    color: var(--cw-lime);
}

.leadership-lane ul {
    margin: 0;
    padding-left: 1.1rem;
}

.leadership-lane li {
    margin-bottom: 0.35rem;
}

.leadership-lane li:last-child {
    margin-bottom: 0;
}

.roles-exec-cta {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    text-align: center;
    background: rgba(183, 240, 0, 0.12);
    border: 1px solid rgba(183, 240, 0, 0.4);
    border-radius: var(--radius);
    transition: var(--transition);
}

.roles-exec-cta:hover {
    border-color: var(--cw-lime);
    box-shadow: 0 0 0 2px rgba(183, 240, 0, 0.35), 0 14px 26px rgba(5, 12, 26, 0.26);
}

.footer-cta .btn-primary {
    box-shadow: 0 10px 26px rgba(183, 240, 0, 0.3);
}

.roles-exec-cta p {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95);
}

/* Onsite Support */
.onsite-support {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    border-top: 1px solid rgba(11, 30, 59, 0.06);
    border-bottom: 1px solid rgba(183, 240, 0, 0.35);
}

.onsite-support .section-intro {
    margin-bottom: var(--spacing-md);
}

.onsite-support-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbef 100%);
    border: 1px solid rgba(11, 30, 59, 0.1);
    border-left: 5px solid var(--cw-lime);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(11, 30, 59, 0.08);
    padding: var(--spacing-md);
}

.onsite-support-card h3 {
    margin-bottom: var(--spacing-sm);
}

.onsite-support-card ul {
    margin: 0;
    padding-left: 1.25rem;
}

.onsite-support-card li {
    margin-bottom: 0.5rem;
}

.onsite-bottom-line {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(11, 30, 59, 0.14);
    color: var(--cw-navy);
}


/* Industries */
.industries {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.industries h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.industry-card {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid var(--cw-lime);
    border: 1px solid rgba(11, 30, 59, 0.08);
}

.industry-card:hover {
    background: var(--cw-teal);
    color: var(--cw-white);
    transform: translateY(-4px);
}

.industry-card h3 {
    font-size: 1.25rem;
    margin: 0;
}

.roles-section {
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.roles-list {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 800px;
    margin: var(--spacing-sm) auto;
}

.industries-footer {
    text-align: center;
    font-style: italic;
    color: var(--gray);
}

/* Process Section */
.process {
    padding: var(--spacing-lg) 0;
    background: var(--light-gray);
    border-top: 1px solid rgba(11, 30, 59, 0.06);
    border-bottom: 1px solid rgba(183, 240, 0, 0.35);
}

.process h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.process-step {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 8px 20px rgba(11, 30, 59, 0.06);
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(11, 30, 59, 0.1), 0 0 0 1px rgba(183, 240, 0, 0.45);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--cw-lime);
    color: var(--cw-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
    border: 3px solid var(--cw-teal);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    font-size: 1rem;
    color: var(--gray);
}

/* Why Catalyst */
.why-catalyst {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    text-align: center;
}

.why-intro {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.why-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
}

/* Employers Section */
.employers-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.25rem;
    color: var(--gray);
}

.what-clients-care {
    margin: var(--spacing-lg) 0;
}

.what-clients-care h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.care-item {
    background: var(--light-gray);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius);
    border-left: 3px solid var(--cw-lime);
    transition: var(--transition);
}

.care-item:hover {
    background: linear-gradient(90deg, rgba(183, 240, 0, 0.2), rgba(183, 240, 0, 0.08));
    border-left-width: 6px;
}

.services-detail {
    margin: var(--spacing-lg) 0;
}

.service-detail-card {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-md);
}

.service-detail-card.priority {
    border: 2px solid var(--cw-navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(183, 240, 0, 0.15);
}

.service-detail-card ul {
    margin: var(--spacing-sm) 0;
    padding-left: 1.5rem;
}

.service-detail-card li {
    margin-bottom: 0.5rem;
}

.deliverables {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--light-gray);
}

.pricing-note {
    background: linear-gradient(135deg, var(--cw-navy) 0%, #173761 100%);
    color: var(--cw-white);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    text-align: center;
    margin: var(--spacing-lg) 0;
    border: 1px solid rgba(183, 240, 0, 0.35);
    box-shadow: 0 12px 30px rgba(11, 30, 59, 0.2);
}

/* Forms */
.form-section {
    max-width: 700px;
    margin: var(--spacing-lg) auto;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    border: 1px solid rgba(11, 30, 59, 0.1);
    box-shadow: 0 14px 30px rgba(11, 30, 59, 0.08);
}

.form-toggle-wrap {
    text-align: center;
    margin-top: var(--spacing-md);
}

.form-section h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
    background: var(--cw-lime);
    color: var(--cw-navy);
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    margin: calc(var(--spacing-md) * -1) calc(var(--spacing-md) * -1) var(--spacing-md);
    box-shadow: inset 0 -2px 0 rgba(11, 30, 59, 0.15);
}

.form-section iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 16px;
    background: #fff;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.modern-form .btn-primary {
    background: var(--cw-lime);
    color: var(--cw-navy);
    border-color: var(--cw-lime);
}

.modern-form .btn-primary:hover {
    background: #a3d600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: #ffffff;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(183, 240, 0, 0.7);
}

.modern-form button[type="submit"] {
    background: var(--cw-lime);
    color: var(--cw-navy);
    border-color: var(--cw-lime);
}

.modern-form button[type="submit"]:hover {
    background: #a3d600;
    transform: translateY(-2px);
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-alt {
    text-align: center;
    margin-top: var(--spacing-sm);
    color: var(--gray);
}

.intake-note {
    background: rgba(183, 240, 0, 0.14);
    border: 1px solid rgba(183, 240, 0, 0.55);
    color: var(--cw-navy);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-weight: 500;
}

/* Job Seekers Section */
.job-seekers-section {
    padding: var(--spacing-lg) 0;
    background: var(--light-gray);
    border-top: 1px solid rgba(11, 30, 59, 0.06);
}

.expectations-box {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    max-width: 700px;
    margin: var(--spacing-lg) auto;
    border: 1px solid rgba(11, 30, 59, 0.1);
    box-shadow: 0 12px 28px rgba(11, 30, 59, 0.08);
}

.expectations-box h3 {
    margin-bottom: var(--spacing-sm);
}

.expectations-box ul {
    list-style: none;
    padding: 0;
}

.expectations-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expectations-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cw-lime);
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.about-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
    font-size: 1.25rem;
}

.standards {
    margin-top: var(--spacing-lg);
}

.standards h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.standard-item {
    text-align: center;
    padding: var(--spacing-md);
}

.standard-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    background: var(--cw-lime);
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.standard-item h4 {
    font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-lg) 0;
    background: var(--light-gray);
    border-top: 1px solid rgba(11, 30, 59, 0.06);
}

.contact-info {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.contact-info h3 {
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-xs);
}

.contact-info strong {
    color: var(--cw-navy);
}

.contact-cta {
    text-align: center;
}

.inline-link {
    text-decoration: underline;
}

/* Footer CTA */
.footer-cta {
    background: var(--cw-navy);
    color: var(--cw-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 4px solid var(--cw-lime);
}

.footer-cta h2 {
    color: var(--cw-white);
    margin-bottom: var(--spacing-md);
}

.footer-cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.footer-cta .btn-primary {
    background: var(--cw-lime);
    color: var(--cw-navy);
    border-color: var(--cw-lime);
    box-shadow: 0 10px 24px rgba(183, 240, 0, 0.35);
}

.footer-cta .btn-primary:hover {
    background: #a3d600;
    opacity: 1;
}

.footer-cta .btn-outline {
    border-color: var(--cw-white);
    color: var(--cw-white);
}

.footer-cta .btn-outline:hover {
    background: var(--cw-white);
    color: var(--cw-navy);
}

.footer-cta .btn-primary:hover {
    background: var(--cw-lime-bright);
    border-color: var(--cw-lime-bright);
}

/* Footer */
footer {
    background: var(--cw-navy);
    color: var(--cw-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(300px, 1.15fr) repeat(3, minmax(180px, 1fr));
    gap: calc(var(--spacing-md) + 0.6rem);
    margin-bottom: var(--spacing-md);
    align-items: start;
}

.footer-logo {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem 1rem 0.9rem;
    border-left: 5px solid var(--cw-lime);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    max-width: 330px;
    overflow: hidden;
}

.footer-logo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 0.4rem;
}

.footer-logo p {
    color: var(--cw-navy);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-weight: 600;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.footer-contact a {
    color: var(--cw-lime);
}

.footer-contact a:hover {
    color: var(--cw-lime-bright);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.lang-footer-link {
    margin-top: 0.5rem;
}

.lang-footer-link a {
    color: var(--cw-lime);
    font-weight: 600;
}

.lang-footer-link a:hover {
    color: var(--cw-lime-bright);
}

/* added: lower-emphasis footer helper link for job seekers */
.footer-job-seeker-link {
    margin-top: 0.65rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-job-seeker-link a {
    color: var(--cw-lime);
    font-weight: 600;
}

.footer-job-seeker-link a:hover {
    color: var(--cw-lime-bright);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-lg) 0;
    background: var(--light-gray);
    border-top: 1px solid rgba(11, 30, 59, 0.06);
    border-bottom: 1px solid rgba(183, 240, 0, 0.35);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 8px 20px rgba(11, 30, 59, 0.06);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(11, 30, 59, 0.1), 0 0 0 1px rgba(183, 240, 0, 0.45);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.faq-item p {
    font-size: 1rem;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 968px) {
    .site-header {
        height: auto;
        min-height: 92px;
    }

    .site-header .container {
        gap: 0.75rem;
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
        flex-wrap: wrap;
    }

    .site-logo {
        height: 62px;
        max-width: 220px;
    }

    nav {
        display: none;
    }

    nav.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        z-index: 1001;
        border-bottom: 3px solid var(--cw-lime);
        box-shadow: 0 18px 40px rgba(11, 30, 59, 0.12);
    }

    nav.mobile-open ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    nav.mobile-open a {
        font-size: 1.05rem;
        padding: 0.5rem 0;
        display: block;
        text-align: left;
        min-width: 0;
    }

    nav.mobile-open li {
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: 0;
        order: 3;
    }

    .header-cta {
        order: 2;
        width: auto;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0;
    }

    .lang-switch {
        align-self: center;
        margin-left: 0;
    }

    .header-cta .btn {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .role-categories {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }
}

@media (max-width: 1180px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .site-logo {
        height: 56px;
        max-width: 190px;
    }

    .lang-switch {
        font-size: 0.78rem;
        padding: 0.26rem 0.46rem;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 9vw, 3rem);
        line-height: 1.08;
    }

    .logo span {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
    }

    .services-grid,
    .industries-grid,
    .faq-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HOMEPAGE PREMIUM REFINEMENTS
   ========================= */

main section {
    scroll-margin-top: 132px;
}

main section:not(.hero) {
    position: relative;
}

main section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(92%, 1120px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(11, 30, 59, 0.12), transparent);
    pointer-events: none;
}

.hero {
    padding: clamp(5rem, 9vw, 7.5rem) 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: clamp(1.8rem, 3.4vw, 3rem);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero h1 {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 72ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.55;
}

.hero-cta-text {
    max-width: 64ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.06rem;
    opacity: 0.96;
}

.hero-buttons {
    margin-top: 0.35rem;
    gap: 0.85rem;
}

.hero-buttons .btn {
    min-width: 220px;
}

.hero-buttons .btn-primary {
    box-shadow: 0 12px 28px rgba(183, 240, 0, 0.34);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 34px rgba(183, 240, 0, 0.42);
}

.hero-buttons .btn-secondary {
    box-shadow: 0 10px 24px rgba(6, 21, 38, 0.24);
}

.proof-grid {
    align-items: stretch;
}

.proof-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.proof-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(11, 30, 59, 0.14);
    border-color: rgba(2, 185, 188, 0.25);
}

.proof-item h3 {
    line-height: 1.3;
}

.services-grid {
    align-items: stretch;
}

.service-card {
    min-height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
}

.service-card:not(.featured) {
    opacity: 0.94;
}

.service-card:not(.featured):hover {
    opacity: 1;
}

.service-card.featured {
    border-width: 2px;
    box-shadow:
        0 0 0 4px rgba(183, 240, 0, 0.24),
        0 18px 38px rgba(11, 30, 59, 0.2);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-card.featured .badge {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.service-card.featured h3 {
    font-size: clamp(1.55rem, 2.2vw, 1.9rem);
}

.role-card,
.industry-card,
.faq-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.roles-exec-cta .btn-primary,
.footer-cta .btn-primary {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.services-overview h2,
.roles-upgrade h2,
.faq-section h2,
.industries h2 {
    margin-bottom: clamp(1.6rem, 3vw, 2.8rem);
}

.recommendation-box li {
    line-height: 1.55;
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: #d64545;
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.12);
}

.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
    border-color: var(--cw-teal);
}

.footer-logo {
    max-width: 290px;
}

.btn:focus-visible,
nav a:focus-visible,
.service-link:focus-visible {
    border-radius: 10px;
}

@media (min-width: 969px) {
    .service-card.featured {
        transform: translateY(-6px) scale(1.01);
    }

    .service-card.featured:hover {
        transform: translateY(-8px) scale(1.015);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .hero-buttons .btn-primary:hover,
    .service-card:hover,
    .proof-item:hover,
    .faq-item:hover,
    .role-card:hover {
        transform: none !important;
    }
}

@media (max-width: 968px) {
    .hero {
        padding: clamp(4rem, 8vw, 5.4rem) 0;
    }

    .hero-content {
        padding: 1.4rem 1.1rem 1.5rem;
    }

    .hero-buttons .btn {
        min-width: 0;
    }

    .service-card.featured {
        transform: none;
    }
}

main section.reveal-init {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

main section.reveal-init.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    main section.reveal-init {
        opacity: 1;
        transform: none;
        transition: none;
    }
}