/* ========================================================
   COSPIXARE TECHNOLOGIES - Modern Light Theme System (2026)
   Domain: cospixaretechnologies.com
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

/* ---- CSS Variable Tokens ---- */
:root {
    /* Bright Premium Brand Colors */
    --neon-cyan: #2563EB;     /* Ocean Blue */
    --neon-pink: #FF6B6B;     /* Coral Pink */
    --neon-purple: #7C3AED;   /* Deep Violet */
    --neon-gold: #F59E0B;     /* Amber Gold */
    --neon-green: #10B981;    /* Emerald Green */
    
    /* Background Canvas Colors (Bright & Light) */
    --canvas-dark: #F8FAFC;    /* Main light background */
    --canvas-panel: #FFFFFF;   /* Card / Panel background */
    --canvas-white: #FFFFFF;
    
    /* Text Colors */
    --text-muted: #64748B;     /* Soft slate grey body text */
    --text-white: #0F172A;     /* Dark headings text */
    --text-dark: #0F172A;      /* Main text color */
    
    /* Gradients */
    --gradient-neon: linear-gradient(135deg, #2563EB, #7C3AED);
    --gradient-warm: linear-gradient(135deg, #FF6B6B, #F59E0B);
    --gradient-emerald: linear-gradient(135deg, #10B981, #2563EB);
    --gradient-dark: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));

    /* Premium Shadows & Glows */
    --glow-cyan: 0 8px 30px rgba(37, 99, 235, 0.15);
    --glow-purple: 0 8px 30px rgba(124, 58, 237, 0.15);
    --glow-pink: 0 8px 30px rgba(255, 107, 107, 0.15);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.04);
    
    /* Typography Rules */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacings */
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--canvas-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--canvas-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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



/* ---- Custom Cursor ---- */
.cursor {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    transition: width 0.2s, height 0.2s, background 0.2s;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor { display: block; }
}

/* ---- Header / Navbar Redesign (Floating Glass Capsule Dock) ---- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1240px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan) 25%, #3B82F6 50%, var(--neon-cyan) 75%, transparent);
    background-size: 200% auto;
    animation: borderGlow 6s linear infinite;
    opacity: 0.8;
    z-index: 1001;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.07);
    border-color: rgba(15, 23, 42, 0.1);
}

header.scrolled .navbar {
    padding: 10px 28px;
}

.navbar .logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar .logo img {
    height: 38px;
    width: auto;
    transition: var(--transition-fast);
}

header.scrolled .navbar .logo img {
    height: 34px;
}

.navbar .brand-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.navbar .brand-text .highlight {
    color: var(--neon-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-dark);
    border-color: rgba(15, 23, 42, 0.04);
}

.nav-links a.active {
    color: #FFFFFF !important;
    background: var(--gradient-neon) !important;
    box-shadow: var(--glow-cyan);
    border-color: transparent;
}

.dropdown {
    position: relative;
}

.dropdown .dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 100;
    padding-top: 15px; /* Spans the gap to maintain hover state */
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu {
    display: flex;
    gap: 36px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    min-width: 820px; /* Wider layout to prevent text wrap on desktop */
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12), var(--shadow-soft);
}

.mega-menu .menu-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu .menu-column h3 {
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
    padding-bottom: 8px;
    position: relative;
}

.mega-menu .menu-column h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-neon);
}

.mega-menu .menu-column a {
    display: flex;
    align-items: flex-start; /* Aligns icon to the first line of text */
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.25s ease;
}

.mega-menu .menu-column a:hover {
    background: rgba(37, 99, 235, 0.04);
    color: var(--text-dark);
    transform: translateX(6px);
}

.mega-menu .menu-column a i {
    color: var(--neon-cyan);
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
    margin-top: 2px; /* Centers the icon vertically relative to the first text line */
    transition: color 0.2s ease;
}

.mega-menu .menu-column a:hover i {
    color: var(--neon-green);
}

