/* ============================================
   CDHome - Karrier oldal
   ============================================ */

/* ============================================
   1. HERO SZEKCIÓ – háttérképes verzió (csapatunk/rólunk stílus)
   ============================================ */
.career-hero {
    min-height: 680px;
    margin-bottom: 0;
}

.career-hero .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(5, 2, 2, 0.82) 100%
    );
}

.career-hero.hero-with-image::after {
    background: linear-gradient(to top, #f5f0eb 0%, rgba(245, 240, 235, 0.55) 40%, transparent 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    height: 110px !important;
}

.career-hero h1 .typing-wrapper {
    display: block;
    min-height: 1.3em;
}

.career-hero h1 .typing-line {
    display: inline;
}

.career-hero h1 .career-hero-accent {
    background: linear-gradient(90deg, #f0d48a, #d4a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.career-hero h1 .typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: middle;
    animation: cursorBlink 0.8s infinite;
}

.career-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

/* Hero entry animations */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: animFadeUp 0.8s ease-out forwards;
}

.anim-fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: animFadeDown 0.8s ease-out forwards;
}

.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.4s; }

@keyframes animFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes animFadeDown {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   2. MIÉRT ÉRDEMES NÁLUNK DOLGOZNI?
   ============================================ */
.career-benefits {
    padding: 5rem 0;
    background: var(--bg-warm);
    overflow: hidden;
}

.career-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

.career-section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.career-accent-line {
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 1rem auto 1.5rem;
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(100,0,0,0.12);
    border-color: transparent;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(153,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(153,0,0,0.3);
}

.benefit-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   3. KULTÚRA & ÉRTÉKEK
   ============================================ */
.career-culture {
    padding: 5rem 0;
    overflow: hidden;
    background: var(--bg-light);
}

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

.culture-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(100,0,0,0.08);
    border-color: rgba(153,0,0,0.12);
}

.culture-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(153,0,0,0.08) 0%, rgba(212,168,83,0.08) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

.culture-card:hover .culture-icon {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(153,0,0,0.2);
}

.culture-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.culture-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Marquee szalag */
.career-marquee {
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-warm);
    margin-top: 3rem;
}

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

.career-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-warm) 0%, transparent 100%);
}

.career-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-warm) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.5rem;
    background: #fff;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.marquee-item i {
    color: var(--primary);
    font-size: 1rem;
}

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

/* ============================================
   4. NYITOTT POZÍCIÓK
   ============================================ */
.career-positions {
    padding: 5rem 0;
    background: var(--bg-warm);
}

.positions-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(153,0,0,0.2);
}

.position-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-card:hover {
    box-shadow: 0 12px 35px rgba(100,0,0,0.08);
    border-color: rgba(153,0,0,0.12);
}

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

.position-header {
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.position-header:hover {
    background: rgba(153,0,0,0.02);
}

.position-info {
    flex: 1;
}

.position-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.position-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.position-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

.position-tag-location {
    background: rgba(59,130,246,0.08);
    color: #3b82f6;
}

.position-tag-type {
    background: rgba(16,185,129,0.08);
    color: #10b981;
}

.position-tag-dept {
    background: rgba(153,0,0,0.06);
    color: var(--primary);
}

.position-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.position-card.open .position-toggle {
    background: var(--gradient);
    color: #fff;
    transform: rotate(180deg);
}

.position-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-card.open .position-body {
    max-height: 600px;
}

.position-body-inner {
    padding: 0 1.8rem 1.8rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.position-body-inner p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.position-body-inner ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.position-body-inner ul li {
    padding: 0.3rem 0;
    font-size: 0.93rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.6;
}

.position-body-inner ul li i {
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.position-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.position-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153,0,0,0.25);
    color: #fff;
}

.no-positions-msg {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    display: none;
}

.no-positions-msg.visible {
    display: block;
}

.no-positions-msg i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.4;
}

/* ============================================
   5. JELENTKEZÉSI FOLYAMAT (TIMELINE)
   ============================================ */
.career-process {
    padding: 5rem 0;
    overflow: hidden;
    background: var(--bg-light);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: calc(2rem + 32px);
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 3px;
    background: var(--border);
    z-index: 0;
}

