/* ========================================
   HOME PAGE CSS - VIOLET THEME
   Matching recruitment page design
======================================== */

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    /* Violet Color Palette */
    --violet-primary: #7c3aed;
    --violet-light: #f5f3ff;
    --violet-dark: #5b21b6;
    --violet-accent: #8b5cf6;
    --violet-foreground: #1e1b4b;
    --violet-muted: #6d6a8c;
    --violet-bg: #ffffff;
    /* New Body Background */
    --violet-card-bg: #ffffff;

    /* Shadows */
    --violet-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    --violet-shadow-hover: 0 8px 24px rgba(124, 58, 237, 0.15);
    --violet-shadow-lg: 0 10px 30px rgba(124, 58, 237, 0.2);

    /* Gradients */
    --violet-gradient: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #8b5cf6 100%);
    --violet-gradient-soft: linear-gradient(180deg, #f5f3ff 100%, #ffffff 100%);
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--violet-bg);
    color: var(--violet-foreground);
    line-height: 1.6;
}

/* ========================================
   TRUST SECTION - ILS NOUS FONT CONFIANCE
======================================== */

.trust-section {
    padding: 5rem 2rem;

    overflow: hidden;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-badge {
    display: inline-block;
    color: var(--violet-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--violet-foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .trust-title {
        font-size: 3rem;
    }
}

.trust-description {
    font-size: 1.125rem;
    color: var(--violet-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   LOGOS CAROUSEL (AUTO-SCROLL)
======================================== */

.logos-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.logos-carousel::before,
.logos-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(245, 243, 255, 1) 0%, rgba(245, 243, 255, 0) 100%);
}

.logos-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(245, 243, 255, 1) 0%, rgba(245, 243, 255, 0) 100%);
}