.btn-contact {
    background: var(--gradient-neon) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: var(--glow-cyan);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3) !important;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 48px 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--neon-cyan);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--gradient-neon);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: var(--radius-full);
}

.btn-secondary:hover {
    border-color: var(--neon-purple);
    background: rgba(124, 58, 237, 0.04);
    transform: translateY(-3px);
}

.hero-image-container {
    flex: 0.8;
    position: relative;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    z-index: -1;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
    animation: float 6s ease-in-out infinite;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-stats .stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-cyan);
}

.hero-stats .stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Main Sections Layout ---- */
section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--neon-cyan);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

/* ---- Asymmetric Grids & Modern Sections ---- */

/* Who We Are */
.who-we-are-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.who-text .section-badge {
    margin-bottom: 16px;
}

.who-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.who-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-card {
    background: var(--canvas-panel);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.highlight-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-3px);
}

.highlight-card i {
    color: var(--neon-cyan);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.highlight-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.highlight-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.who-image-container img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
}

/* Light Glassmorphic Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--canvas-panel);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.03), transparent 50%);
    z-index: -1;
}

.service-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(15,23,42,0.06);
}

.service-card .service-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 24px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--neon-cyan);
}

.service-card:nth-child(even) .service-icon {
    color: var(--neon-purple);
    background: rgba(124, 58, 237, 0.06);
    border-color: rgba(124, 58, 237, 0.1);
}

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

.service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

.service-card .learn-more:hover {
    gap: 10px;
}

/* ---- LinkBasket Section ---- */
.linkbasket-showcase {
    background: var(--canvas-panel); /* Soft light grey background for contrast */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.linkbasket-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    z-index: 1;
}

.linkbasket-wrapper {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.05), var(--shadow-soft);
}

.linkbasket-content .product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--neon-green);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--neon-green);
    border-radius: 50%;
    display: inline-block;
    animation: badgePulse 1.8s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.linkbasket-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.linkbasket-content h2 span {
    color: var(--neon-green);
}

.app-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.linkbasket-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.linkbasket-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.lb-feature {
    display: flex;
    gap: 12px;
}

.lb-feature .feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    flex-shrink: 0;
}

.lb-feature h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.lb-feature span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.btn-linkbasket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-emerald);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-linkbasket:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
}

/* Dark Glassmorphic Mobile Mockup */
.phone-mockup {
    width: 260px;
    height: 500px;
    border-radius: 40px;
    border: 10px solid #1E293B;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15,23,42,0.15);
    background: #0B0F19;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 22px;
    background: #0F172A;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    padding: 40px 18px 18px;
    display: flex;
    flex-direction: column;
    background: #0B0F19;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.app-header h3 {
    font-size: 0.95rem;
    color: #10B981;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.app-header .avatar {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #E2E8F0;
    font-weight: 600;
}

.list-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.list-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #FFFFFF;
    font-weight: 700;
}

.list-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #10B981;
    font-weight: 500;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-fast);
}

.list-item:last-child {
    border-bottom: none;
}

.list-item .checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}

.list-item .checkbox.checked {
    background: #10B981;
    border-color: #10B981;
}

.list-item .item-name {
    font-size: 0.85rem;
    flex: 1;
    color: #E2E8F0;
    font-weight: 500;
}

.list-item .item-name.completed {
    color: #64748B;
    text-decoration: line-through;
}

.list-item .item-qty {
    font-size: 0.75rem;
    color: #64748B;
}

/* Why Choose Us Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--canvas-panel);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.why-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-4px);
}

.why-card .why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(124, 58, 237, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.15rem;
    color: var(--neon-purple);
}

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

.why-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---- Process Timeline ---- */
.process-section {
    background: var(--canvas-panel);
    border-top: 1px solid rgba(15,23,42,0.06);
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 48px;
    right: 48px;
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
}

.process-step {
    text-align: center;
    flex: 1;
    z-index: 2;
}

.process-step .step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    background: var(--canvas-panel);
    border: 2px solid rgba(15, 23, 42, 0.08);
    transition: var(--transition-fast);
}

