/* =========================================
   HireIn v100.0 — DESIGN SYSTEM
   Logo-derived palette: Navy #022449, Teal #018589
   ========================================= */

/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    /* Brand Colors — extracted from logo.jpeg */
    --color-navy: #022449;
    --color-navy-deep: #012C4E;
    --color-navy-light: #0A3A6B;
    --color-teal: #018589;
    --color-teal-light: #02A8AD;
    --color-teal-bright: #00CED1;
    --color-teal-glow: rgba(1, 133, 137, 0.15);
    --color-teal-subtle: #E5F5F5;

    /* Neutrals */
    --color-bg: #F8FAFC;
    --color-bg-warm: #F1F5F9;
    --color-white: #FFFFFF;
    --color-text: #1E293B;
    --color-text-secondary: #475569;
    --color-text-muted: #94A3B8;
    --color-border: #E2E8F0;
    --color-border-light: #F1F5F9;

    /* Gradients */
    --gradient-navy: linear-gradient(135deg, #022449 0%, #0A3A6B 100%);
    --gradient-teal: linear-gradient(135deg, #018589 0%, #02A8AD 100%);
    --gradient-hero: linear-gradient(135deg, #022449 0%, #012C4E 40%, #01434A 100%);
    --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(1,133,137,0.08) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 20%, rgba(2,36,73,0.05) 0%, transparent 50%),
                     radial-gradient(ellipse at 50% 80%, rgba(1,133,137,0.05) 0%, transparent 50%);
    --gradient-card-dark: linear-gradient(145deg, rgba(2,36,73,0.95), rgba(1,44,78,0.9));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(2,36,73,0.06);
    --shadow-md: 0 4px 12px rgba(2,36,73,0.08);
    --shadow-lg: 0 10px 30px rgba(2,36,73,0.1);
    --shadow-xl: 0 20px 50px rgba(2,36,73,0.12);
    --shadow-teal: 0 10px 30px rgba(1,133,137,0.2);
    --shadow-teal-lg: 0 20px 50px rgba(1,133,137,0.25);
    --shadow-float: 0 25px 60px rgba(2,36,73,0.15);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 7rem 0;
    --section-pad-lg: 10rem 0;
    --container-max: 1200px;
    --container-wide: 1400px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-teal { color: var(--color-teal); }
.text-navy { color: var(--color-navy); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-teal);
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
    background: var(--color-teal-glow);
    border-radius: var(--radius-full);
    border: 1px solid rgba(1,133,137,0.15);
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.section-subtitle.centered {
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-navy) 30%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-teal-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all 0.4s var(--ease-bounce);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn i {
    transition: transform 0.3s var(--ease-smooth);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-teal {
    background: var(--gradient-teal);
    color: var(--color-white);
    border-color: var(--color-teal);
    box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal-lg);
}

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

.btn-outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(1,133,137,0.08);
    color: var(--color-teal);
    border-color: transparent;
}

.btn-ghost:hover {
    background: rgba(1,133,137,0.15);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.15rem 2.8rem;
    font-size: 1.1rem;
}

/* Nav CTA button */
.btn-nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    background: var(--gradient-teal);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    border: none;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 15px rgba(1,133,137,0.2);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1,133,137,0.3);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-teal);
    font-family: var(--font-heading);
    transition: gap 0.3s var(--ease-smooth), color 0.3s;
}

.link-arrow:hover {
    gap: 0.9rem;
    color: var(--color-navy);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s var(--ease-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    transition: height 0.3s var(--ease-smooth);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a {
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--color-text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color 0.3s, background 0.3s;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-nav-cta):hover,
.nav-links a:not(.btn-nav-cta).active {
    color: var(--color-teal);
    background: var(--color-teal-glow);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--color-navy);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.hamburger:hover {
    background: var(--color-teal-glow);
}

/* =========================================
   PAGE HERO (reusable for inner pages)
   ========================================= */
.page-hero {
    background: var(--gradient-hero);
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(1,133,137,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(2,168,173,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-bg), transparent);
    pointer-events: none;
}

.page-hero .section-label {
    background: rgba(1,133,137,0.2);
    border-color: rgba(1,133,137,0.3);
    color: var(--color-teal-bright);
}

.page-hero h1 {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: -1.5px;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.page-hero .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 12s infinite ease-in-out alternate;
}

.page-hero .hero-orb.orb-a {
    width: 400px; height: 400px;
    background: var(--color-teal);
    top: -100px; right: -100px;
}

.page-hero .hero-orb.orb-b {
    width: 300px; height: 300px;
    background: var(--color-navy-light);
    bottom: -50px; left: -50px;
    animation-delay: -6s;
}

/* =========================================
   HOME HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: var(--container-wide);
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.8;
}

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

.hero-image-placeholder {
    flex: 1;
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 1;
    opacity: 0.5;
    animation: orbFloat 12s infinite ease-in-out alternate;
}

.orb-1 {
    width: 320px; height: 320px;
    background: var(--color-teal);
    top: -30px; right: 10px;
}

.orb-2 {
    width: 260px; height: 260px;
    background: var(--color-navy);
    bottom: -30px; left: 10px;
    animation-delay: -6s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-25px, 25px) scale(1.08); }
}

/* Premium Glass Action Box */
.premium-glass {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-float), inset 0 1px 0 rgba(255,255,255,0.8);
    width: 100%;
    max-width: 440px;
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    z-index: 10;
}

.box-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
}

.box-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.quick-action-form .input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
}

.quick-action-form .input-group label i {
    color: var(--color-teal);
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s var(--ease-smooth);
    appearance: none;
    color: var(--color-navy);
    font-weight: 500;
    cursor: pointer;
}

.custom-select-wrapper select:hover {
    border-color: rgba(1,133,137,0.3);
}

.custom-select-wrapper select:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 4px var(--color-teal-glow);
}