.logos-track {
    display: flex;
    gap: 3rem;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

/* Pause on hover */
.logos-carousel:hover .logos-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Logo Item */
.logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(10%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   TRUST STATS
======================================== */

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.trust-stat-item {
    text-align: center;
}

.trust-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--violet-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.trust-stat-label {
    display: block;
    font-size: 1rem;
    color: var(--violet-muted);
    font-weight: 500;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .trust-section {
        padding: 4rem 1.5rem;
    }

    .trust-title {
        font-size: 2rem;
    }

    .trust-description {
        font-size: 1rem;
    }

    .logo-item {
        width: 150px;
        height: 80px;
        padding: 1rem;
    }

    .logos-track {
        gap: 2rem;
        animation-duration: 40s;
    }

    .logos-carousel::before,
    .logos-carousel::after {
        width: 50px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .trust-header {
        margin-bottom: 3rem;
    }

    .logo-item {
        width: 130px;
        height: 70px;
    }
}

/* ========================================
   DARK MODE
======================================== */



/* Dark Mode overrides handled by CSS variables */
[data-theme="dark"] .logo-item {
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

[data-theme="dark"] .logo-item:hover {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

[data-theme="dark"] .logos-carousel::before {
    background: linear-gradient(to right, #0b1220 0%, rgba(15, 23, 36, 0) 100%);
}

[data-theme="dark"] .logos-carousel::after {
    background: linear-gradient(to left, #0b1220 0%, rgba(15, 23, 36, 0) 100%);
}

/* ========================================
   ALTERNATIVE STYLES (OPTIONS)
======================================== */

/* Option 1: Faster scroll */
.logos-track.fast-scroll {
    animation-duration: 30s;
}

/* Option 2: Slower scroll */
.logos-track.slow-scroll {
    animation-duration: 90s;
}

/* Option 3: Reverse direction */
.logos-track.reverse {
    animation-direction: reverse;
}

/* Option 4: No grayscale effect */
.logo-item.no-grayscale .logo-img {
    filter: none;
    opacity: 1;
}

/* Option 5: Larger logos */
.logo-item.large {
    width: 220px;
    height: 120px;
}

/* ========================================
   ACCESSIBILITY
======================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .logos-track {
        animation: none;
    }

    .logos-carousel {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .logos-track {
        justify-content: flex-start;
    }
}

/* Focus styles for keyboard navigation */
.logo-item:focus-within {
    outline: 2px solid #7c3aed;
    outline-offset: 4px;
}

/* ========================================
   HERO VIDEO SECTION
======================================== */

.hero-video {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;

    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;



}

/* Content */
.hero-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;


}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-video-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Title */
.hero-video-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-video-title {
        font-size: 4.5rem;
    }
}

.hero-video-title .text-accent {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text */
.hero-video-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-video-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-video-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--violet-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hero-video-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.hero-video-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-video-btn-primary:hover .hero-video-btn-icon {
    transform: translateX(4px);
}

.hero-video-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-video-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.hero-scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.hero-scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   STATS SECTION
======================================== */

.stats-section {
    background: white;
    padding: 3rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--violet-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-label {
    font-size: 1rem;
    color: var(--violet-muted);
    font-weight: 500;
}

/* ========================================
   FEATURES SECTION
======================================== */

.features-section {
    padding: 5rem 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-badge {
    display: inline-block;
    color: var(--violet-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--violet-foreground);
    margin-bottom: 1rem;
}

.features-description {
    font-size: 1.125rem;
    color: var(--violet-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.feature-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.feature-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--violet-foreground);
    margin-bottom: 1rem;
}

.feature-card-text {
    font-size: 1rem;
    color: var(--violet-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--violet-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.feature-card-link:hover {
    gap: 0.75rem;
}

.feature-link-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.feature-card-link:hover .feature-link-icon {
    transform: translateX(4px);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .hero-video {
        height: 100vh;
    }

    .hero-video-title {
        font-size: 2.5rem;
    }

    .hero-video-text {
        font-size: 1.125rem;
    }

    .hero-video-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-video-btn-primary,
    .hero-video-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-video-title {
        font-size: 2rem;
    }

    .hero-video-text {
        font-size: 1rem;
    }

    .stats-section {
        padding: 2rem 1rem;
    }
}

/* ========================================
   VIDEO FALLBACK (Si pas de vidéo)
======================================== */


/* ========================================
   DARK MODE
======================================== */

[data-theme="dark"] .stats-section {
    background: #0b1220;
}

[data-theme="dark"] .stats-number {
    color: #8b5cf6;
}

[data-theme="dark"] .stats-label {
    color: #bdb6d9;
}



[data-theme="dark"] .feature-card {
    background: #0b1220;
    border-color: rgba(139, 92, 246, 0.1);
}

[data-theme="dark"] .features-title {
    color: #e6e1ff;
}

[data-theme="dark"] .features-description,
[data-theme="dark"] .feature-card-text {
    color: #bdb6d9;
}

[data-theme="dark"] .feature-card-title {
    color: #e6e1ff;
}

/* ========================================
   SERVICES SECTION
======================================== */
.section-services {
    padding: 5rem 1rem;

}

.services-container {
    max-width: 72rem;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-badge {
    display: inline-block;
    color: var(--violet-accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--violet-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-description {
    font-size: 1.125rem;
    color: var(--violet-muted);
    line-height: 1.75;
    max-width: 42rem;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--violet-shadow);
    border: 1px solid var(--violet-light);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--violet-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--violet-shadow-hover);
    transform: translateY(-8px);
    border-color: var(--violet-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Icon */
.service-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--violet-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--violet-primary);
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    font-size: 1.75rem;
    color: var(--violet-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: white;
}

/* Service Content */
.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--violet-foreground);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
    color: var(--violet-primary);
}

.service-card-description {
    font-size: 0.9375rem;
    color: var(--violet-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    background: var(--violet-light);
    color: var(--violet-primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.service-card:hover .service-tag {
    background: var(--violet-primary);
    color: white;
}

/* Service Link */
.service-link {
    display: flex;
    align-items: center;
    color: var(--violet-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 0.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ========================================
   POSITIONS SECTION
======================================== */
.section-positions-home {
    padding: 5rem 1rem;

}

.positions-container {
    max-width: 72rem;
    margin: 0 auto;
}

.positions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .positions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* Positions Content */
.positions-content {
    max-width: 100%;
}

.positions-badge {
    display: inline-block;
    color: var(--violet-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.positions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--violet-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.positions-description {
    font-size: 1.125rem;
    color: var(--violet-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Positions List */
.positions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 640px) {
    .positions-list {
        grid-template-columns: 1fr;
    }
}

.position-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.position-check {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--violet-primary);
    flex-shrink: 0;
}

.position-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--violet-foreground);
}

/* Stats Card */
.positions-stats-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--violet-shadow-lg);
    border: 1px solid var(--violet-light);
    transition: all 0.3s ease;
}

.positions-stats-card:hover {
    box-shadow: var(--violet-shadow-hover);
    transform: translateY(-4px);
}

.stats-circle {
    width: 6rem;
    height: 6rem;
    background: var(--violet-gradient);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--violet-foreground);
    margin-bottom: 0.5rem;
}

.stats-subtitle {
    font-size: 1rem;
    color: var(--violet-muted);
    margin-bottom: 2rem;
}

/* Stats Bars */
.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-bar-item {
    background: var(--violet-light);
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.stat-bar-item:hover {
    background: linear-gradient(135deg, var(--violet-light) 0%, #ffffff 100%);
}

.stat-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stat-bar-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--violet-foreground);
}

.stat-bar-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--violet-primary);
}

.stat-bar-bg {
    height: 0.5rem;
    background: white;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-bar-fill {
    height: 100%;
    background: var(--violet-gradient);
    border-radius: 9999px;
    transition: width 1s ease-out;
}

/* ========================================
   CTA SECTION
======================================== */
.section-cta {
    padding: 5rem 1rem;
    background: var(--violet-gradient);
    position: relative;
    overflow: hidden;
}

.section-cta::before,
.section-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.section-cta::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.section-cta::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
}

.cta-container {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    color: var(--violet-primary);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(4px);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .hero-video-title {
        font-size: 3.5rem;
    }

    .services-title,
    .positions-title,
    .cta-title {
        font-size: 2.25rem;
    }

    .features-grid,
    .services-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .container,
    .trust-container,
    .features-container,
    .services-container,
    .positions-container,
    .cta-container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero-video {
        height: auto;
        min-height: 100vh;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-video-title {
        font-size: 2.5rem;
    }

    .hero-video-text {
        font-size: 1.125rem;
    }

    .hero-video-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-video-btn-primary,
    .hero-video-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Section Headers */
    .services-title,
    .positions-title,
    .cta-title,
    .features-title,
    .trust-title {
        font-size: 2rem;
    }

    /* Cards & Grids */
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .features-grid,
    .services-grid,
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card,
    .service-card,
    .positions-stats-card {
        padding: 1.5rem;
    }

    .positions-list {
        grid-template-columns: 1fr;
    }

    /* Stats Circle */
    .stats-circle {
        width: 5rem;
        height: 5rem;
    }
}

@media (max-width: 640px) {

    .trust-title,
    .features-title,
    .services-title,
    .positions-title,
    .cta-title {
        font-size: 1.75rem;
    }

    .trust-description,
    .features-description,
    .services-description,
    .positions-description,
    .cta-description {
        font-size: 1rem;
    }

    .hero-video-title {
        font-size: 2rem;
    }

    .hero-video-text {
        font-size: 1rem;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   DARK MODE
======================================== */
[data-theme="dark"] {
    --violet-primary: #8b5cf6;
    --violet-light: #0f1724;
    --violet-dark: #4c1d95;
    --violet-accent: #7c3aed;
    --violet-foreground: #e6e1ff;
    --violet-muted: #bdb6d9;
    --violet-bg: #05060a;
    /* Dark Body Background */
    --violet-card-bg: #0b1220;
    --violet-shadow: 0 6px 20px rgba(11, 18, 32, 0.6);
    --violet-shadow-hover: 0 10px 30px rgba(11, 18, 32, 0.7);
    --violet-shadow-lg: 0 12px 36px rgba(11, 18, 32, 0.8);
}

/* Body override removed - using variable --violet-bg */


[data-theme="dark"] .service-card,
[data-theme="dark"] .positions-stats-card {
    background: var(--violet-card-bg);
    border-color: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .service-card-title,
[data-theme="dark"] .positions-title,
[data-theme="dark"] .stat-bar-label {
    color: var(--violet-foreground);
}

[data-theme="dark"] .service-card-description,
[data-theme="dark"] .positions-description,
[data-theme="dark"] .position-text,
[data-theme="dark"] .stats-subtitle {
    color: var(--violet-muted);
}

[data-theme="dark"] .service-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--violet-accent);
}

[data-theme="dark"] .stat-bar-item {
    background: rgba(139, 92, 246, 0.05);
}

[data-theme="dark"] .stat-bar-bg {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .btn-primary {
    background: linear-gradient(90deg, var(--violet-dark), var(--violet-primary));
    color: white;
}

[data-theme="dark"] .btn-secondary {
    border-color: var(--violet-accent);
    color: var(--violet-accent);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--violet-accent);
    color: white;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {

    .hero-section,
    .section-cta {
        background: white !important;
        color: black !important;
    }

    .btn-primary,
    .btn-secondary,
    .cta-button,
    .cta-button-secondary {
        border: 1px solid black !important;
        color: black !important;
    }
}