.process-step:hover .step-number {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 180px;
    margin: 0 auto;
}

/* ---- Marquee Stack ---- */
.tech-section {
    padding: 60px 0;
    background: var(--canvas-dark);
    overflow: hidden;
}

.tech-marquee-container {
    width: 100%;
}

.tech-marquee {
    display: flex;
    gap: 36px;
    animation: marquee 24s linear infinite;
    width: max-content;
}

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

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--canvas-panel);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.tech-item img {
    height: 24px;
    width: auto;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ---- Counter Stats ---- */
.stats-section {
    background: var(--gradient-neon);
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

.stat-card .count-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
}

.stat-card .stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    opacity: 0.8;
}

/* ---- Floating Button ---- */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 12px 24px;
    background: var(--gradient-neon);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--glow-cyan);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* ---- Footer Redesign (Premium Light Grid) ---- */
/* ---- Footer Redesign (Premium Dark Slate Grid) ---- */
.footer {
    background: #0B0F19;
    padding: 100px 0 60px;
    color: #F8FAFC;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-neon);
    opacity: 0.9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr 1.6fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: #FFFFFF;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: var(--radius-full);
}

.footer-col p {
    font-size: 0.88rem;
    color: #94A3B8;
    line-height: 1.7;
}

/* Highlight the newsletter column as a premium translucent dark card */
.footer-grid .footer-col:last-child {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.footer-grid .footer-col:last-child h3::after {
    display: none;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Redesigned custom brand color hover animations */
.social-links a.social-fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
    transform: translateY(-4px);
}

.social-links a.social-li:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(10, 102, 194, 0.4);
    transform: translateY(-4px);
}

.social-links a.social-ig:hover {
    background: linear-gradient(45deg, #F9CE34, #EE2A7B, #6228D7);
    border-color: transparent;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(238, 42, 123, 0.4);
    transform: translateY(-4px);
}

.social-links a.social-x:hover {
    background: #000000;
    border-color: #333333;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.social-links a.social-th:hover {
    background: #1E1E1E;
    border-color: #1E1E1E;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.footer-col ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
    list-style: none !important;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--neon-cyan);
    transform: translateX(6px);
}

.newsletter-form {
    margin-top: 20px;
    width: 100%;
}

.newsletter-form .input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.newsletter-form .input-group:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.newsletter-form input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 16px;
    color: #FFFFFF !important;
    font-size: 0.88rem;
    outline: none !important;
    flex-grow: 1;
    width: 50%;
}

.newsletter-form input::placeholder {
    color: #64748B;
}

.newsletter-form button {
    padding: 10px 24px;
    background: var(--gradient-neon) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: var(--glow-cyan) !important;
    flex-shrink: 0;
    width: auto;
}

.newsletter-form button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.45) !important;
}

.footer-bottom {
    padding: 30px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #64748B;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

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

.footer-bottom-links a:hover {
    color: var(--neon-cyan);
}

/* ---- Inner Page Hero ---- */
.page-hero {
    padding: 140px 24px 60px;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.page-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    color: var(--text-dark);
}

.page-hero-content p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: 0.95rem;
}

.page-hero-content .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--gradient-neon);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---- Redesigned About Hero Section ---- */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--text-dark);
    margin-top: 14px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.about-hero-text h1 span {
    color: var(--neon-cyan);
}

.about-hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-neon);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

.about-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.35);
}

