/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    --primary-color: #bff747;
    --text-color: #ffffff;
    --bg-color: #000000;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --border-color: #333333;
    --hover-glow: rgba(191, 247, 71, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a472a 0%, #0d1f15 25%, #000000 50%, #0a0a0a 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(191,247,71,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23grid)"/></svg>');
    background-size: cover, auto;
    background-position: center, 0 0;
    background-attachment: fixed;
    filter: brightness(0.8) contrast(1.1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(191, 247, 71, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(191, 247, 71, 0.05) 0%, transparent 50%);
    z-index: 2;
    animation: overlayPulse 4s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ============================================
   ANIMATED TECH OBJECTS
   ============================================ */

.tech-objects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.tech-object {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.15;
    font-weight: bold;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    filter: drop-shadow(0 0 10px rgba(191, 247, 71, 0.3));
}

/* Code Bracket */
.tech-object.code-bracket {
    top: 5%;
    left: 5%;
    animation-name: floatDiagonal1;
    font-size: clamp(2rem, 5vw, 4rem);
}

/* Database/Circle */
.tech-object.database {
    top: 15%;
    right: 8%;
    animation-name: floatVertical1;
    animation-duration: 25s;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

/* Circuit/Line */
.tech-object.circuit {
    top: 45%;
    left: 3%;
    animation-name: floatVertical2;
    animation-duration: 22s;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Server/Arrow */
.tech-object.server {
    top: 35%;
    right: 5%;
    animation-name: floatDiagonal2;
    animation-duration: 24s;
    font-size: clamp(2rem, 5vw, 4rem);
}

/* Nodes/Dot */
.tech-object.nodes {
    bottom: 20%;
    left: 8%;
    animation-name: floatDiagonal3;
    animation-duration: 23s;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

/* Network/Diamond */
.tech-object.network {
    bottom: 15%;
    right: 6%;
    animation-name: floatDiagonal4;
    animation-duration: 26s;
    font-size: clamp(2rem, 5vw, 4rem);
}

/* Pulse/Star */
.tech-object.pulse {
    top: 25%;
    left: 15%;
    animation-name: floatPulse;
    animation-duration: 20s;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
}

/* Wave/Squiggle */
.tech-object.wave {
    bottom: 30%;
    right: 15%;
    animation-name: floatWave;
    animation-duration: 27s;
    font-size: clamp(2rem, 5vw, 3.8rem);
}

/* Floating Animations - Diagonal Movements */
@keyframes floatDiagonal1 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.12;
    }
    25% {
        transform: translateX(40px) translateY(-40px) rotate(45deg);
        opacity: 0.2;
    }
    50% {
        transform: translateX(0) translateY(-80px) rotate(90deg);
        opacity: 0.15;
    }
    75% {
        transform: translateX(-40px) translateY(-40px) rotate(45deg);
        opacity: 0.2;
    }
}

@keyframes floatDiagonal2 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    33% {
        transform: translateX(-50px) translateY(-30px) rotate(120deg) scale(1.15);
        opacity: 0.18;
    }
    66% {
        transform: translateX(50px) translateY(30px) rotate(240deg) scale(0.9);
        opacity: 0.14;
    }
}

@keyframes floatVertical1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scaleX(1);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-100px) rotate(180deg) scaleX(0.9);
        opacity: 0.22;
    }
}

@keyframes floatVertical2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(100px) rotate(180deg);
        opacity: 0.2;
    }
}

@keyframes floatDiagonal3 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.11;
    }
    50% {
        transform: translateX(60px) translateY(-60px) rotate(180deg) scale(1.2);
        opacity: 0.19;
    }
}

@keyframes floatDiagonal4 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateX(-60px) translateY(60px) rotate(180deg);
        opacity: 0.2;
    }
}

@keyframes floatPulse {
    0%, 100% {
        transform: scale(1) translateX(0) translateY(0);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.3) translateX(-50px) translateY(-50px);
        opacity: 0.2;
    }
}