.custom-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-teal);
    pointer-events: none;
    transition: transform 0.3s;
    font-size: 0.85rem;
}

.custom-select-wrapper:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.btn-premium-action {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.1rem;
    border-radius: var(--radius-md);
    background: var(--gradient-navy);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease-bounce);
}

.btn-premium-action:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal-lg);
    background: var(--gradient-teal);
}

.btn-premium-action i {
    transition: transform 0.3s;
}

.btn-premium-action:hover i {
    transform: translateX(5px);
}

/* =========================================
   HERO METRICS TICKER
   ========================================= */
.hero-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
}

.metric-item {
    text-align: left;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.metric-value span {
    color: var(--color-teal);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* =========================================
   CLIENT LOGOS CAROUSEL
   ========================================= */
.clients-section {
    padding: 4rem 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    overflow: hidden;
}

.clients-section .section-label {
    display: block;
    text-align: center;
    margin-bottom: 2.5rem;
    background: none;
    border: none;
    padding: 0;
}

.logo-track-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.logo-track .client-logo {
    height: 40px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
    flex-shrink: 0;
}

.logo-track .client-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   SPLIT SECTION (Employers / Employees)
   ========================================= */
.split-section {
    display: flex;
    flex-wrap: wrap;
}

.split-half {
    flex: 1;
    min-width: 300px;
    padding: 6rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.employers-side {
    background: var(--color-navy);
    color: var(--color-white);
}

.employers-side h2 { color: var(--color-white); }
.employers-side p { color: rgba(255,255,255,0.75); }

.employees-side {
    background: var(--color-bg);
}

.split-content {
    max-width: 500px;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.employers-side .icon-wrap {
    background: rgba(1,133,137,0.2);
    color: var(--color-teal-bright);
}

.employees-side .icon-wrap {
    background: var(--color-teal-glow);
    color: var(--color-teal);
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.split-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--color-teal);
    font-size: 1.1rem;
}

/* =========================================
   PREMIUM SERVICES BENTO GRID
   ========================================= */
.services-premium {
    padding: var(--section-pad-lg);
    background: #010E1A;
    position: relative;
    overflow: hidden;
}

.services-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(1,133,137,0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(2,36,73,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-header-left .gradient-text,
.section-header-left .gradient-text-light {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-header-left p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    line-height: 1.8;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.bento-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: transform 0.5s var(--ease-out), border-color 0.4s;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(1,133,137,0.3);
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--color-teal);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    top: -50px;
    right: -50px;
}

.bento-card:hover .card-glow {
    opacity: 0.12;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(1,133,137,0.15);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.bento-card p {
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-teal);
    font-weight: 600;
    margin-top: auto;
    transition: gap 0.3s;
    font-family: var(--font-heading);
}

.bento-link:hover {
    gap: 1rem;
}

.large-card { grid-column: span 2; grid-row: span 2; }
.large-card h3 { font-size: 2.2rem; }
.tall-card { grid-column: span 1; grid-row: span 2; }
.wide-card { grid-column: span 3; grid-row: span 1; }

.horizontal-content {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
}

.horizontal-content .card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
}

/* Abstract Premium Graphics */
.abstract-graphic {
    flex-grow: 1;
    position: relative;
    width: 100%;
    min-height: 100px;
    margin-top: auto;
    border-radius: var(--radius-md);
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.03);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-nodes { position: relative; }

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-teal);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-teal);
}

.n1 { top: 75%; left: 10%; animation: pulse 3s infinite; }
.n2 { top: 20%; left: 30%; animation: pulse 3s infinite 1s; }
.n3 { top: 30%; left: 90%; animation: pulse 3s infinite 0.5s; }

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.node-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.graphic-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 20px 20px 0 20px;
}

.bar {
    width: 18px;
    background: linear-gradient(to top, rgba(1,133,137,0.1), var(--color-teal));
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out forwards;
    transform-origin: bottom;
}

.b1 { height: 40%; }
.b2 { height: 70%; animation-delay: 0.2s; }
.b3 { height: 50%; animation-delay: 0.4s; }
.b4 { height: 90%; animation-delay: 0.6s; }

@keyframes barGrow {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

/* =========================================
   INDUSTRIES SECTION
   ========================================= */
.industries-section {
    padding: var(--section-pad);
    background: var(--color-white);
}

.industries-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.industries-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industries-header p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.industry-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1,133,137,0.2);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: var(--color-teal-glow);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-teal);
    transition: all 0.3s;
}

.industry-card:hover .industry-icon {
    background: var(--color-teal);
    color: var(--color-white);
}

.industry-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.industry-tags span {
    font-size: 0.75rem;
    background: var(--color-bg);
    color: var(--color-text-secondary);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-light);
}

/* =========================================
   STATS / COUNTER SECTION
   ========================================= */
.stats-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(1,133,137,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number .teal {
    color: var(--color-teal-bright);
}

.stat-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-weight: 500;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: var(--section-pad);
    background: var(--color-bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    color: #F59E0B;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* =========================================
   FEATURED JOBS SECTION (Home)
   ========================================= */
.featured-jobs-section {
    padding: var(--section-pad);
    background: var(--color-white);
}

.featured-jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.featured-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   JOB CARDS (Shared across pages)
   ========================================= */
.job-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1,133,137,0.2);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.job-company-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-teal-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.job-type-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    background: var(--color-teal-glow);
    color: var(--color-teal);
    font-family: var(--font-heading);
}

.job-type-badge.remote {
    background: rgba(99,102,241,0.1);
    color: #6366F1;
}

.job-type-badge.hybrid {
    background: rgba(245,158,11,0.1);
    color: #D97706;
}

