.careers-hero {
    padding: 140px 0 100px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-text-section {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(29, 184, 87, 0.15);
    border: 1px solid rgba(29, 184, 87, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #1db857;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-badge svg {
    stroke-width: 2;
}

.careers-hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.15;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.careers-hero-subtitle {
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-cta-primary,
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #1db857 0%, #17a047 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(29, 184, 87, 0.3);
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #17a047 0%, #158f43 100%);
    box-shadow: 0 6px 20px rgba(29, 184, 87, 0.5);
    transform: translateY(-2px);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(29, 184, 87, 0.5);
}

.hero-image-section {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-stat {
    text-align: center;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    padding: 24px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    border-color: rgba(29, 184, 87, 0.3);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1db857;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #808080;
}

.why-join {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(18, 18, 18, 0.4) 100%);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.125rem;
    color: #808080;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card:hover {
    border-color: rgba(29, 184, 87, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(29, 184, 87, 0.15);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(29, 184, 87, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1db857;
    margin-bottom: 20px;
}

.benefit-icon svg {
    stroke-width: 2;
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 0.975rem;
}

.positions-section {
    padding: 100px 0;
    background: #000000;
}

.positions-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.select {
    width: fit-content;
    cursor: pointer;
    position: relative;
    transition: 300ms;
    color: white;
    overflow: visible;
    z-index: 1000;
}

.selected {
    background-color: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 32px;
    margin-bottom: 3px;
    border-radius: 12px;
    position: relative;
    z-index: 100000;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 240px;
    transition: all 0.3s ease;
}

.selected:hover {
    background: rgba(42, 42, 42, 0.8);
    border-color: rgba(29, 184, 87, 0.3);
}

.arrow {
    position: relative;
    right: 0px;
    height: 10px;
    transform: rotate(-90deg);
    width: 25px;
    fill: white;
    z-index: 100000;
    transition: 300ms;
}

.options {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 8px;
    background-color: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms, transform 300ms;
    transform: translateY(-10px);
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.select.active .options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.select.active .selected .arrow {
    transform: rotate(0deg);
}

.option {
    border-radius: 8px;
    padding: 12px 16px;
    transition: 300ms;
    background-color: transparent;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
}

.option:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.options input[type="radio"] {
    display: none;
}

.options label {
    display: inline-block;
    cursor: pointer;
}

.options label::before {
    content: attr(data-txt);
}

.options input[type="radio"]:checked + label {
    display: none;
}

.options input[type="radio"]#all:checked + label {
    display: none;
}

.select:has(.options input[type="radio"]#all:checked) .selected::before {
    content: attr(data-default);
}
.select:has(.options input[type="radio"]#option-1:checked) .selected::before {
    content: attr(data-one);
}
.select:has(.options input[type="radio"]#option-2:checked) .selected::before {
    content: attr(data-two);
}
.select:has(.options input[type="radio"]#option-3:checked) .selected::before {
    content: attr(data-three);
}
.select:has(.options input[type="radio"]#option-4:checked) .selected::before {
    content: attr(data-four);
}
.select:has(.options input[type="radio"]#option-5:checked) .selected::before {
    content: attr(data-five);
}
.select:has(.options input[type="radio"]#option-6:checked) .selected::before {
    content: attr(data-six);
}

.positions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.position-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 220px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.position-item:nth-child(1) { animation-delay: 0.05s; }
.position-item:nth-child(2) { animation-delay: 0.1s; }
.position-item:nth-child(3) { animation-delay: 0.15s; }
.position-item:nth-child(4) { animation-delay: 0.2s; }
.position-item:nth-child(5) { animation-delay: 0.25s; }
.position-item:nth-child(6) { animation-delay: 0.3s; }
.position-item:nth-child(7) { animation-delay: 0.35s; }
.position-item:nth-child(8) { animation-delay: 0.4s; }
.position-item:nth-child(9) { animation-delay: 0.45s; }
.position-item:nth-child(10) { animation-delay: 0.5s; }

.position-item:hover {
    background: linear-gradient(135deg, rgba(29, 184, 87, 0.2) 0%, rgba(29, 184, 87, 0.1) 100%);
    border-color: rgba(29, 184, 87, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(29, 184, 87, 0.2);
}

.position-item.hidden {
    display: none;
}

.position-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.position-closed-badge,
.position-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.position-closed-badge,
.position-status-badge[data-status="closed"] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.position-status-badge[data-status="open"] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.position-status-badge[data-status="in-need"] {
    background: linear-gradient(135deg, #1db857 0%, #17a047 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(29, 184, 87, 0.4);
    animation: pulse-badge-green 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 2px 16px rgba(239, 68, 68, 0.7);
    }
}

@keyframes pulse-badge-green {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(29, 184, 87, 0.4);
    }
    50% {
        box-shadow: 0 2px 16px rgba(29, 184, 87, 0.8);
    }
}

.position-bottom {
    margin-top: auto;
}

.position-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.position-location {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    color: #b0b0b0;
}

.position-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.position-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    animation: modalSlideIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-close svg {
    stroke-width: 2;
}

.modal-body {
    padding: 48px;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-title-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.modal-title-row .position-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.position-icon.support {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.position-icon.moderator {
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
}

.position-icon.bug-hunter {
    background: rgba(230, 126, 34, 0.15);
    color: #e67e22;
}

.position-icon.marketing {
    background: rgba(52, 219, 152, 0.15);
    color: #34dba4;
}

.position-icon.design {
    background: rgba(219, 52, 152, 0.15);
    color: #db3498;
}

.position-icon.sales {
    background: rgba(52, 152, 219, 0.15);
    color: #5ba3db;
}

.position-icon svg {
    stroke-width: 2;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 1.125rem;
    color: #1db857;
    font-weight: 600;
}

.modal-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-tag {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.modal-section p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section li {
    color: #b0b0b0;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.modal-section li::before {
    content: "•";
    position: absolute;
    left: 12px;
    top: 0.1em;
    color: #1db857;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
}

.modal-footer {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-closed-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    color: #f87171;
}

.modal-closed-notice svg {
    flex-shrink: 0;
    stroke: #f87171;
}

.modal-application-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(29, 184, 87, 0.1);
    border: 1px solid rgba(29, 184, 87, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    color: #1db857;
}

.modal-application-note svg {
    flex-shrink: 0;
    stroke: #1db857;
    margin-top: 2px;
}

.modal-apply-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #1db857 0%, #17a047 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.modal-apply-btn:hover {
    background: linear-gradient(135deg, #17a047 0%, #158f43 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 184, 87, 0.4);
}

.modal-apply-btn svg {
    stroke-width: 2.5;
}

.culture-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #000000 0%, rgba(18, 18, 18, 0.4) 100%);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.culture-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.culture-card.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 580px;
}

.culture-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.culture-card:hover .culture-image {
    transform: scale(1.05);
}

.culture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.culture-card:hover .culture-overlay {
    background: linear-gradient(to top, rgba(29, 184, 87, 0.95) 0%, rgba(29, 184, 87, 0.7) 60%, transparent 100%);
}

.culture-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.culture-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.values-section {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.values-section > h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 48px;
}



.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.values-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(29, 184, 87, 0.15);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #1db857 0%, #4ade80 100%);
    box-shadow: 0 0 20px rgba(29, 184, 87, 0.6);
    transition: height 0.3s ease-out;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #000000;
    border: 4px solid rgba(29, 184, 87, 0.3);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.timeline-item.active .timeline-dot {
    transform: translateX(-50%) scale(1);
    border-color: #1db857;
    box-shadow: 0 0 0 8px rgba(29, 184, 87, 0.2),
                0 0 20px rgba(29, 184, 87, 0.4);
}

.timeline-content {
    width: calc(50% - 60px);
    background: linear-gradient(135deg, rgba(29, 184, 87, 0.08) 0%, rgba(29, 184, 87, 0.03) 100%);
    border: 1px solid rgba(29, 184, 87, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(even) .timeline-content {
    transform: translateX(40px);
}

.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateX(0);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -24px;
    border-left-color: rgba(29, 184, 87, 0.2);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -24px;
    border-right-color: rgba(29, 184, 87, 0.2);
}

.timeline-content:hover {
    background: linear-gradient(135deg, rgba(29, 184, 87, 0.12) 0%, rgba(29, 184, 87, 0.06) 100%);
    border-color: rgba(29, 184, 87, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(29, 184, 87, 0.25);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1db857, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.timeline-content:hover .value-number {
    opacity: 1;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.timeline-content:hover h4 {
    color: #1db857;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.timeline-content:hover p {
    color: #d0d0d0;
}

.value-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.value-item[data-delay="0"] {
    animation-delay: 0s;
}

.value-item[data-delay="100"] {
    animation-delay: 0.1s;
}

.value-item[data-delay="200"] {
    animation-delay: 0.2s;
}

.value-item[data-delay="300"] {
    animation-delay: 0.3s;
}

.value-item[data-delay="400"] {
    animation-delay: 0.4s;
}

.value-item[data-delay="500"] {
    animation-delay: 0.5s;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.value-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.value-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1db857, #4ade80);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.value-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(29, 184, 87, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(29, 184, 87, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1db857;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    background: rgba(29, 184, 87, 0.3);
    border-color: #1db857;
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 12px 24px rgba(29, 184, 87, 0.3);
}

.value-item:hover .value-icon-bg {
    opacity: 0.4;
    transform: scale(1.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.value-icon svg {
    stroke-width: 2;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(29, 184, 87, 0.6));
}

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.value-item:hover h4 {
    color: #1db857;
}

.value-item p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.value-item:hover p {
    color: #d0d0d0;
}

.application-process {
    padding: 100px 0;
    background: #000000;
}

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

.process-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #1db857, #4ade80, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0;
}

.process-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.process-stages {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-image-section {
    position: relative;
    height: 100%;
    min-height: 450px;
    max-height: 500px;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.process-stage {
    position: relative;
    padding-left: 180px;
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.process-stage:nth-child(1) {
    animation-delay: 0.1s;
}

.process-stage:nth-child(2) {
    animation-delay: 0.2s;
}

.process-stage:nth-child(3) {
    animation-delay: 0.3s;
}

.process-stage:nth-child(4) {
    animation-delay: 0.4s;
}

.process-stage:nth-child(5) {
    animation-delay: 0.5s;
}

.stage-label {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1db857;
}

.process-stage:nth-child(1) .stage-label {
    color: #1db857;
}

.process-stage:nth-child(2) .stage-label {
    color: #4ade80;
}

.process-stage:nth-child(3) .stage-label {
    color: #22d3ee;
}

.process-stage:nth-child(4) .stage-label {
    color: #3b82f6;
}

.process-stage:nth-child(5) .stage-label {
    color: #a855f7;
}

.process-stage h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.process-stage p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.0625rem;
    margin: 0;
}

.process-stage a {
    color: #1db857;
    text-decoration: none;
    font-weight: 600;
}

.process-stage a:hover {
    text-decoration: underline;
}

.process-note {
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(29, 184, 87, 0.08);
    border: 1px solid rgba(29, 184, 87, 0.2);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.process-note svg {
    color: #1db857;
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 2;
}

.process-note p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.process-note strong {
    color: #ffffff;
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.4) 0%, transparent 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.faq-item {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
    border-color: rgba(29, 184, 87, 0.3);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.faq-item p {
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(29, 184, 87, 0.08) 0%, rgba(29, 184, 87, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 184, 87, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #1db857 0%, #17a047 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(29, 184, 87, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #17a047 0%, #158f43 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(29, 184, 87, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    border-color: #1db857;
    color: #1db857;
    background: rgba(29, 184, 87, 0.1);
}

@media (max-width: 1024px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-card.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-section {
        text-align: center;
    }

    .careers-hero-title {
        font-size: 2.5rem;
    }

    .careers-hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
    }

    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-stat {
        padding: 20px 16px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .select {
        width: 100%;
        max-width: 400px;
    }
    
    .selected {
        min-width: 100%;
    }
    
    .options {
        min-width: 100%;
    }

    .positions-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .position-item {
        padding: 32px;
        min-height: 180px;
    }

    .position-item h3 {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 32px 24px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .culture-card,
    .culture-card.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 320px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .process-step {
        gap: 20px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

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

    .values-timeline {
        padding: 20px 0;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 60px;
        padding-left: 70px;
    }

    .timeline-content {
        width: 100%;
        transform: translateX(20px) !important;
    }

    .timeline-item.active .timeline-content {
        transform: translateX(0) !important;
    }

    .timeline-content::before {
        left: -24px !important;
        border-right-color: rgba(29, 184, 87, 0.2) !important;
        border-left-color: transparent !important;
    }

    .process-content-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-image-section {
        min-height: 400px;
        order: -1;
    }

    .process-stage {
        padding-left: 120px;
    }

    .stage-label {
        font-size: 1rem;
    }

    .process-stage h3 {
        font-size: 1.5rem;
    }

    .process-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 100px 0 60px;
    }

    .careers-hero-title {
        font-size: 2rem;
    }

    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-stat {
        padding: 16px;
    }

    .process-stage {
        padding-left: 0;
    }

    .stage-label {
        position: static;
        display: block;
        margin-bottom: 8px;
    }

    .process-image-section {
        min-height: 300px;
    }

    .process-header h2 {
        font-size: 1.75rem;
    }

    .process-stage h3 {
        font-size: 1.25rem;
    }

    .select {
        width: 100%;
    }
    
    .selected {
        min-width: 100%;
        padding: 12px 32px;
    }
    
    .options {
        min-width: 100%;
    }

    .position-item h3 {
        font-size: 1.125rem;
    }

    .position-item {
        padding: 28px;
        min-height: 160px;
    }

    .position-icon {
        width: 40px;
        height: 40px;
    }

    .modal-body {
        padding: 24px 20px;
    }

    .modal-title-row {
        flex-direction: column;
        gap: 12px;
    }

    .modal-title {
        font-size: 1.375rem;
    }

    .modal-section h3 {
        font-size: 1.125rem;
    }

    .modal-footer {
        flex-direction: column;
    }

    .culture-card,
    .culture-card.large {
        height: 280px;
    }

    .culture-overlay {
        padding: 20px;
    }

    .culture-overlay h3 {
        font-size: 1.25rem;
    }

    .hero-cta-buttons {
        width: 100%;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 0.9375rem;
        padding: 12px 24px;
    }

    .filter-btn {
        font-size: 0.875rem;
        padding: 8px 16px;
    }

    .values-timeline {
        padding: 10px 0;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px;
    }

    .timeline-item {
        margin-bottom: 50px;
        padding-left: 50px;
    }

    .timeline-content {
        padding: 24px 20px;
    }

    .value-number {
        font-size: 2rem;
    }

    .timeline-content h4 {
        font-size: 1.25rem;
    }

    .timeline-content p {
        font-size: 0.9375rem;
    }
}