@keyframes floatWave {
    0%, 100% {
        transform: translateX(0) translateY(0) skewX(0deg);
        opacity: 0.1;
    }
    33% {
        transform: translateX(70px) translateY(-40px) skewX(10deg);
        opacity: 0.2;
    }
    66% {
        transform: translateX(70px) translateY(40px) skewX(-10deg);
        opacity: 0.15;
    }
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-text-container {
    margin-bottom: 2rem;
}

/* ============================================
   PROFESSIONAL CONTENT SECTION
   ============================================ */

.hero-content-section {
    animation: fadeInUp 1.2s ease-out 0.5s both;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-wrapper {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.description-line {
    display: block;
    animation: slideInLeft 0.8s ease-out forwards;
    overflow: hidden;
}

.description-line:nth-child(1) { animation-delay: 0.6s; }
.description-line:nth-child(2) { animation-delay: 0.8s; }
.description-line:nth-child(3) { animation-delay: 1s; }
.description-line:nth-child(4) { animation-delay: 1.2s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   STATS SECTION
   ============================================ */

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 3rem);
    margin: 2.5rem 0 1.5rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
    animation: scaleInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transition: all 0.3s ease;
}

.stat:nth-child(1) { animation-delay: 0.9s; }
.stat:nth-child(2) { animation-delay: 1s; }
.stat:nth-child(3) { animation-delay: 1.1s; }

.stat:hover {
    transform: scale(1.05);
}

.stat-value {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(191, 247, 71, 0.4);
    letter-spacing: 2px;
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scaleInUp {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    text-shadow: 0 0 30px rgba(191, 247, 71, 0.4),
                 0 0 60px rgba(191, 247, 71, 0.2);
    line-height: 1.2;
}

.word {
    display: inline-block;
    margin: 0 clamp(0.3rem, 0.8vw, 0.8rem);
}

.letter {
    display: inline-block;
    animation: letterBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    transform-origin: center bottom;
}

.word:nth-child(1) .letter:nth-child(1) { animation-delay: 0s; }
.word:nth-child(1) .letter:nth-child(2) { animation-delay: 0.1s; }
.word:nth-child(1) .letter:nth-child(3) { animation-delay: 0.2s; }
.word:nth-child(1) .letter:nth-child(4) { animation-delay: 0.3s; }

.word:nth-child(2) .letter:nth-child(1) { animation-delay: 0.4s; }
.word:nth-child(2) .letter:nth-child(2) { animation-delay: 0.5s; }
.word:nth-child(2) .letter:nth-child(3) { animation-delay: 0.6s; }

.word:nth-child(3) .letter:nth-child(1) { animation-delay: 0.7s; }
.word:nth-child(3) .letter:nth-child(2) { animation-delay: 0.8s; }
.word:nth-child(3) .letter:nth-child(3) { animation-delay: 0.9s; }
.word:nth-child(3) .letter:nth-child(4) { animation-delay: 1s; }

@keyframes letterBounce {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.8rem);
    color: var(--text-color);
    margin: 2rem 0 2.5rem 0;
    animation: slideInUp 0.8s ease-out 0.5s both;
    opacity: 0.95;
}

.subtitle-text {
    display: inline;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.subtitle-highlight {
    display: inline;
    color: var(--primary-color);
    font-weight: 700;
    animation: fadeInLeft 0.8s ease-out 0.8s both;
    text-shadow: 0 0 15px rgba(191, 247, 71, 0.3);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-indicator {
    animation: fadeInUp 1.2s ease-out 1s both;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    font-weight: 600;
    animation: textPulse 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-left: none;
    transform: rotate(-45deg);
    animation: scrollBounce 2s infinite;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    background-color: var(--bg-color);
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 2rem);
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    animation: fadeInUp 1s ease-out;
}

.section-title h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-shadow: 0 0 20px rgba(191, 247, 71, 0.2);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 1rem auto;
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-title p {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ============================================
   CAREERS GRID
   ============================================ */

.careers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 90vw, 380px), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 4rem;
    padding: 0 clamp(0rem, 2vw, 1rem);
}

/* ============================================
   CAREER CARDS
   ============================================ */

.career-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out both;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.career-card:nth-child(1) { animation-delay: 0.1s; }
.career-card:nth-child(2) { animation-delay: 0.2s; }
.career-card:nth-child(3) { animation-delay: 0.3s; }
.career-card:nth-child(4) { animation-delay: 0.4s; }
.career-card:nth-child(5) { animation-delay: 0.5s; }
.career-card:nth-child(6) { animation-delay: 0.6s; }

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 247, 71, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.career-card:hover::before {
    left: 100%;
}

.career-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(191, 247, 71, 0.15), transparent 80%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.career-card:hover::after {
    opacity: 1;
}

.career-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(191, 247, 71, 0.25), inset 0 0 30px rgba(191, 247, 71, 0.05);
    transform: translateY(clamp(-5px, -2vw, -10px));
}

.career-card:hover .card-icon {
    animation: iconRotate 0.6s ease-in-out forwards;
}

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    position: relative;
    z-index: 2;
    gap: clamp(0.5rem, 2vw, 1rem);
}