/* Stats Containers */
.about-stats-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-stat-item {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stat-item:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.about-stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-stat-item.item-blue .about-stat-num { color: #3B82F6; }
.about-stat-item.item-cyan .about-stat-num { color: var(--neon-cyan); }
.about-stat-item.item-purple .about-stat-num { color: var(--neon-purple); }

/* ---- About Page Story Section ---- */
.about-story {
    padding: 100px 0;
    background: #FFFFFF;
}

.about-story .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.story-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.story-feat-item i {
    color: var(--neon-green);
    font-size: 1.1rem;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: var(--text-dark);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.about-cta-btn:hover {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

/* Story Image Mockup Frame */
.story-img-wrapper {
    position: relative;
}

.img-glow-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.story-img-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05), var(--shadow-soft);
}

/* ---- Core Values Section ---- */
.values-section {
    background: var(--canvas-panel);
    padding: 100px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

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

.value-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.value-icon-holder {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 24px;
}

/* Theme accent headers on cards */
.value-card.value-cyan .value-icon-holder { background: rgba(0, 242, 254, 0.08); color: var(--neon-cyan); }
.value-card.value-blue .value-icon-holder { background: rgba(37, 99, 235, 0.08); color: #3B82F6; }
.value-card.value-purple .value-icon-holder { background: rgba(124, 58, 237, 0.08); color: var(--neon-purple); }
.value-card.value-green .value-icon-holder { background: rgba(16, 185, 129, 0.08); color: var(--neon-green); }
.value-card.value-orange .value-icon-holder { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
.value-card.value-indigo .value-icon-holder { background: rgba(79, 70, 229, 0.08); color: #4F46E5; }

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

/* ---- Contact Page Elements ---- */
.contact-section {
    background: var(--canvas-dark);
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.04), var(--shadow-soft);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: relative;
    overflow: hidden;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon);
    opacity: 0.9;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    outline: none;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group .file-upload {
    padding: 12px 16px;
    background: #F8FAFC;
    border: 1px dashed rgba(15, 23, 42, 0.15);
    cursor: pointer;
}

.form-group .file-upload:hover {
    border-color: var(--neon-cyan);
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select option {
    background: #FFFFFF;
    color: var(--text-dark);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
}

.submit-btn {
    padding: 14px 32px;
    background: var(--gradient-neon);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: var(--glow-cyan);
    transition: var(--transition-fast);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 28px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-neon);
    opacity: 0.8;
}

.info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---- Careers Page Elements ---- */
.career-benefits {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
    list-style: none !important;
}

.career-benefits li {
    padding: 6px 14px;
    background: var(--canvas-panel);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.career-stats-bar {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 24px;
}

.career-stat .stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-cyan);
}

.career-stat .stat-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Redesigned Job Openings */
.open-positions-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: var(--canvas-panel);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.job-card:hover::before {
    opacity: 1;
}

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

.job-dept {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neon-cyan);
    background: rgba(0, 242, 254, 0.06);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 242, 254, 0.15);
}

.job-type {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.job-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.job-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 18px;
}

.job-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-job-apply {
    width: 100%;
    padding: 12px 20px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.job-card:hover .btn-job-apply {
    background: var(--gradient-neon);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: var(--glow-cyan);
}

/* Redesigned Career Form Wrapper */
.career-form-section {
    background: var(--canvas-dark);
    padding: 100px 0;
}

.career-form-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.career-form {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.04), var(--shadow-soft);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.career-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon);
    opacity: 0.9;
}

.file-upload {
    padding: 10px;
    border: 1px dashed rgba(15,23,42,0.15);
    background: #FFF;
    border-radius: var(--radius-md);
}

/* ---- Legal Pages (Static Card Layout) ---- */
.legal-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-last-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 36px 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.legal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    border-color: rgba(0, 242, 254, 0.2);
}

.legal-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.legal-card-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-blue), var(--neon-cyan));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 2px;
}

.legal-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.legal-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-card-body ul {
    list-style: none !important;
    padding-left: 0;
    margin: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-card-body ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 22px;
    line-height: 1.7;
}

.legal-card-body ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-cyan);
}

.legal-page-section {
    padding: 80px 0 100px;
    background: var(--canvas-panel);
}

