:root {
    --primary: #0066FF;
    --secondary: #00D9FF;
    --accent: #6366F1;
    --dark: #0A0E27;
    --dark-2: #151B3D;
    --dark-3: #1F2544;
    --light: #F8FAFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--dark);
    background: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== NAVIGATION FUTURISTE ===== */
.top-bar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.top-bar-left {
    display: flex;
    gap: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
}

.lang-switcher {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.lang-switcher:hover {
    background: rgba(0, 217, 255, 0.2);
}

nav {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(30px);
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: white;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 217, 255, 0.8); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover::before {
    width: 100%;
}

.btn-demo {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

/* ===== HERO SECTION FUTURISTE ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A0E27 0%, #1F2544 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.rotating-circles {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.15;
}

.circle-1 {
    width: 500px;
    height: 500px;
    border-color: #0066FF;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    top: 50px;
    left: 50px;
    border-color: #00D9FF;
    animation: rotate 15s linear infinite reverse;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 100px;
    left: 100px;
    border-color: #6366F1;
    animation: rotate 25s linear infinite;
}

.circle-4 {
    width: 200px;
    height: 200px;
    top: 150px;
    left: 150px;
    border-color: #00D9FF;
    animation: rotate 18s linear infinite reverse;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.circle-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.circle-1 .circle-dot { top: 0; left: 50%; transform: translateX(-50%); }
.circle-2 .circle-dot { top: 50%; right: 0; transform: translateY(-50%); }
.circle-3 .circle-dot { bottom: 0; left: 50%; transform: translateX(-50%); }
.circle-4 .circle-dot { top: 50%; left: 0; transform: translateY(-50%); }

.glow-orb-1 {
    position: absolute;
    top: -10%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.glow-orb-2 {
    position: absolute;
    bottom: -10%;
    left: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, -50px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stats-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.trusted-by {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* ===== SECTION SERVICES ===== */
.services {
    padding: 8rem 5%;
    background: var(--dark-2);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

/* ===== POURQUOI LIEWO ===== */
.why-liewo {
    padding: 8rem 5%;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-image-main {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.4);
    animation: float 10s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 217, 255, 0.2);
}

.feature-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== STATS BAR ===== */
.stats-bar {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
}

.stats-bar-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stats-bar-item {
    text-align: center;
}

.stats-bar-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stats-bar-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* ===== CLIENTS / TEMOIGNAGES ===== */
.testimonials {
    padding: 8rem 5%;
    background: var(--dark-2);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    padding: 10px;
}

.testimonial-info h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #0A0E27 0%, #1F2544 100%);
    position: relative;
    overflow: hidden;
}

.cta-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 40s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
}

/* ===== FORMULAIRE DIAGNOSTIC ===== */
.form-section {
    padding: 8rem 5%;
    min-height: 70vh;
    background: linear-gradient(135deg, #0A0E27 0%, #1F2544 100%);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
}

.form-card label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.form-card input,
.form-card textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.form-card input:focus,
.form-card textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-errors {
    color: #FF6B6B;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* ===== PAGE DETAIL SERVICE ===== */
.service-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 5%;
    background: linear-gradient(135deg, #0A0E27 0%, #1F2544 100%);
    text-align: center;
}

.service-detail-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-lg {
    width: 100px;
    height: 100px;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.service-detail-body {
    padding: 6rem 5%;
    background: var(--dark-2);
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.service-detail-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
}

.service-detail-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-detail-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.service-detail-related {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.service-detail-related::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
}

.service-detail-related h3 {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-related ul {
    list-style: none;
}

.service-detail-related li {
    margin-bottom: 0.5rem;
}

.service-detail-related a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 0.6rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.service-detail-related a:hover {
    color: white;
    background: rgba(0, 217, 255, 0.08);
}

.service-detail-related-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 10px;
}

/* ===== PAGE DETAIL FORMATION ===== */
.training-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #0A0E27 0%, #1F2544 100%);
}

.training-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.training-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 1.25rem 0 1.5rem;
}

.training-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.training-hero .sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 60ch;
}

.training-hero-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.training-pricetag {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    border-left: 3px solid var(--secondary);
    padding-left: 1rem;
}

.training-pricetag .amt {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.training-pricetag .note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.training-facts {
    margin-top: 3rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    gap: 1.5rem 2rem;
}

.training-facts div span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.training-facts div strong {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
}

.training-section {
    padding: 5rem 5%;
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.training-section.alt {
    background: var(--dark);
}

.training-cols {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.training-rail {
    position: sticky;
    top: 6rem;
}

.training-rail h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.training-rail p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.training-prose p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 66ch;
    margin-bottom: 1.25rem;
}

.training-prose p:last-child {
    margin-bottom: 0;
}

/* Livrables */
.training-steps {
    list-style: none;
    max-width: 60rem;
}

.training-steps li {
    position: relative;
    padding: 1.75rem 0 1.75rem 4.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.training-steps li:first-child { padding-top: 0; }
.training-steps li:last-child { border-bottom: 0; padding-bottom: 0; }

.training-steps .step-badge {
    position: absolute;
    left: 0;
    top: 1.7rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.training-steps li:first-child .step-badge { top: 0; }

.training-steps h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.training-steps p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 56ch;
}

/* Programme */
.training-blocnote {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
    margin: 0 0 0.4rem;
}

.training-blocnote-intro {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    max-width: 50ch;
}

.training-modules {
    list-style: none;
    margin-bottom: 3rem;
}

.training-modules:last-child { margin-bottom: 0; }

.training-modules li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 0 1.25rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.training-modules .n {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary);
    padding-top: 0.1rem;
}

.training-modules h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.training-modules p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.98rem;
    max-width: 58ch;
}

.training-yield {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

/* Format */
.training-spec {
    width: 100%;
    border-collapse: collapse;
    max-width: 50rem;
}

.training-spec th, .training-spec td {
    text-align: left;
    vertical-align: top;
    padding: 1rem 1rem 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 400;
}

.training-spec th {
    width: 12rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.training-spec td {
    color: rgba(255, 255, 255, 0.85);
}

.training-spec tr:last-child th, .training-spec tr:last-child td { border-bottom: 0; }

/* Tarif */
.training-tarif {
    position: relative;
    overflow: hidden;
    padding: 6rem 5%;
    background: linear-gradient(135deg, #0A0E27 0%, #1F2544 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.training-tarif-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
}

.training-tarif h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: white;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.training-tarif-intro {
    color: rgba(255, 255, 255, 0.65);
    max-width: 50ch;
    margin-bottom: 3rem;
}

.training-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.training-amount .fig {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.training-amount .cur {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
}

.training-amount .per {
    color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
}

.training-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 2.5rem;
}

.training-tranche {
    padding: 1.75rem 1.75rem 1.75rem 0;
    border-top: 3px solid var(--secondary);
}

.training-tranche + .training-tranche {
    padding-left: 1.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.training-tranche .when {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.training-tranche .val {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.training-tranche .d {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 34ch;
}

.training-includes {
    list-style: none;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 0.75rem 2rem;
}

.training-includes li {
    padding-left: 1.4rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
}

.training-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.6rem;
    height: 2px;
    background: var(--secondary);
}

.training-fine {
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    max-width: 60ch;
}

.training-fine a { color: var(--secondary); }

/* Reservation */
.training-signup-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.training-signup-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 40rem;
}

.training-signup-box dl {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.training-signup-box dt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.training-signup-box dd {
    margin: 0.1rem 0 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    color: white;
}

.training-signup-box .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.training-seats {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 1.5rem 0 0;
}

/* FAQ */
.training-faq {
    max-width: 55rem;
}

.training-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.training-faq details:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.training-faq summary {
    cursor: pointer;
    list-style: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.training-faq summary::-webkit-details-marker { display: none; }

.training-faq summary::after {
    content: '+';
    color: var(--secondary);
    font-size: 1.5rem;
    line-height: 1;
    flex: none;
}

.training-faq details[open] summary::after { content: '\2013'; }

.training-faq details p {
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.65);
    max-width: 58ch;
    line-height: 1.8;
}

/* Liste des formations */
.trainings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.training-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.training-card-price strong {
    font-family: 'Orbitron', sans-serif;
    color: white;
    font-size: 1.3rem;
}

.training-card-price span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 60rem) {
    .training-cols, .training-signup-grid {
        grid-template-columns: 1fr;
    }

    .training-rail {
        position: static;
    }

    .training-split {
        grid-template-columns: 1fr;
    }

    .training-tranche + .training-tranche {
        padding-left: 0;
        border-left: 0;
        margin-top: 0.5rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content, .why-content {
        grid-template-columns: 1fr;
    }

    .services-grid, .trainings-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-detail-body {
        grid-template-columns: 1fr;
    }
}