.card-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-right: clamp(0.3rem, 1vw, 1rem);
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.card-title {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(191, 247, 71, 0.2);
    line-height: 1.3;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 0.8rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    padding-bottom: clamp(1rem, 3vw, 1.5rem);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 1rem);
}

.detail-item .label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    white-space: nowrap;
}

.detail-item .value {
    color: var(--primary-color);
    font-weight: 600;
}

.card-description {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.card-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin: 0;
}

.card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.4rem, 1.5vw, 0.6rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    position: relative;
    z-index: 2;
}

.skill-tag {
    display: inline-block;
    background: rgba(191, 247, 71, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.6rem, 1.5vw, 0.8rem);
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: scale(1.05);
}

/* ============================================
   CONTACT BUTTON
   ============================================ */

.contact-btn {
    width: 100%;
    padding: clamp(0.8rem, 2vw, 1rem);
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 8px;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    overflow: hidden;
    margin-top: auto;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.6);
    transform: scale(1.02);
}

.contact-btn:active {
    transform: scale(0.98);
}

/* ============================================
   SIMPLIFIED CARD STYLES & READ MORE BUTTON
   ============================================ */

.card-brief {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.card-brief p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.read-more-btn {
    display: inline-block;
    background: none;
    color: var(--primary-color);
    border: none;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: visible;
    padding: 0;
    white-space: nowrap;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 3px;
}

.read-more-btn:hover {
    color: #ffffff;
    text-decoration-color: #ffffff;
    box-shadow: none;
    transform: none;
}

.read-more-btn:active {
    transform: none;
    opacity: 0.8;
}

.contact-btn {
    width: 100%;
    padding: clamp(0.8rem, 2vw, 1rem);
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 8px;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    overflow: hidden;
    margin-top: auto;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.6);
    transform: scale(1.02);
}

.contact-btn:active {
    transform: scale(0.98);
}

/* ============================================
   JOB MODAL POPUP
   ============================================ */

.job-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.job-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(191, 247, 71, 0.2);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: #ffffff;
}

.modal-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(191, 247, 71, 0.3);
    padding-bottom: 1rem;
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0;
    text-shadow: 0 0 10px rgba(191, 247, 71, 0.3);
}

.modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-group {
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.detail-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.detail-group p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-description {
    margin-bottom: 2rem;
}

.modal-description h3 {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-description p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.modal-skills {
    margin-bottom: 2rem;
}

.modal-skills h3 {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-badge {
    display: inline-block;
    background: rgba(191, 247, 71, 0.15);
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background: rgba(191, 247, 71, 0.25);
    box-shadow: 0 0 15px rgba(191, 247, 71, 0.4);
    transform: translateY(-2px);
}

.modal-contact-btn {
    width: 100%;
    margin-top: 0;
}

/* ============================================
   APPLICATION FORM MODAL
   ============================================ */

.application-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.application-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.form-modal-content {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(191, 247, 71, 0.2);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.form-modal-content::-webkit-scrollbar {
    display: none;
}

.form-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.form-modal-close:hover {
    transform: rotate(90deg);
    color: #ffffff;
}

.form-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(191, 247, 71, 0.3);
    padding-bottom: 1rem;
}

.form-header h2 {
    color: var(--primary-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 10px rgba(191, 247, 71, 0.3);
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

#jobForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#jobForm fieldset {
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 8px;
    padding: 1.2rem;
    background: rgba(191, 247, 71, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#jobForm legend {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 0.5rem;
}

#jobForm input,
#jobForm select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 247, 71, 0.3);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#jobForm input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#jobForm input:focus,
#jobForm select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(191, 247, 71, 0.3);
}

#jobForm select {
    cursor: pointer;
}

#jobForm select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-submit-btn {
    width: 100%;
    padding: clamp(1rem, 2.5vw, 1.2rem);
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.6);
    transform: scale(1.02);
}

.form-submit-btn:active {
    transform: scale(0.98);
}

.cta-btn {
    width: auto;
    padding: clamp(0.9rem, 2vw, 1rem) clamp(1.5rem, 5vw, 2.5rem);
    margin-top: 0;
    opacity: 0;
    transform: scale(0.9);
}

.cta-section.active .cta-btn {
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, rgba(191, 247, 71, 0.08) 0%, rgba(191, 247, 71, 0.03) 100%),
                linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    border: 2px solid rgba(191, 247, 71, 0.2);
    border-radius: 16px;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 247, 71, 0.05), transparent);
    animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-header {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-30px);
}