.legal-contact-box {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 28px 32px;
    margin-top: 40px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.legal-contact-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.legal-contact-box a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-contact-box a:hover {
    color: var(--neon-cyan);
}

/* ---- Product Showcase Page ---- */
/* ---- Product Showcase Page ---- */
.product-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(243, 244, 246, 0.4) 0%, rgba(229, 231, 235, 0.1) 90%), #FFFFFF;
    padding: 140px 48px 100px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.product-hero .hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    z-index: 1;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02), var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.product-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-emerald);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-feature-card:hover {
    border-color: rgba(16, 185, 129, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
}

.product-feature-card:hover::before {
    opacity: 1;
}

.product-feature-card .feature-icon-lg {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--neon-green);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.product-feature-card:hover .feature-icon-lg {
    background: var(--gradient-emerald);
    color: #FFFFFF;
    transform: scale(1.05);
}

.product-feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Redesigned Step Progression Timeline */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 48px;
}

.how-step-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01), var(--shadow-soft);
    position: relative;
    transition: all 0.3s ease;
}

.how-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.06);
}

.how-step-card .step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-emerald);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.how-step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.how-step-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Beautiful Download CTA Panel */
.product-cta-section {
    background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.02) 0%, transparent 60%), #FFFFFF;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.product-cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.product-cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.product-cta-section p {
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.btn-download-app {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gradient-emerald);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-download-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    color: #FFFFFF !important;
}

/* ---- Thank You Page ---- */
/* ---- Thank You Page Redesign ---- */
.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}

/* Background animated decorative light circles */
.thankyou-section::before,
.thankyou-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.6;
}

.thankyou-section::before {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.15);
    top: -100px;
    left: -100px;
}

.thankyou-section::after {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.12);
    bottom: -150px;
    right: -150px;
}

.thankyou-content {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    max-width: 620px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 1;
}