.job-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.job-card .company-name {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.job-meta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.job-meta span {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.job-meta i {
    color: var(--color-teal);
    font-size: 0.8rem;
}

.job-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.job-tags span {
    font-size: 0.75rem;
    background: var(--color-bg);
    color: var(--color-text-secondary);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
    margin-top: auto;
}

.job-salary {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-size: 1.05rem;
}

.job-card-footer .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* =========================================
   JOBS PAGE — SEARCH & FILTERS
   ========================================= */
.jobs-toolbar {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-text);
    transition: border-color 0.3s;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 4px var(--color-teal-glow);
}

.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-white);
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23018589' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-teal);
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    background: var(--color-white);
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--color-teal-glow);
    border-color: var(--color-teal);
    color: var(--color-teal);
}

.jobs-results-count {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.jobs-results-count strong {
    color: var(--color-navy);
}

.jobs-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* =========================================
   JOB DETAIL MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2,36,73,0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
}

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

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 650px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s var(--ease-bounce);
    box-shadow: var(--shadow-float);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-content .company-name {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-content .job-meta {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
}

.modal-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--color-navy);
}

.modal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.modal-section ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

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

/* =========================================
   APPLICATION FORM MODAL
   ========================================= */
.apply-form-group {
    margin-bottom: 1.5rem;
}

.apply-form-group label {
    display: block;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.apply-form-group input,
.apply-form-group textarea,
.apply-form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color 0.3s;
}

.apply-form-group input:focus,
.apply-form-group textarea:focus,
.apply-form-group select:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 4px var(--color-teal-glow);
}

/* =========================================
   SERVICES PAGE — TABS
   ========================================= */
.services-tabs-section {
    padding: var(--section-pad);
}

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0;
}

.tab-btn {
    padding: 1rem 1.8rem;
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--color-navy);
}

.tab-btn.active {
    color: var(--color-teal);
    border-bottom-color: var(--color-teal);
}

.tab-panel {
    display: none;
    animation: fadeTab 0.4s ease;
}

.tab-panel.active {
    display: block;
}

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

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-detail-content p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.service-feature-item:hover {
    background: var(--color-teal-glow);
}

.service-feature-item i {
    color: var(--color-teal);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.service-feature-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.service-feature-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.service-detail-visual {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.service-detail-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(1,133,137,0.2) 0%, transparent 60%);
}

.service-visual-icon {
    font-size: 6rem;
    color: rgba(1,133,137,0.3);
    position: relative;
    z-index: 2;
}

/* =========================================
   CASE STUDIES
   ========================================= */
.case-studies-section {
    padding: var(--section-pad);
    background: var(--color-bg-warm);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.case-study-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    height: 200px;
    background: var(--gradient-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-study-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(1,133,137,0.15) 0%, transparent 70%);
}

.case-study-image i {
    font-size: 3rem;
    color: rgba(1,133,137,0.4);
    position: relative;
    z-index: 2;
}

.case-study-body {
    padding: 2rem;
}

.case-study-body .case-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-teal);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
    display: block;
}

.case-study-body h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.case-study-body p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.case-study-stat {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
}

.case-study-stat div strong {
    display: block;
    font-size: 1.4rem;
    color: var(--color-teal);
    font-family: var(--font-heading);
}

.case-study-stat div span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* =========================================
   PRICING COMPARISON
   ========================================= */
.pricing-section {
    padding: var(--section-pad);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--color-teal);
    box-shadow: var(--shadow-teal);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 1rem 0;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-light);
}

.pricing-features li i {
    color: var(--color-teal);
}

/* =========================================
   ABOUT PAGE — TIMELINE
   ========================================= */
.timeline-section {
    padding: var(--section-pad);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-teal), var(--color-navy));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: var(--color-teal);
    border-radius: 50%;
    border: 4px solid var(--color-bg);
    box-shadow: 0 0 0 3px var(--color-teal);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 2rem);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
}

.timeline-content .year {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-teal);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* =========================================
   ABOUT PAGE — TEAM GRID
   ========================================= */
.team-section {
    padding: var(--section-pad);
    background: var(--color-bg-warm);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--gradient-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-teal-bright);
    font-family: var(--font-heading);
    font-weight: 800;
    position: relative;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--color-teal);
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.team-socials {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.team-socials a:hover {
    background: var(--color-teal);
    color: var(--color-white);
}

/* =========================================
   ABOUT PAGE — VALUES
   ========================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1,133,137,0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--color-teal-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-teal);
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* =========================================
   ABOUT PAGE — GLOBAL OFFICES
   ========================================= */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.office-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out);
}

.office-card:hover {
    transform: translateY(-4px);
}

.office-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(1,133,137,0.2) 0%, transparent 60%);
}