.cta-section.active .cta-header {
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.cta-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    text-shadow: 0 0 20px rgba(191, 247, 71, 0.3);
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.cta-description {
    max-width: 600px;
    margin: 1.5rem auto 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.cta-section.active .cta-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-description p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.cta-section.active .cta-benefits {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}


.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    transform: scale(0.8);
}

.cta-section.active .benefit-item {
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.cta-section.active .benefit-item:nth-child(1) { animation-delay: 0.7s; }
.cta-section.active .benefit-item:nth-child(2) { animation-delay: 0.85s; }
.cta-section.active .benefit-item:nth-child(3) { animation-delay: 1s; }

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(1.8rem, 4vw, 2.5rem);
    height: clamp(1.8rem, 4vw, 2.5rem);
    background: var(--primary-color);
    color: var(--bg-color);
    border-radius: 50%;
    font-weight: 900;
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.benefit-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 500;
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.6) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    40% {
        transform: rotate(-45deg) translateY(10px);
    }
    60% {
        transform: rotate(-45deg) translateY(5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(191, 247, 71, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(191, 247, 71, 0.6);
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.active-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.scroll-animate.active-right {
    animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   KEYBOARD INTERACTIONS
   ============================================ */

.career-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.contact-btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (768px - 1024px)
   ============================================ */

@media (max-width: 1024px) {
    :root {
        font-size: 15px;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .hero-text-container {
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .tech-object {
        opacity: 0.1;
    }
    
    .careers-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET MEDIUM (600px - 768px)
   ============================================ */

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
    
    .hero {
        height: auto;
        min-height: 600px;
        padding: 2rem 1rem;
    }
    
    .hero-content-section {
        margin: 1.5rem 0;
    }
    
    .hero-description {
        margin: 1rem 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin: 2rem 0 1.5rem 0;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .tech-object {
        opacity: 0.08;
    }
    
    .scroll-indicator {
        margin-top: 2rem;
    }
    
    .main-content {
        padding: 2.5rem 1.25rem;
    }
    
    .careers-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .career-card {
        padding: 1.75rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE LARGE (480px - 600px)
   ============================================ */

@media (max-width: 600px) {
    :root {
        font-size: 13px;
    }
    .benefit-item {
    opacity: 1 !important;
    transform: none !important;
}
    
    .hero {
        height: auto;
        min-height: 550px;
        padding: 2rem 1rem;
        justify-content: center;
        align-items: center;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    
    .hero-background {
        background-size: cover;
    }
    
    .hero-content-section {
        margin: 1.25rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-description-wrapper {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .description-line {
        animation-duration: 0.6s;
    }
    
    .description-line:nth-child(1) { animation-delay: 0.5s; }
    .description-line:nth-child(2) { animation-delay: 0.65s; }
    .description-line:nth-child(3) { animation-delay: 0.8s; }
    .description-line:nth-child(4) { animation-delay: 0.95s; }
    
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .tech-object {
        opacity: 0.07;
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .word {
        display: block;
        margin: 0.3rem 0;
    }
    
    .scroll-indicator {
        margin-top: 2.5rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .careers-container {
        gap: 1.25rem;
    }
    
    .career-card {
        padding: 1.5rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
        gap: 1rem;
        display: flex;
        align-items: flex-start;
    }
    
    .card-icon {
        font-size: 2.2rem;
        flex-shrink: 0;
    }
    
    .card-details {
        gap: 0.6rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .detail-item {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        padding: 0.2rem 0;
    }
    
    .detail-item .label {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .detail-item .value {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .cta-section {
        padding: 2rem 1rem;
        border-radius: 12px;
        border: 1.5px solid rgba(191, 247, 71, 0.2);
        margin-bottom: 1rem;
    }
    
    .cta-content {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .cta-header {
        margin-bottom: 1.5rem;
    }
    
    .cta-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .cta-description {
        margin: 1.2rem auto 1.5rem;
    }
    
    .cta-description p {
        font-size: 0.9rem;
    }
    
    .cta-benefits {
        gap: 1rem;
        margin-bottom: 1.8rem;
        flex-direction: column;
        align-items: stretch;
        display: flex;
    }
    
    .benefit-item {
        gap: 0.7rem;
        animation: none !important;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        display: flex;
        padding: 0.5rem 0;
    }
    
    .benefit-icon {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.1rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .benefit-text {
        font-size: 0.9rem;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
    }
    
    .cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE SMALL (320px - 480px)
   ============================================ */

@media (max-width: 480px) {
    :root {
        font-size: 12px;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
        padding: 2rem 0.75rem;
        padding-top: 3rem;
    }
    
    .hero-background {
        filter: brightness(0.7) contrast(1.2);
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-content-section {
        margin: 1rem 0;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin: 0.75rem 0;
        line-height: 1.6;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin: 1.25rem 0 0.8rem 0;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-value {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .tech-object {
        opacity: 0.05;
        font-size: clamp(1.2rem, 3vw, 2rem);
    }
    
    .word {
        display: block;
        margin: 0.2rem 0;
    }
    
    .letter {
        animation: letterBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-description-wrapper {
        margin-bottom: 0.8rem;
    }
    
    .description-line {
        animation-duration: 0.5s;
    }
    
    .description-line:nth-child(1) { animation-delay: 0.4s; }
    .description-line:nth-child(2) { animation-delay: 0.55s; }
    .description-line:nth-child(3) { animation-delay: 0.7s; }
    .description-line:nth-child(4) { animation-delay: 0.85s; }
    
    .scroll-indicator span {
        font-size: 0.7rem;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
    
    .main-content {
        padding: 1.5rem 0.75rem;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .section-title h2 {
        letter-spacing: 1px;
    }
    
    .title-underline {
        width: 60px;
    }
    
    .careers-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .career-card {
        padding: 1.25rem;
        border-radius: 8px;
    }
    
    .card-header {
        margin-bottom: 0.8rem;
        gap: 1rem;
        display: flex;
        align-items: flex-start;
    }
    
    .card-icon {
        font-size: 2rem;
        flex-shrink: 0;
    }
    
    .card-details {
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .detail-item {
        font-size: 0.75rem;
        flex-direction: row;
        align-items: center;
        gap: 0.3rem;
        padding: 0.1rem 0;
    }
    
    .card-description {
        margin-bottom: 1rem;
    }
    
    .card-description p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .card-skills {
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .skill-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .contact-btn {
        padding: 0.7rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .cta-section {
        padding: 1.5rem 0.75rem;
        margin: 0 -0.75rem;
        border-radius: 8px;
        border: 1px solid rgba(191, 247, 71, 0.15);
    }
    
    .cta-section::before {
        animation: none;
    }
    
    .cta-header {
        margin-bottom: 1.2rem;
    }
    
    .cta-header h2 {
        margin-bottom: 0.3rem;
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-description {
        margin: 1rem auto 1.5rem;
    }
    
    .cta-description p {
        font-size: 0.9rem;
    }
    
    .cta-benefits {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
    }
    
    .benefit-item {
        gap: 0.6rem;
        justify-content: flex-start;
        width: 100%;
    }
    
    .benefit-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .benefit-text {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .cta-btn {
        padding: 0.7rem 1.5rem;
    }
}

/* ============================================
   ULTRA MOBILE (320px - 380px)
   ============================================ */

@media (max-width: 380px) {
    .hero-title {
        letter-spacing: 1px;
    }
    
    .word {
        margin: 0.15rem 0;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 0.6rem;
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .tech-object {
        opacity: 0.03;
    }
    
    .hero-subtitle {
        line-height: 1.4;
    }
    
    .section-title h2 {
        letter-spacing: 0.5px;
    }
    
    .careers-container {
        gap: 0.8rem;
    }
    
    .career-card {
        padding: 1rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   DARK MODE (Already applied as default)
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(191, 247, 71, 0.8);
}
