/**
 * Careers Page CSS
 * SlashExperts Team/Culture Page Styles
 */

        /* ==================== HERO SECTION ==================== */
        .hero-wrapper {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .background-gradient-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100vh;
            overflow: hidden;
            z-index: 0;
        }

        .background-gradient {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 1200px;
            height: 800px;
            background: 
                radial-gradient(ellipse 80% 60% at 50% 40%,
                    rgba(210, 180, 255, 0.5) 0%,
                    rgba(190, 150, 255, 0.35) 20%,
                    rgba(170, 130, 250, 0.25) 35%,
                    rgba(255, 180, 200, 0.2) 50%,
                    rgba(255, 200, 170, 0.12) 65%,
                    transparent 80%);
            filter: blur(80px);
            animation: gradientFloat 10s ease-in-out infinite;
        }

        .background-gradient-secondary {
            position: absolute;
            top: 100px;
            right: 5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                rgba(139, 92, 246, 0.3) 0%,
                rgba(168, 85, 247, 0.15) 50%,
                transparent 70%);
            filter: blur(70px);
            animation: gradientFloatRight 12s ease-in-out infinite;
        }

        .background-gradient-tertiary {
            position: absolute;
            top: 200px;
            left: 5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                rgba(236, 72, 153, 0.25) 0%,
                rgba(219, 39, 119, 0.1) 50%,
                transparent 70%);
            filter: blur(70px);
            animation: gradientFloatRight 14s ease-in-out infinite reverse;
        }

        @keyframes gradientFloat {
            0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
            50% { transform: translateX(-50%) translateY(-20px) scale(1.02); }
        }

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

        .hero {
            padding: 160px 48px 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(129, 103, 234, 0.15);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--violet);
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-badge-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--violet) 0%, var(--accent-purple) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge-icon svg {
            width: 12px;
            height: 12px;
            stroke: white;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 28px;
            color: var(--navy);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.1s;
            opacity: 0;
        }

        .hero-subtitle {
            font-size: 22px;
            color: var(--muted);
            max-width: 680px;
            margin: 0 auto 48px;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
        }

        .btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            color: var(--navy);
            padding: 16px 32px;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(129, 103, 234, 0.15);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(129, 103, 234, 0.3);
            transform: translateY(-2px);
        }

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

        /* ==================== FLOATING TEAM GRAPHICS ==================== */
        .hero-graphics-wrapper {
            position: relative;
            width: 100%;
            height: 350px;
            margin-top: 30px;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
            opacity: 0;
        }

        .team-constellation {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        /* Team Member Cards */
        .team-member-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            padding: 20px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 24px rgba(129, 103, 234, 0.12),
                inset 0 1px 1px rgba(255, 255, 255, 1);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .team-member-card:hover {
            transform: translateY(-8px) scale(1.02) !important;
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.1),
                0 12px 32px rgba(129, 103, 234, 0.18),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        .member-card-center {
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 170px;
            z-index: 10;
            animation: floatCenter 6s ease-in-out infinite;
        }

        .member-card-left {
            top: 35%;
            left: 10%;
            transform: translateX(-50%);
            width: 170px;
            animation: floatLeft 7s ease-in-out infinite;
        }

        .member-card-right {
            top: 30%;
            left: 90%;
            transform: translateX(-50%);
            width: 170px;
            animation: floatRight 7s ease-in-out infinite;
            animation-delay: -2s;
        }

        .member-card-bottom-left {
            bottom: 15%;
            left: 30%;
            transform: translateX(-50%);
            width: 170px;
            animation: floatLeft 8s ease-in-out infinite;
            animation-delay: -1s;
        }

        .member-card-bottom-right {
            bottom: 18%;
            left: 70%;
            transform: translateX(-50%);
            width: 170px;
            animation: floatRight 8s ease-in-out infinite;
            animation-delay: -3s;
        }

        @keyframes floatCenter {
            0%, 100% { transform: translate(-50%, -50%) translateY(0); }
            50% { transform: translate(-50%, -50%) translateY(-15px); }
        }

        @keyframes floatLeft {
            0%, 100% { transform: translateX(-50%) translateY(0) rotate(-2deg); }
            50% { transform: translateX(-50%) translateY(-20px) rotate(0deg); }
        }

        @keyframes floatRight {
            0%, 100% { transform: translateX(-50%) translateY(0) rotate(2deg); }
            50% { transform: translateX(-50%) translateY(-20px) rotate(0deg); }
        }

        .member-avatar {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
            margin-bottom: 14px;
            position: relative;
        }

        .member-avatar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--violet) 0%, var(--accent-pink) 50%, var(--accent-orange) 100%);
            opacity: 0.9;
        }

        .member-avatar-emoji {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
        }

        .member-role {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--violet);
            margin-bottom: 6px;
        }

        .member-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .member-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(129, 103, 234, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
            border: 1px solid rgba(129, 103, 234, 0.15);
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            color: var(--violet);
        }

        /* Decorative Orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            animation: orbFloat 10s ease-in-out infinite;
        }

        .hero-orb-1 {
            width: 150px;
            height: 150px;
            background: rgba(129, 103, 234, 0.25);
            top: 10%;
            left: 5%;
        }

        .hero-orb-2 {
            width: 100px;
            height: 100px;
            background: rgba(236, 72, 153, 0.2);
            top: 70%;
            right: 8%;
            animation-delay: -3s;
        }

        .hero-orb-3 {
            width: 80px;
            height: 80px;
            background: rgba(73, 204, 249, 0.25);
            bottom: 15%;
            left: 15%;
            animation-delay: -5s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.1); }
        }

        /* ==================== CULTURE SECTION ==================== */
        .culture-section {
            padding: 120px 48px;
            background: var(--white);
            position: relative;
        }

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

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

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(129, 103, 234, 0.08);
            border: 1px solid rgba(129, 103, 234, 0.12);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--violet);
            margin-bottom: 24px;
        }

        .section-header h2 {
            font-size: 52px;
            font-weight: 800;
            color: var(--navy);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 19px;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Bento Grid for Culture */
        .culture-bento {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 24px;
        }

        .bento-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(129, 103, 234, 0.08);
            border-radius: 28px;
            padding: 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--violet), var(--accent-pink), var(--accent-orange));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .bento-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
            border-color: rgba(129, 103, 234, 0.15);
        }

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

        .bento-large {
            grid-column: span 2;
        }

        .bento-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin-bottom: 24px;
            background: linear-gradient(135deg, rgba(129, 103, 234, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
        }

        .bento-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

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

        .bento-highlight {
            background: linear-gradient(135deg, var(--navy) 0%, #1a1a5e 100%);
            color: white;
        }

        .bento-highlight .bento-icon {
            background: rgba(255, 255, 255, 0.15);
        }

        .bento-highlight .bento-title {
            color: white;
        }

        .bento-highlight .bento-description {
            color: rgba(255, 255, 255, 0.75);
        }

        .bento-highlight::before {
            display: none;
        }

        /* Stats inside bento */
        .bento-stats {
            display: flex;
            gap: 32px;
            margin-top: 24px;
        }

        .bento-stat {
            text-align: left;
        }

        .bento-stat-value {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--violet-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .bento-highlight .bento-stat-value {
            background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .bento-stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        /* ==================== WHAT WE LOOK FOR - FLIP CARDS ==================== */
        .traits-section {
            padding: 120px 48px;
            background: linear-gradient(180deg, #f8f7fc 0%, #f3f0ff 100%);
        }

        .traits-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .traits-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .trait-flip-card {
            perspective: 1000px;
            cursor: pointer;
        }

        .trait-flip-inner {
            position: relative;
            width: 100%;
            height: 220px;
            transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .trait-flip-card:hover .trait-flip-inner {
            transform: rotateY(180deg);
        }

        .trait-front,
        .trait-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 28px 20px;
            text-align: center;
        }

        .trait-front {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
        }

        .trait-number {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--violet) 0%, var(--accent-purple) 100%);
            color: white;
            font-size: 16px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
        }

        .trait-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 20px;
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trait-icon svg {
            width: 48px;
            height: 48px;
            stroke: var(--violet);
            stroke-width: 1.5;
            fill: none;
        }

        .trait-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            line-height: 1.4;
        }

        .trait-back {
            background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 50%, #9333ea 100%);
            transform: rotateY(180deg);
            position: relative;
            overflow: hidden;
        }

        /* Noise texture overlay */
        .trait-back::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.15;
            mix-blend-mode: overlay;
            pointer-events: none;
        }

        /* Subtle glow effect */
        .trait-back::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .trait-back-content {
            position: relative;
            z-index: 1;
        }

        .trait-back-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .trait-back-icon svg {
            width: 28px;
            height: 28px;
            stroke: white;
            stroke-width: 1.5;
            fill: none;
        }

        .trait-back-text {
            font-size: 14px;
            font-weight: 600;
            color: white;
            line-height: 1.6;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        /* ==================== LIFE AT SLASHEXPERTS - PHOTO CAROUSEL ==================== */
        .life-section {
            padding: 120px 0;
            background: var(--white);
            overflow: hidden;
        }

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

        .photo-carousel-wrapper {
            margin-top: 60px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow: hidden;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .carousel-row {
            display: flex;
            gap: 20px;
            width: max-content;
        }

        .carousel-row-top {
            animation: scrollLeft 40s linear infinite;
        }

        .carousel-row-bottom {
            animation: scrollRight 45s linear infinite;
        }

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

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

        .carousel-row:hover {
            animation-play-state: paused;
        }

        .carousel-photo {
            flex-shrink: 0;
            width: 280px;
            height: 373px;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .carousel-photo:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .carousel-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ==================== OPEN ROLES SECTION ==================== */
        .roles-section {
            padding: 120px 48px;
            background: linear-gradient(180deg, #f8f7fc 0%, #f3f0ff 100%);
        }

        .roles-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .roles-list {
            margin-top: 48px;
        }

        .role-category {
            margin-bottom: 32px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding-left: 8px;
        }

        .category-icon {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            background: linear-gradient(135deg, rgba(129, 103, 234, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
        }

        .category-title {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
        }

        .role-item {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(129, 103, 234, 0.08);
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .role-item:hover {
            transform: translateX(8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            border-color: rgba(129, 103, 234, 0.2);
        }

        .role-info h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .role-meta {
            display: flex;
            gap: 16px;
        }

        .role-tag {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--muted);
        }

        .role-tag svg {
            width: 14px;
            height: 14px;
            stroke: var(--light-muted);
        }

        .role-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(129, 103, 234, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .role-item:hover .role-arrow {
            background: linear-gradient(135deg, var(--violet) 0%, var(--accent-purple) 100%);
        }

        .role-arrow svg {
            width: 18px;
            height: 18px;
            stroke: var(--violet);
            transition: all 0.3s ease;
        }

        .role-item:hover .role-arrow svg {
            stroke: white;
            transform: translateX(3px);
        }

        /* General Application Card */
        .general-apply-card {
            background: linear-gradient(135deg, var(--navy) 0%, #1a1a5e 100%);
            border-radius: 24px;
            padding: 48px;
            margin-top: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .general-apply-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(129, 103, 234, 0.3) 0%, transparent 70%);
            filter: blur(40px);
        }

        .general-apply-content {
            position: relative;
            z-index: 1;
        }

        .general-apply-content h3 {
            font-size: 26px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .general-apply-content p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--navy);
            padding: 16px 32px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
        }

        .btn-white svg {
            width: 18px;
            height: 18px;
            stroke: var(--navy);
            transition: transform 0.3s ease;
        }

        .btn-white:hover svg {
            transform: translateX(4px);
        }

        /* ==================== PERKS SECTION ==================== */
        .perks-section {
            padding: 120px 48px;
            background: var(--white);
        }

        .perks-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .perks-marquee {
            margin-top: 60px;
            overflow: hidden;
            position: relative;
        }

        .perks-marquee::before,
        .perks-marquee::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }

        .perks-marquee::before {
            left: 0;
            background: linear-gradient(90deg, var(--white), transparent);
        }

        .perks-marquee::after {
            right: 0;
            background: linear-gradient(-90deg, var(--white), transparent);
        }

        .perks-track {
            display: flex;
            gap: 24px;
            animation: marquee 40s linear infinite;
            width: max-content;
        }

        .perks-track:hover {
            animation-play-state: paused;
        }

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

        .perk-pill {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(129, 103, 234, 0.1);
            border-radius: 100px;
            padding: 16px 28px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .perk-pill:hover {
            transform: scale(1.05);
            border-color: rgba(129, 103, 234, 0.25);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }

        .perk-pill-icon {
            font-size: 24px;
        }

        .perk-pill-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--navy);
        }

        /* ==================== FINAL CTA ==================== */
        .final-cta {
            padding: 140px 48px;
            background: linear-gradient(135deg, var(--navy) 0%, #1a1a5e 50%, #2d2d7a 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cta-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
        }

        .cta-orb-1 {
            width: 500px;
            height: 500px;
            background: var(--violet);
            top: -200px;
            left: -100px;
            animation: orbFloat 12s ease-in-out infinite;
        }

        .cta-orb-2 {
            width: 400px;
            height: 400px;
            background: var(--accent-pink);
            bottom: -150px;
            right: -100px;
            animation: orbFloat 15s ease-in-out infinite reverse;
        }

        .cta-orb-3 {
            width: 300px;
            height: 300px;
            background: var(--accent-cyan);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: orbFloat 10s ease-in-out infinite;
            animation-delay: -5s;
        }

        .final-cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 52px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.15;
        }

        .final-cta h2 .serif-italic {
            background: linear-gradient(135deg, #fff 0%, #d1c4e9 50%, #b794f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .final-cta p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        .final-cta .btn-white {
            padding: 18px 36px;
            font-size: 16px;
        }


        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 56px;
            }

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

            .bento-large {
                grid-column: span 1;
            }

            .traits-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .trait-flip-inner {
                height: 200px;
            }

            .carousel-photo {
                width: 240px;
                height: 320px;
            }
        }

        @media (max-width: 992px) {
            nav {
                padding: 16px 24px;
            }

            .hero {
                padding: 140px 24px 80px;
            }

            .hero h1 {
                font-size: 44px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-graphics-wrapper {
                height: 280px;
            }

            .member-card-left,
            .member-card-right,
            .member-card-bottom-left,
            .member-card-bottom-right {
                display: none;
            }

            .section-header h2 {
                font-size: 40px;
            }

            .culture-section,
            .traits-section,
            .life-section,
            .roles-section,
            .perks-section {
                padding: 80px 24px;
            }

            .life-section {
                padding: 80px 0;
            }

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

            .traits-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .trait-flip-inner {
                height: 180px;
            }

            .trait-icon svg {
                width: 40px;
                height: 40px;
            }

            .trait-title {
                font-size: 13px;
            }

            .carousel-photo {
                width: 200px;
                height: 267px;
            }

            .general-apply-card {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

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

        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

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

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .traits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .trait-flip-inner {
                height: 160px;
            }

            .trait-number {
                width: 32px;
                height: 32px;
                font-size: 14px;
                top: -14px;
            }

            .trait-icon svg {
                width: 32px;
                height: 32px;
            }

            .trait-title {
                font-size: 12px;
            }

            .trait-back-text {
                font-size: 12px;
            }

            .carousel-photo {
                width: 180px;
                height: 240px;
            }

            .photo-carousel-wrapper {
                gap: 16px;
            }

            .final-cta h2 {
                font-size: 36px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