.office-card .city {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.office-card .country {
    font-size: 0.85rem;
    color: var(--color-teal-bright);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.office-card .office-detail {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.office-card .office-detail i {
    color: var(--color-teal-bright);
    font-size: 0.8rem;
}

/* =========================================
   EMPLOYER PAGE — ROI CALCULATOR
   ========================================= */
.roi-calculator {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.roi-calculator h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.roi-calculator > p {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.roi-input-group {
    margin-bottom: 1.5rem;
}

.roi-input-group label {
    display: block;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.roi-input-group input[type="range"] {
    width: 100%;
    accent-color: var(--color-teal);
    height: 6px;
    border-radius: 3px;
}

.roi-input-group .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
}

.roi-results {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.roi-result-item h4 {
    color: var(--color-teal-bright);
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.roi-result-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* =========================================
   EMPLOYER / CANDIDATE — PROCESS STEPS
   ========================================= */
.process-section {
    padding: var(--section-pad);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 3rem auto 0;
    padding: 0 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--color-teal), var(--color-navy), var(--color-teal));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-teal);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 1.2rem;
    box-shadow: var(--shadow-teal);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =========================================
   CANDIDATE — SKILL ASSESSMENT
   ========================================= */
.skill-assessment-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.skill-category {
    margin-bottom: 2rem;
}

.skill-category h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-category h4 i {
    color: var(--color-teal);
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.skill-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.skill-checkbox.checked {
    background: var(--color-teal);
    border-color: var(--color-teal);
    color: white;
    font-size: 0.7rem;
}

.skill-item label {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.skill-score {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.skill-score h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.skill-score .score-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-teal-bright);
    line-height: 1;
}

.skill-score p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* =========================================
   CONTACT PAGE — OFFICE SELECTOR
   ========================================= */
.office-selector {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.office-tab {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--color-text-secondary);
}

.office-tab:hover {
    border-color: rgba(1,133,137,0.3);
    color: var(--color-teal);
}

.office-tab.active {
    background: var(--gradient-teal);
    border-color: var(--color-teal);
    color: var(--color-white);
    box-shadow: var(--shadow-teal);
}

.office-detail-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.office-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.office-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.office-info-item i {
    color: var(--color-teal);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.office-info-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.office-info-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.office-map-placeholder {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.office-map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(1,133,137,0.15) 0%, transparent 70%);
}

.office-map-placeholder i {
    font-size: 4rem;
    color: rgba(1,133,137,0.3);
    position: relative;
    z-index: 2;
}

/* =========================================
   CTA / CONTACT SECTION (HOME)
   ========================================= */
.cta-premium {
    padding: var(--section-pad-lg);
    background: linear-gradient(to bottom, var(--color-white), var(--color-bg));
    position: relative;
    overflow: hidden;
}

.cta-premium::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(1,133,137,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-text p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-teal);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Glassmorphism Form Card */
.form-glass-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.form-glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.premium-input-group input,
.premium-input-group textarea,
.premium-input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(2,36,73,0.1);
    padding: 10px 0;
    font-size: 1rem;
    color: var(--color-navy);
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.premium-input-group select {
    appearance: none;
    cursor: pointer;
}

.select-chevron {
    position: absolute;
    right: 0;
    top: 15px;
    color: var(--color-navy);
    pointer-events: none;
}

.premium-input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: rgba(2,36,73,0.4);
    pointer-events: none;
    transition: all 0.3s ease;
}

.premium-input-group input:focus,
.premium-input-group textarea:focus,
.premium-input-group select:focus {
    outline: none;
    border-bottom-color: var(--color-teal);
}

.premium-input-group input:focus + label,
.premium-input-group input:not(:placeholder-shown) + label,
.premium-input-group textarea:focus + label,
.premium-input-group textarea:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 0.82rem;
    color: var(--color-teal);
    font-weight: 600;
}

.premium-input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit-premium {
    background: var(--gradient-navy);
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.4s var(--ease-bounce);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.btn-submit-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal-lg);
    background: var(--gradient-teal);
}

.btn-submit-premium i {
    transition: transform 0.3s;
}

.btn-submit-premium:hover i {
    transform: translateX(5px) translateY(-5px);
}

/* =========================================
   TOAST NOTIFICATIONS
   ========================================= */
.toast-container {
    position: fixed;
    top: 6rem;
    right: 2rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toast {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: toastIn 0.4s var(--ease-bounce);
    border-left: 4px solid var(--color-teal);
    min-width: 300px;
}

.toast.success { border-left-color: #10B981; }
.toast.error { border-left-color: #EF4444; }

.toast i {
    font-size: 1.2rem;
    color: var(--color-teal);
}

.toast.success i { color: #10B981; }
.toast.error i { color: #EF4444; }

.toast p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-text);
}

.toast-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.2rem;
}

@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.removing {
    animation: toastOut 0.3s var(--ease-smooth) forwards;
}

@keyframes toastOut {
    to { transform: translateX(120%); opacity: 0; }
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 5rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 0%, rgba(1,133,137,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand img {
    height: 100px;
    margin-bottom: 1rem;
    /* Removed filter to prevent blank block */
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.7rem;
    transition: color 0.3s, padding-left 0.3s;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--color-teal-bright);
    padding-left: 0.3rem;
}

/* Legacy footer support */
.footer-links h4, .footer-social h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.7rem;
    transition: color 0.3s, padding-left 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-teal-bright);
    padding-left: 0.3rem;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    margin-right: 0.5rem;
    color: var(--color-white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--color-teal);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s var(--ease-out);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s var(--ease-out);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s var(--ease-out);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-top: 8rem;
        text-align: center;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-placeholder {
        width: 100%;
        min-height: 400px;
    }

    .hero-metrics {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .metric-item {
        text-align: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .large-card, .tall-card, .wide-card {
        grid-column: span 1;
        grid-row: auto;
    }

    .horizontal-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
    }

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

    .footer-brand img {
        margin: 0 auto 1rem;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .featured-jobs-grid {
        grid-template-columns: 1fr;
    }

    .jobs-listing-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .office-detail-card {
        grid-template-columns: 1fr;
    }

    .roi-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--color-border);
        gap: 0.3rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }

    .hamburger {
        display: flex;
    }

    .split-half {
        padding: 4rem 2rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: 100%;
        margin-left: 3rem;
        margin-right: 0;
    }

    .search-bar {
        flex-direction: column;
    }

    .filter-row {
        flex-direction: column;
    }

    .featured-jobs-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   HireIn  — EXPONENTIAL DESIGN SYSTEM
   ============================================= */

/* =========================================
   DARK MODE THEME
   ========================================= */
body.dark-mode {
    --color-bg: #020914;
    --color-bg-warm: #051329;
    --color-white: #0A1929;
    --color-text: #E2E8F0;
    --color-text-secondary: #94A3B8;
    --color-text-muted: #64748B;
    --color-border: rgba(255,255,255,0.08);
    --color-border-light: rgba(255,255,255,0.04);
    --color-navy: #E2E8F0;
    --color-teal-glow: rgba(0,229,255,0.12);
    --color-teal: #00E5FF;
    --color-teal-light: #00E5FF;
    --color-teal-bright: #00E5FF;
    --gradient-navy: linear-gradient(135deg, #0A1929 0%, #0F2744 100%);
    --gradient-teal: linear-gradient(135deg, #018589 0%, #00E5FF 100%);
    --gradient-hero: linear-gradient(135deg, #020914 0%, #051329 40%, #0A2A3C 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.6);
    --shadow-teal: 0 10px 30px rgba(0,229,255,0.15);
    --shadow-teal-lg: 0 20px 50px rgba(0,229,255,0.2);
    --shadow-float: 0 25px 60px rgba(0,0,0,0.5);
    background-color: #020914;
    color: #E2E8F0;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #F1F5F9;
}

body.dark-mode .navbar {
    background: rgba(2,9,20,0.92);
    border-bottom-color: rgba(255,255,255,0.06);
}

body.dark-mode .navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,229,255,0.08);
}

body.dark-mode .nav-links a {
    color: #94A3B8;
}

body.dark-mode .nav-links a:not(.btn-nav-cta):hover,
body.dark-mode .nav-links a:not(.btn-nav-cta).active {
    color: #00E5FF;
    background: rgba(0,229,255,0.08);
}

body.dark-mode .logo img {
    filter: brightness(0) invert(1);
}

body.dark-mode .premium-glass {
    background: rgba(5,19,41,0.85);
    border-color: rgba(0,229,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

body.dark-mode .custom-select-wrapper select {
    background: rgba(10,25,41,0.9);
    border-color: rgba(255,255,255,0.1);
    color: #E2E8F0;
}

body.dark-mode .btn-premium-action {
    background: linear-gradient(135deg, #018589 0%, #00E5FF 100%);
    box-shadow: 0 10px 25px rgba(0,229,255,0.25);
}

body.dark-mode .employers-side {
    background: #051329;
}

body.dark-mode .employees-side {
    background: #020914;
}

body.dark-mode .services-premium {
    background: #010810;
}

body.dark-mode .industries-section {
    background: #0A1929;
}

body.dark-mode .industry-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .industry-card:hover {
    box-shadow: 0 10px 35px rgba(0,229,255,0.15);
    border-color: rgba(0,229,255,0.2);
}

body.dark-mode .stats-section {
    background: linear-gradient(135deg, #020914 0%, #051329 100%);
}

body.dark-mode .testimonial-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .testimonial-card:hover {
    box-shadow: 0 10px 35px rgba(0,229,255,0.12);
}

body.dark-mode .job-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .job-card:hover {
    box-shadow: 0 10px 35px rgba(0,229,255,0.15);
    border-color: rgba(0,229,255,0.2);
}

body.dark-mode .featured-jobs-section {
    background: #0A1929;
}

body.dark-mode .cta-premium {
    background: linear-gradient(to bottom, #0A1929, #020914);
}

body.dark-mode .form-glass-card {
    background: rgba(5,19,41,0.85);
    border-color: rgba(0,229,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

body.dark-mode .premium-input-group input,
body.dark-mode .premium-input-group textarea,
body.dark-mode .premium-input-group select {
    color: #E2E8F0;
    border-bottom-color: rgba(255,255,255,0.1);
}

body.dark-mode .premium-input-group label {
    color: rgba(255,255,255,0.35);
}

body.dark-mode .btn-submit-premium {
    background: linear-gradient(135deg, #018589 0%, #00E5FF 100%);
    box-shadow: 0 10px 25px rgba(0,229,255,0.25);
}

body.dark-mode footer {
    background: #010810;
}

body.dark-mode .page-hero {
    background: linear-gradient(135deg, #020914 0%, #051329 40%, #0A2A3C 100%);
}

body.dark-mode .jobs-toolbar {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .search-input-wrapper input {
    background: rgba(10,25,41,0.9);
    border-color: rgba(255,255,255,0.1);
    color: #E2E8F0;
}

body.dark-mode .filter-select {
    background: #0A1929;
    border-color: rgba(255,255,255,0.1);
    color: #E2E8F0;
}

body.dark-mode .modal-content {
    background: #0A1929;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

body.dark-mode .modal-close {
    background: rgba(255,255,255,0.06);
    color: #94A3B8;
}

body.dark-mode .apply-form-group input,
body.dark-mode .apply-form-group textarea,
body.dark-mode .apply-form-group select {
    background: rgba(5,19,41,0.9);
    border-color: rgba(255,255,255,0.1);
    color: #E2E8F0;
}

body.dark-mode .tab-btn {
    color: #64748B;
    border-bottom-color: transparent;
}

body.dark-mode .tab-btn.active {
    color: #00E5FF;
    border-bottom-color: #00E5FF;
}

body.dark-mode .tabs-nav {
    border-bottom-color: rgba(255,255,255,0.06);
}

body.dark-mode .service-detail-content .service-feature-item {
    background: rgba(255,255,255,0.03);
}

body.dark-mode .case-study-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .pricing-card {
    background: #051329;
    border-color: rgba(255,255,255,0.08);
}

body.dark-mode .pricing-card.featured {
    border-color: #00E5FF;
    box-shadow: 0 0 35px rgba(0,229,255,0.15);
}

body.dark-mode .value-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .team-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .office-card {
    background: linear-gradient(135deg, #051329, #0A2A3C);
}

body.dark-mode .timeline-content {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .timeline::before {
    background: linear-gradient(to bottom, #00E5FF, #018589);
}

body.dark-mode .timeline-dot {
    background: #00E5FF;
    border-color: #020914;
    box-shadow: 0 0 0 3px #00E5FF;
}

body.dark-mode .roi-calculator {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .skill-assessment-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .skill-checkbox {
    border-color: rgba(255,255,255,0.15);
}

body.dark-mode .office-detail-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .office-tab {
    background: #051329;
    border-color: rgba(255,255,255,0.08);
    color: #94A3B8;
}

body.dark-mode .office-tab.active {
    background: linear-gradient(135deg, #018589, #00E5FF);
    border-color: #00E5FF;
    color: #fff;
    box-shadow: 0 0 25px rgba(0,229,255,0.25);
}

body.dark-mode .gradient-text {
    background: linear-gradient(135deg, #F1F5F9 30%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .clients-section {
    background: #0A1929;
    border-color: rgba(255,255,255,0.04);
}

body.dark-mode .client-logo {
    color: #94A3B8 !important;
}

body.dark-mode .section-label {
    background: rgba(0,229,255,0.08);
    border-color: rgba(0,229,255,0.15);
    color: #00E5FF;
}

body.dark-mode .process-section {
    background: #0A1929 !important;
}

body.dark-mode .case-studies-section {
    background: #020914;
}

body.dark-mode .pricing-section {
    background: #0A1929 !important;
}

/* =========================================
   DARK MODE TOGGLE BUTTON
   ========================================= */
.theme-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(1,133,137,0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--color-teal);
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--color-teal);
    color: #fff;
    transform: rotate(30deg) scale(1.1);
    box-shadow: 0 0 20px rgba(1,133,137,0.3);
}

body.dark-mode .theme-toggle {
    background: rgba(0,229,255,0.1);
    color: #00E5FF;
}

body.dark-mode .theme-toggle:hover {
    background: #00E5FF;
    color: #020914;
    box-shadow: 0 0 25px rgba(0,229,255,0.4);
}

/* =========================================
   ANIMATED MESH GRADIENT BACKGROUND
   ========================================= */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.mesh-bg .mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: meshDrift 20s infinite ease-in-out alternate;
}

.mesh-bg .mesh-orb:nth-child(1) {
    width: 600px; height: 600px;
    background: rgba(1,133,137,0.07);
    top: -10%; left: -10%;
}

.mesh-bg .mesh-orb:nth-child(2) {
    width: 500px; height: 500px;
    background: rgba(2,36,73,0.06);
    bottom: -10%; right: -10%;
    animation-delay: -10s;
}

.mesh-bg .mesh-orb:nth-child(3) {
    width: 400px; height: 400px;
    background: rgba(1,133,137,0.05);
    top: 40%; left: 50%;
    animation-delay: -5s;
    animation-duration: 25s;
}

body.dark-mode .mesh-bg .mesh-orb:nth-child(1) {
    background: rgba(0,229,255,0.04);
}

body.dark-mode .mesh-bg .mesh-orb:nth-child(2) {
    background: rgba(1,133,137,0.05);
}

body.dark-mode .mesh-bg .mesh-orb:nth-child(3) {
    background: rgba(0,229,255,0.03);
}

@keyframes meshDrift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.95); }
    100% { transform: translate(20px, -20px) scale(1.05); }
}

/* =========================================
   3D TILT CARD SYSTEM
   ========================================= */
.tilt-card {
    transition: transform 0.1s ease-out, box-shadow 0.3s;
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card:hover {
    box-shadow: 0 25px 60px rgba(1,133,137,0.2), 0 0 0 1px rgba(1,133,137,0.1);
}

body.dark-mode .tilt-card:hover {
    box-shadow: 0 25px 60px rgba(0,229,255,0.12), 0 0 0 1px rgba(0,229,255,0.15);
}

.tilt-card .tilt-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.tilt-card:hover .tilt-shine {
    opacity: 1;
}

/* =========================================
   NEON GLOW SYSTEM
   ========================================= */
.neon-border {
    position: relative;
}

.neon-border::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(1,133,137,0.4), rgba(2,36,73,0.2), rgba(1,133,137,0.4));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(6px);
}

.neon-border:hover::after {
    opacity: 1;
}

body.dark-mode .neon-border::after {
    background: linear-gradient(135deg, rgba(0,229,255,0.5), rgba(1,133,137,0.2), rgba(0,229,255,0.5));
}

body.dark-mode .neon-border:hover {
    box-shadow: 0 0 35px rgba(0,229,255,0.15);
}

/* Neon Text Glow */
.neon-text {
    text-shadow: 0 0 10px rgba(1,133,137,0.3), 0 0 30px rgba(1,133,137,0.15);
}

body.dark-mode .neon-text {
    text-shadow: 0 0 10px rgba(0,229,255,0.4), 0 0 40px rgba(0,229,255,0.15), 0 0 80px rgba(0,229,255,0.05);
}

/* =========================================
   MAGNETIC BUTTON SYSTEM
   ========================================= */
.btn-magnetic {
    transition: transform 0.2s ease-out, box-shadow 0.3s;
    will-change: transform;
}

.btn-magnetic:hover {
    box-shadow: 0 15px 40px rgba(1,133,137,0.3);
}

body.dark-mode .btn-magnetic:hover {
    box-shadow: 0 15px 40px rgba(0,229,255,0.25), 0 0 20px rgba(0,229,255,0.1);
}

/* =========================================
   ANIMATED GLOW RINGS
   ========================================= */
.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(1,133,137,0.15);
    animation: glowRingSpin 20s linear infinite;
    pointer-events: none;
}

.glow-ring::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(1,133,137,0.08);
}

body.dark-mode .glow-ring {
    border-color: rgba(0,229,255,0.1);
}

body.dark-mode .glow-ring::before {
    border-color: rgba(0,229,255,0.05);
}

@keyframes glowRingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================
   AI CHATBOT WIDGET
   ========================================= */
.chatbot-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-teal);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    box-shadow: 0 8px 30px rgba(1,133,137,0.35);
    transition: all 0.4s var(--ease-bounce);
    animation: fabPulse 3s infinite;
}

.chatbot-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(1,133,137,0.45);
}

body.dark-mode .chatbot-fab {
    box-shadow: 0 8px 30px rgba(0,229,255,0.3);
    animation-name: fabPulseDark;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(1,133,137,0.35); }
    50% { box-shadow: 0 8px 30px rgba(1,133,137,0.55), 0 0 0 10px rgba(1,133,137,0.1); }
}

@keyframes fabPulseDark {
    0%, 100% { box-shadow: 0 8px 30px rgba(0,229,255,0.3); }
    50% { box-shadow: 0 8px 30px rgba(0,229,255,0.5), 0 0 0 12px rgba(0,229,255,0.08); }
}

.chatbot-panel {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 380px;
    max-height: 520px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-float);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-bounce);
}

.chatbot-panel.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

body.dark-mode .chatbot-panel {
    background: #0A1929;
    border-color: rgba(0,229,255,0.1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,255,0.08);
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    background: var(--gradient-hero);
    color: white;
}

.chatbot-header .bot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,229,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.chatbot-header .bot-info h5 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.chatbot-header .bot-info .status {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chatbot-header .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chatbot-header .chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.chatbot-header .chat-close:hover {
    color: #fff;
}

.chatbot-messages {
    flex: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 340px;
    scrollbar-width: thin;
    scrollbar-color: rgba(1,133,137,0.2) transparent;
}

.chat-msg {
    display: flex;
    gap: 0.6rem;
    max-width: 85%;
    animation: chatMsgIn 0.3s var(--ease-out);
}

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

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-msg .msg-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.chat-msg.bot .msg-avatar {
    background: var(--color-teal-glow);
    color: var(--color-teal);
}

.chat-msg.user .msg-avatar {
    background: rgba(2,36,73,0.1);
    color: var(--color-navy);
}

body.dark-mode .chat-msg.user .msg-avatar {
    background: rgba(0,229,255,0.08);
    color: #00E5FF;
}

.chat-msg .msg-bubble {
    padding: 0.7rem 1rem;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.chat-msg.bot .msg-bubble {
    background: var(--color-bg-warm);
    color: var(--color-text);
    border-bottom-left-radius: 4px;
}

.chat-msg.user .msg-bubble {
    background: var(--gradient-teal);
    color: #fff;
    border-bottom-right-radius: 4px;
}

body.dark-mode .chat-msg.bot .msg-bubble {
    background: rgba(255,255,255,0.04);
    color: #E2E8F0;
}

.chat-msg .msg-bubble .chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.chat-msg .msg-bubble .chat-option-btn {
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-white);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
    color: var(--color-text);
    text-align: left;
}

.chat-msg .msg-bubble .chat-option-btn:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
    background: var(--color-teal-glow);
}

body.dark-mode .chat-msg .msg-bubble .chat-option-btn {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.1);
    color: #94A3B8;
}

body.dark-mode .chat-msg .msg-bubble .chat-option-btn:hover {
    border-color: #00E5FF;
    color: #00E5FF;
    background: rgba(0,229,255,0.08);
}

.chatbot-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--color-border);
}

body.dark-mode .chatbot-input {
    border-top-color: rgba(255,255,255,0.06);
}

.chatbot-input input {
    flex: 1;
    border: none;
    background: var(--color-bg);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: var(--color-text);
    outline: none;
}

body.dark-mode .chatbot-input input {
    background: rgba(255,255,255,0.04);
    color: #E2E8F0;
}

.chatbot-input button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-teal);
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-bounce);
    flex-shrink: 0;
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-text-muted);
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* =========================================
   KANBAN BOARD
   ========================================= */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.kanban-column {
    background: var(--color-bg-warm);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    min-height: 300px;
}

body.dark-mode .kanban-column {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.kanban-column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--color-border);
}

body.dark-mode .kanban-column-header {
    border-bottom-color: rgba(255,255,255,0.06);
}

.kanban-column-header h5 {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kanban-column-header .col-count {
    font-size: 0.75rem;
    background: var(--color-teal-glow);
    color: var(--color-teal);
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-family: var(--font-heading);
}

.kanban-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 0.8rem;
    cursor: default;
    transition: all 0.3s;
}

.kanban-card:hover {
    box-shadow: var(--shadow-md);
}

body.dark-mode .kanban-card {
    background: #0A1929;
    border-color: rgba(255,255,255,0.06);
}

body.dark-mode .kanban-card:hover {
    box-shadow: 0 4px 20px rgba(0,229,255,0.08);
}

.kanban-card h6 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.kanban-card .kanban-company {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.kanban-card .kanban-date {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.kanban-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Column status colors */
.kanban-column[data-status="applied"] .kanban-column-header { border-bottom-color: #3B82F6; }
.kanban-column[data-status="reviewing"] .kanban-column-header { border-bottom-color: #F59E0B; }
.kanban-column[data-status="interviewing"] .kanban-column-header { border-bottom-color: #8B5CF6; }
.kanban-column[data-status="offered"] .kanban-column-header { border-bottom-color: #10B981; }

/* =========================================
   JOB CREATOR WIZARD
   ========================================= */
.wizard-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

body.dark-mode .wizard-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

.wizard-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.wizard-card > p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

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

.wizard-form-group label {
    display: block;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.wizard-form-group input,
.wizard-form-group textarea,
.wizard-form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color 0.3s;
}

body.dark-mode .wizard-form-group input,
body.dark-mode .wizard-form-group textarea,
body.dark-mode .wizard-form-group select {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.1);
    color: #E2E8F0;
}

.wizard-form-group input:focus,
.wizard-form-group textarea:focus,
.wizard-form-group select:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 4px var(--color-teal-glow);
}

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

.wizard-tags-input {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.5rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    min-height: 48px;
    align-items: center;
    background: var(--color-bg);
    cursor: text;
}

body.dark-mode .wizard-tags-input {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.1);
}

.wizard-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    background: var(--color-teal-glow);
    color: var(--color-teal);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.wizard-tag .remove-tag {
    cursor: pointer;
    font-size: 0.7rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.wizard-tag .remove-tag:hover {
    opacity: 1;
}

.wizard-tags-input input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.9rem;
    flex: 1;
    min-width: 120px;
    padding: 0.3rem;
    font-family: var(--font-body);
    color: var(--color-text);
}

body.dark-mode .wizard-tags-input input {
    color: #E2E8F0;
}

/* =========================================
   CALENDAR / SCHEDULING WIDGET
   ========================================= */
.calendar-widget {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
}

body.dark-mode .calendar-widget {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-header h4 {
    font-size: 1.2rem;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    transition: all 0.3s;
}

body.dark-mode .calendar-nav button {
    border-color: rgba(255,255,255,0.1);
    color: #94A3B8;
}

.calendar-nav button:hover {
    background: var(--color-teal-glow);
    border-color: var(--color-teal);
    color: var(--color-teal);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-grid .day-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.calendar-grid .day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.calendar-grid .day-cell:hover {
    background: var(--color-teal-glow);
    color: var(--color-teal);
}

.calendar-grid .day-cell.today {
    background: var(--gradient-teal);
    color: #fff;
    font-weight: 700;
}

.calendar-grid .day-cell.selected {
    background: var(--gradient-navy);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(2,36,73,0.2);
}

body.dark-mode .calendar-grid .day-cell.selected {
    background: linear-gradient(135deg, #018589, #00E5FF);
    box-shadow: 0 4px 15px rgba(0,229,255,0.25);
}

.calendar-grid .day-cell.empty {
    cursor: default;
}

.calendar-grid .day-cell.empty:hover {
    background: none;
}

.time-slots {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.time-slot {
    padding: 0.6rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--color-text-secondary);
}

body.dark-mode .time-slot {
    border-color: rgba(255,255,255,0.08);
    color: #94A3B8;
}

.time-slot:hover,
.time-slot.selected {
    border-color: var(--color-teal);
    background: var(--color-teal-glow);
    color: var(--color-teal);
}

body.dark-mode .time-slot:hover,
body.dark-mode .time-slot.selected {
    border-color: #00E5FF;
    background: rgba(0,229,255,0.08);
    color: #00E5FF;
}

/* =========================================
   SVG SALARY BENCHMARK CHART
   ========================================= */
.chart-container {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-top: 2rem;
}

body.dark-mode .chart-container {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-header h4 {
    font-size: 1.2rem;
}

.chart-selector {
    display: flex;
    gap: 0.4rem;
}

.chart-selector button {
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: none;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--color-text-muted);
}

body.dark-mode .chart-selector button {
    border-color: rgba(255,255,255,0.08);
    color: #64748B;
}

.chart-selector button.active,
.chart-selector button:hover {
    background: var(--color-teal-glow);
    border-color: var(--color-teal);
    color: var(--color-teal);
}

.chart-svg {
    width: 100%;
    height: 280px;
}

.chart-bar {
    transition: all 0.5s var(--ease-out);
    cursor: pointer;
}

.chart-bar:hover {
    filter: brightness(1.2);
}

.chart-label {
    fill: var(--color-text-muted);
    font-size: 11px;
    font-family: var(--font-body);
}

.chart-value {
    fill: var(--color-text);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
}

body.dark-mode .chart-label {
    fill: #64748B;
}

body.dark-mode .chart-value {
    fill: #E2E8F0;
}

/* =========================================
   RESUME ANALYZER
   ========================================= */
.resume-analyzer {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

body.dark-mode .resume-analyzer {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

.resume-analyzer textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    min-height: 120px;
    resize: vertical;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color 0.3s;
}

body.dark-mode .resume-analyzer textarea {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.1);
    color: #E2E8F0;
}

.resume-analyzer textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 4px var(--color-teal-glow);
}

.analyzer-results {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-warm);
    border-radius: var(--radius-lg);
    display: none;
}

body.dark-mode .analyzer-results {
    background: rgba(255,255,255,0.02);
}

.analyzer-results.active {
    display: block;
    animation: fadeTab 0.4s ease;
}

.match-score-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.match-score-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.match-score-ring .ring-bg {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 8;
}

body.dark-mode .match-score-ring .ring-bg {
    stroke: rgba(255,255,255,0.06);
}

.match-score-ring .ring-fill {
    fill: none;
    stroke: var(--color-teal);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s var(--ease-out);
}

body.dark-mode .match-score-ring .ring-fill {
    stroke: #00E5FF;
}

.match-score-ring .ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-teal);
}

body.dark-mode .match-score-ring .ring-text {
    color: #00E5FF;
}

.matched-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
    justify-content: center;
}

.matched-tags span {
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

.matched-tags span.match {
    background: rgba(16,185,129,0.1);
    color: #10B981;
}

.matched-tags span.miss {
    background: rgba(239,68,68,0.1);
    color: #EF4444;
}

/* =========================================
   SOURCING DASHBOARD (Employers)
   ========================================= */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.dash-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

body.dark-mode .dash-card {
    background: #051329;
    border-color: rgba(255,255,255,0.06);
}

.dash-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

body.dark-mode .dash-card:hover {
    box-shadow: 0 10px 35px rgba(0,229,255,0.1);
}

.dash-card .dash-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    background: var(--color-teal-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-teal);
}

.dash-card .dash-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.dash-card .dash-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* =========================================
   RESPONSIVE OVERRIDES for  components
   ========================================= */
@media (max-width: 900px) {
    .kanban-board {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

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

    .chatbot-panel {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 5.5rem;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kanban-board {
        grid-template-columns: 1fr;
    }
}