.process-line-fill {
    position: absolute;
    top: calc(2rem + 32px);
    left: calc(12.5% + 32px);
    height: 3px;
    background: var(--gradient);
    z-index: 1;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-timeline.animated .process-line-fill {
    width: calc(100% - 25% - 64px);
}

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

.process-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-step.active .process-step-circle {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px rgba(153,0,0,0.25);
    transform: scale(1.1);
}

.process-step-number {
    position: absolute;
    top: -8px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step.active .process-step-number {
    opacity: 1;
    transform: scale(1);
}

.process-step h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    transition: color 0.3s;
}

.process-step.active h5 {
    color: var(--primary);
}

.process-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* ============================================
   6. SZÁMOK & STATISZTIKÁK (bézs)
   ============================================ */
.career-stats {
    padding: 5rem 0 6rem;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
    margin-top: -2px;
}

.career-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(153,0,0,0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(212,168,83,0.06) 0%, transparent 55%);
    pointer-events: none;
}

.career-stats::after {
    display: none;
}

.career-stats-particles {
    display: none;
}

.career-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 1;
}

.career-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.career-stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    margin-left: 0.15rem;
}

.career-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ============================================
   7. CTA SZEKCIÓ – parallax háttérképes verzió
   ============================================ */
.career-cta-section {
    position: relative;
    padding: 7rem 0 8rem;
    overflow: hidden;
    text-align: center;
    background: #1a1a1a;
}

.site-footer {
    margin-top: 0 !important;
    border-top: none !important;
}

.career-cta-bg {
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    bottom: -15%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.career-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, var(--bg-warm), transparent);
    z-index: 3;
    pointer-events: none;
}

.career-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 0, 0, 0.65) 0%,
        rgba(30, 0, 0, 0.70) 82%,
        #1a1a1a 100%
    );
    z-index: 1;
}

.career-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.career-cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.career-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #d4a853, #b8860b);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(184,134,11,0.35);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(184,134,11,0.45);
    color: #fff;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.88rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.career-fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESZPONZÍV – TABLET (991px)
   ============================================ */
@media (max-width: 991px) {
    .career-section-title {
        font-size: 1.8rem;
    }

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

    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 0;
    }

    .process-timeline::before {
        top: 32px;
        left: 31px;
        right: auto;
        width: 3px;
        height: calc(100% - 64px);
    }

    .process-line-fill {
        top: 32px;
        left: 31px;
        width: 3px !important;
        height: 0;
        transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .process-timeline.animated .process-line-fill {
        height: calc(100% - 64px);
        width: 3px !important;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        text-align: left;
        padding: 1rem 0;
    }

    .process-step-circle {
        margin: 0;
        flex-shrink: 0;
    }

    .process-step p {
        max-width: none;
        margin: 0;
    }
}

/* ============================================
   RESZPONZÍV – MOBIL (768px)
   ============================================ */
@media (max-width: 768px) {
    .career-hero {
        min-height: 680px;
    }

    .career-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .career-hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .career-benefits,
    .career-culture,
    .career-positions,
    .career-process {
        padding: 3.5rem 0;
    }

    .career-cta-section {
        padding: 4rem 0 5rem;
    }

    .benefit-card {
        padding: 1.8rem 1.3rem;
    }

    .position-header {
        padding: 1.2rem 1.3rem;
    }

    .position-body-inner {
        padding: 0 1.3rem 1.3rem;
        padding-top: 1.2rem;
    }

    .career-stat-number {
        font-size: 2.5rem;
    }

    .career-stat-suffix {
        font-size: 1.2rem;
    }
}

/* ============================================
   RESZPONZÍV – KIS MOBIL (575px)
   ============================================ */
@media (max-width: 575px) {
    .career-hero {
        min-height: 72vh;
        padding: 6rem 0 4rem;
    }

    .career-hero-btns .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .career-benefits,
    .career-culture,
    .career-positions,
    .career-process,
    .career-stats {
        padding: 3rem 0;
    }

    .career-stats {
        padding-bottom: 4rem;
    }

    .career-cta-section {
        padding: 3rem 0 4rem;
    }

    .career-section-title {
        font-size: 1.45rem;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .culture-card {
        padding: 1.5rem 1.2rem;
        gap: 1rem;
    }

    .culture-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .process-step-circle {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

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

    .process-line-fill {
        left: 25px;
    }

    .career-stat-number {
        font-size: 2.2rem;
    }

    .career-stat-suffix {
        font-size: 1rem;
    }

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

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

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .career-stats-particles span {
        animation: none;
    }

    .career-fade-in-up,
    .fade-in-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .anim-fade-up,
    .anim-fade-down {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .marquee-track {
        animation: none;
    }

    .process-line-fill {
        transition: none;
    }

    .typing-cursor {
        animation: none;
        display: none;
    }
}