.thankyou-content .check-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: var(--glow-cyan);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.thankyou-content h1 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.thankyou-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Special gift / lead magnet box */
.special-gift-card {
    background: #F8FAFC;
    border: 1px dashed rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.special-gift-card h4 {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.special-gift-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.special-gift-card .btn-gift {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
    background: var(--gradient-emerald);
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: var(--transition-fast);
}

.special-gift-card .btn-gift:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

/* Connect socials */
.thankyou-socials {
    margin-top: 36px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 24px;
}

.thankyou-socials h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-grid a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-grid a:hover {
    color: #FFFFFF;
    transform: translateY(-4px);
    border-color: transparent;
}

.social-grid a.fb:hover { background: #1877F2; box-shadow: 0 6px 15px rgba(24, 119, 242, 0.35); }
.social-grid a.ln:hover { background: #0A66C2; box-shadow: 0 6px 15px rgba(10, 102, 194, 0.35); }
.social-grid a.ig:hover { background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%); box-shadow: 0 6px 15px rgba(220, 39, 67, 0.35); }
.social-grid a.tw:hover { background: #000000; box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35); }
.social-grid a.th:hover { background: #000000; box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); }

/* ---- Scroll Animation Hooks ---- */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* ---- Responsive Adaptability ---- */
@media (max-width: 1024px) {
    header {
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }
    .navbar { padding: 14px 20px; }
    header.scrolled .navbar { padding: 10px 20px; }
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-content p { margin: 0 auto 28px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-container { margin-top: 40px; }
    .who-we-are-layout { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .linkbasket-wrapper { 
        grid-template-columns: 1fr; 
        text-align: center; 
        padding: 40px 24px;
    }
    .linkbasket-features { max-width: 480px; margin: 0 auto 24px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { flex-direction: column; gap: 40px; }
    .process-timeline::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story .container { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
    .product-features-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    
    /* Responsive About Hero */
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .about-stats-container {
        max-width: 450px;
        margin: 0 auto;
    }
    .about-stat-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }
    .navbar { padding: 12px 18px; }
    header.scrolled { top: 0; }
    header.scrolled .navbar { padding: 10px 18px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--canvas-panel);
        border-left: 1px solid rgba(15, 23, 42, 0.08);
        flex-direction: column;
        padding: 80px 24px;
        transition: var(--transition-fast);
        border-radius: 0;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mega-menu {
        flex-direction: column;
        min-width: unset;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 12px;
    }
    
    .services-grid, .why-grid, .values-grid, .product-features-grid, .how-steps, .features-highlight {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}

/* ---- Floating Custom Toast ---- */
#custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0F172A;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#custom-toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

#custom-toast.error {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.15);
}

#custom-toast.success {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
}

/* ---- Redesigned Premium Services Cards ---- */
.service-detail-card {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-detail-card:nth-of-type(even) {
    background: var(--canvas-panel);
}

.service-detail-card .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.service-card-text {
    flex: 1.2;
}

.service-card-image {
    flex: 0.8;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-card:hover .service-card-image img {
    transform: scale(1.04);
}

/* Custom list badges for features in cards */
.service-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 32px;
    padding: 0;
    list-style: none;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
    transition: all 0.2s ease;
}

.service-features-list li i {
    color: var(--neon-green);
    font-size: 0.88rem;
}

.service-features-list li:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.06);
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-neon);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    box-shadow: var(--glow-cyan);
    transition: var(--transition-fast);
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    color: #FFFFFF;
}

/* Mobile Dropdown & Layout Styling */
@media (max-width: 1024px) {
    .dropdown .dropdown-content {
        display: none !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        padding-top: 10px !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
    }
    
    .dropdown.active .dropdown-content {
        display: block !important;
    }
    
    .mega-menu {
        flex-direction: column !important;
        min-width: unset !important;
        padding: 0 12px !important;
        gap: 20px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .service-detail-card .container {
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    /* Responsive Careers Hero */
    .career-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-desc {
        margin: 0 auto 36px;
    }
    
    .career-benefits-pills {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .career-stats-deck {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .career-stat-card:hover {
        transform: translateY(-5px);
    }
}

/* ---- Redesigned Careers Hero ---- */
.career-hero {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.career-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: center;
}

.career-hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--text-dark);
    margin-top: 14px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.career-hero-text h1 span {
    color: var(--neon-cyan);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

.benefits-wrapper h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.career-benefits-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.career-benefits-pills li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.benefit-icon.icon-growth {
    background: rgba(0, 242, 254, 0.08);
    color: var(--neon-cyan);
}

.benefit-icon.icon-tech {
    background: rgba(37, 99, 235, 0.08);
    color: #3B82F6;
}

.benefit-icon.icon-remote {
    background: rgba(124, 58, 237, 0.08);
    color: var(--neon-purple);
}

.benefit-icon.icon-learn {
    background: rgba(16, 185, 129, 0.08);
    color: var(--neon-green);
}

/* Stats Cards Deck */
.career-stats-deck {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-stat-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-stat-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.career-stat-card .stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.career-stat-card.card-cyan .stat-icon {
    background: rgba(0, 242, 254, 0.06);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 242, 254, 0.12);
}

.career-stat-card.card-purple .stat-icon {
    background: rgba(124, 58, 237, 0.06);
    color: var(--neon-purple);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.career-stat-card.card-emerald .stat-icon {
    background: rgba(16, 185, 129, 0.06);
    color: var(--neon-green);
    border: 1px solid rgba(16, 185, 129, 0.12);
}

.career-stat-card .stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.career-stat-card.card-cyan .stat-num { color: var(--neon-cyan); }
.career-stat-card.card-purple .stat-num { color: var(--neon-purple); }
.career-stat-card.card-emerald .stat-num { color: var(--neon-green); }

.career-stat-card .stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Custom Select Dropdown UI ---- */
.custom-select {
    position: relative;
    user-select: none;
    cursor: pointer;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-trigger i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.custom-select.active .custom-select-trigger {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.12);
}

.custom-select.active .custom-select-trigger i {
    transform: rotate(180deg);
    color: var(--neon-cyan);
}

.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08), var(--shadow-soft);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.custom-select.active .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 12px 18px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s ease;
}

.custom-option:hover {
    background: rgba(0, 242, 254, 0.05);
    color: var(--neon-cyan);
    padding-left: 24px;
}

.custom-option.selected {
    background: rgba(0, 242, 254, 0.08);
    color: var(--neon-cyan);
    font-weight: 600;
}
