/* ============================================
   FULL iN - Style Principal
   Design: Moderne, Classe, Immersif
   Updated: 2026-03-22 — Codex Technique v3.0
   ============================================ */

/* ============================================
   Scroll-Driven Animations (CSS-first, zero JS)
   Fallback: JS IntersectionObserver for older browsers
   ============================================ */
@supports (animation-timeline: view()) {
    @keyframes scroll-fade-in {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pillar-card,
    .science-card,
    .offre-card,
    .contact-method,
    .stat,
    .section-header,
    .experience-text,
    .experience-images,
    .instructeur-image,
    .instructeur-content,
    .contact-info,
    .contact-form-wrapper {
        animation: scroll-fade-in 0.6s ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 80%;
    }

    /* Stagger for card grids */
    .pillar-card:nth-child(2),
    .science-card:nth-child(2),
    .offre-card:nth-child(2) {
        animation-range: entry 5% entry 85%;
    }
    .pillar-card:nth-child(3),
    .science-card:nth-child(3),
    .offre-card:nth-child(3) {
        animation-range: entry 10% entry 90%;
    }
    .science-card:nth-child(4) { animation-range: entry 10% entry 90%; }
    .science-card:nth-child(5) { animation-range: entry 15% entry 95%; }
    .science-card:nth-child(6) { animation-range: entry 20% entry 100%; }
}

/* Performance: skip rendering of off-screen sections */
.science,
.offres,
.experience,
.instructeur,
.contact,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* Accessibility: respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Skip Navigation (Accessibility) */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ambre);
    color: var(--noir-profond);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-nav:focus {
    top: 0;
}

/* Variables CSS */
:root {
    /* Couleurs principales — Contraste Chaud/Froid (v3.0) */
    --noir-profond: #0a0e14;
    --noir-section: #0f1218;
    --noir-card: #161b22;
    --bleu-glacier: #7dd3fc;
    --bleu-glacier-dark: #38bdf8;
    --bleu-glacier-light: #bae6fd;
    --ambre: #f59e42;
    --ambre-dark: #e08a30;
    --ambre-light: #fbbf6a;
    --sable-chaud: #e8dcc8;
    --blanc: #ffffff;
    --blanc-casse: #f8fafc;
    --orange-accent: #f59e42;
    --orange-hover: #e08a30;
    --gris-texte: #b0bec5;
    --gris-clair: #cbd5e1;

    /* Typographie — Space Grotesk titres, Inter corps */
    --font-heading: "Space Grotesk", "Inter", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Espacements */
    --section-padding: 120px 0;
    --container-width: 1200px;
    --border-radius: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--noir-profond);
    color: var(--blanc);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
}

.logo-full {
    color: var(--blanc);
}

.logo-in {
    color: var(--ambre);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gris-clair);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ambre);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--blanc);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(
        135deg,
        var(--ambre-dark),
        var(--ambre)
    );
    color: var(--noir-profond) !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 66, 0.3);
}

.nav-cta::after {
    display: none;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0.5;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.lang-link:hover {
    opacity: 0.8;
}

.lang-link.active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flag emojis fallback */
.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--blanc);
    transition: var(--transition-medium);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/hero-wim-hof-experience.jpg") center/cover no-repeat;
}

/* Modern formats for hero background */
@supports (background-image: url("test.avif")) {
    .hero-bg {
        background-image: url("images/hero-wim-hof-experience.avif");
    }
}
@supports (background-image: url("test.webp")) {
    .hero-bg {
        background-image: url("images/hero-wim-hof-experience.webp");
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(245, 158, 66, 0.1);
    border: 1px solid rgba(245, 158, 66, 0.2);
    color: var(--ambre);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(
        135deg,
        var(--ambre),
        var(--ambre-light)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gris-clair);
    margin-bottom: 50px;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--ambre-dark),
        var(--ambre)
    );
    color: var(--noir-profond);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(245, 158, 66, 0.3);
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--bleu-glacier);
    color: var(--bleu-glacier);
}

/* Note: btn-outline reste bleu glacier — c'est le bouton "voir la science" */

.btn-outline:hover {
    background: var(--bleu-glacier);
    color: var(--noir-profond);
}

.btn-ghost {
    background: transparent;
    color: var(--gris-clair);
    padding: 16px 20px;
}

.btn-ghost:hover {
    color: var(--bleu-glacier);
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gris-texte);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--ambre), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes dna-pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
        height: 40px;
    }
    50% {
        opacity: 1;
        height: 60px;
    }
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
section {
    padding: var(--section-padding);
}

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

.section-header.light {
    color: var(--blanc);
}

.section-tag {
    display: inline-block;
    color: var(--ambre);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gris-texte);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   LA MÉTHODE - 3 PILIERS
   ============================================ */
.methode {
    background: var(--noir-section);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(245, 158, 66, 0.08);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--ambre),
        var(--ambre-light)
    );
    transform: scaleX(0);
    transition: var(--transition-medium);
}

/* Pilier 1 : Respiration — accent ambre/feu */
.pillar-card:first-child:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 66, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Pilier 2 : Froid — accent bleu glacier (featured) */
.pillar-card.featured:hover {
    transform: translateY(-10px);
    border-color: rgba(125, 211, 252, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Pilier 3 : Mental — accent blanc lumineux */
.pillar-card:last-child:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

/* Pilier 2 : Froid garde la barre bleue */
.pillar-card.featured::before {
    background: linear-gradient(90deg, var(--bleu-glacier), var(--bleu-glacier-dark));
    transform: scaleX(1);
}

/* Pilier 3 : Mental barre blanche */
.pillar-card:last-child::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
}

.pillar-card.featured {
    border-color: rgba(125, 211, 252, 0.3);
    background: linear-gradient(
        145deg,
        rgba(125, 211, 252, 0.08),
        rgba(255, 255, 255, 0.02)
    );
}

.pillar-card.featured::before {
    transform: scaleX(1);
}

.pillar-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--blanc);
}

.pillar-description {
    color: var(--gris-texte);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.pillar-benefits {
    text-align: left;
}

.pillar-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gris-clair);
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-left: 10px;
}

.pillar-benefits li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--ambre);
    border-radius: 50%;
}

/* Pilier 2 (froid) : bullets bleu glacier */
.pillar-card.featured .pillar-benefits li::before {
    background: var(--bleu-glacier);
}

/* Pilier 3 (mental) : bullets blanc */
.pillar-card:last-child .pillar-benefits li::before {
    background: var(--blanc);
    flex-shrink: 0;
}

/* ============================================
   LA SCIENCE
   ============================================ */
.science {
    background: var(--noir-profond);
    position: relative;
}

.science::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(125, 211, 252, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Science Stats Row */
.science-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.science-stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(
        135deg,
        rgba(125, 211, 252, 0.1),
        rgba(125, 211, 252, 0.02)
    );
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: var(--border-radius);
}

.stat-big {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bleu-glacier);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--gris-clair);
    line-height: 1.4;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.science-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition-medium);
}

.science-card:hover {
    border-color: rgba(125, 211, 252, 0.2);
    transform: translateY(-5px);
}

.science-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(125, 211, 252, 0.15);
    margin-bottom: 16px;
}

.science-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--blanc);
}

.science-card p {
    color: var(--gris-texte);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.science-card p strong {
    color: var(--blanc);
    font-weight: 600;
}

.science-source {
    display: inline-block;
    color: var(--bleu-glacier);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.science-cta {
    text-align: center;
    margin-top: 60px;
}

.science-cta .btn svg {
    transition: var(--transition-fast);
}

.science-cta .btn:hover svg {
    transform: translate(3px, -3px);
}

/* ============================================
   OFFRES
   ============================================ */
.offres {
    background: var(--noir-section);
}

.offres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offre-card {
    background: var(--noir-card);
    border: 1px solid rgba(245, 158, 66, 0.06);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.offre-card.featured {
    border-color: rgba(245, 158, 66, 0.4);
}

.offre-card.featured::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--ambre-dark),
        var(--ambre)
    );
}

.offre-header {
    padding: 40px 35px 30px;
    background: linear-gradient(
        135deg,
        rgba(245, 158, 66, 0.08),
        rgba(245, 158, 66, 0.02)
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.offre-header .offre-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanc);
    margin-top: 12px;
    margin-bottom: 0;
}

.offre-badge {
    display: inline-block;
    background: rgba(245, 158, 66, 0.15);
    border: 1px solid rgba(245, 158, 66, 0.3);
    color: var(--ambre);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offre-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offre-description {
    color: var(--gris-texte);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.offre-list {
    margin-bottom: 30px;
    flex: 1;
}

.offre-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offre-list li:last-child {
    border-bottom: none;
}

.offre-list li strong {
    color: var(--blanc);
    font-size: 0.95rem;
    font-weight: 600;
}

.offre-list li span {
    color: var(--gris-texte);
    font-size: 0.85rem;
}

.offre-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.offre-actions .btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.8rem;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
    background: var(--noir-profond);
    overflow: hidden;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-text .section-tag {
    margin-bottom: 20px;
}

.experience-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.experience-text > p {
    color: var(--gris-texte);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--ambre);
    padding: 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.testimonial p {
    color: var(--gris-clair);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial cite {
    color: var(--ambre);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
}

.experience-images {
    position: relative;
    height: 500px;
}

.exp-img {
    position: absolute;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-img-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 350px;
    z-index: 2;
}

.exp-img-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 280px;
    z-index: 1;
}

/* ============================================
   INSTRUCTEUR
   ============================================ */
.instructeur {
    background: var(--noir-section);
}

.instructeur-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.instructeur-image {
    position: relative;
}

.instructeur-image > img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.certification-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--noir-section);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.certification-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructeur-content .section-tag {
    margin-bottom: 16px;
}

.instructeur-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.instructeur-intro {
    color: var(--gris-clair);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.instructeur-text {
    color: var(--gris-texte);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.instructeur-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: rgba(245, 158, 66, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(245, 158, 66, 0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ambre);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gris-texte);
}

.instructeur-content > p {
    color: var(--gris-texte);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--noir-profond);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-info > p {
    color: var(--gris-texte);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 50px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
}

.contact-method:hover {
    border-color: rgba(245, 158, 66, 0.2);
    background: rgba(245, 158, 66, 0.03);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        rgba(245, 158, 66, 0.15),
        rgba(245, 158, 66, 0.05)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ambre);
}

.contact-method div strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--blanc);
}

.contact-method div span {
    color: var(--gris-texte);
    font-size: 0.95rem;
}

/* Google Reviews special style */
.contact-method.google-reviews .contact-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.contact-method.google-reviews .contact-icon svg {
    stroke: #0a0a0a;
    fill: #0a0a0a;
}

.contact-method.google-reviews:hover {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.05);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    padding: 50px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 35px;
    color: var(--blanc);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--gris-clair);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--blanc);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ambre);
    background: rgba(245, 158, 66, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gris-texte);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--noir-profond);
    color: var(--blanc);
}

.contact-form .btn {
    margin-top: 10px;
    padding: 18px 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--noir-section);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand p {
    color: var(--gris-texte);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--blanc);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul a {
    color: var(--gris-texte);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links ul a:hover {
    color: var(--ambre);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gris-texte);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    color: var(--gris-clair);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--ambre);
    border-color: var(--ambre);
}

.footer-social a:hover svg {
    color: var(--noir-profond);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

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

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

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

    .experience-content,
    .instructeur-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .instructeur-grid {
        text-align: center;
    }

    .instructeur-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .instructeur-content .section-title,
    .experience-text .section-title,
    .contact-info .section-title {
        text-align: center;
    }

    .experience-text > p,
    .contact-info > p {
        text-align: center;
    }

    .experience-images {
        height: 400px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: var(--transition-medium);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pillars-grid,
    .offres-grid,
    .science-grid,
    .science-stats-row {
        grid-template-columns: 1fr;
    }

    .stat-big {
        font-size: 2.2rem;
    }

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

    .experience-images {
        height: 350px;
    }

    .exp-img-1 {
        width: 80%;
        height: 250px;
    }

    .exp-img-2 {
        width: 70%;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .offre-actions {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .pillar-card,
    .offre-content {
        padding: 30px 24px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .certification-badge {
        width: 80px;
        height: 80px;
        bottom: -20px;
        right: -10px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

/* ============================================
   PAGES LÉGALES
   ============================================ */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: var(--noir-profond);
}

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

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--blanc), var(--ambre));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-header p {
    color: var(--gris-texte);
    font-size: 0.95rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: var(--noir-card);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ambre);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(245, 158, 66, 0.2);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blanc);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--gris-clair);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    color: var(--gris-clair);
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--ambre);
    border-radius: 50%;
}

.legal-section a {
    color: var(--ambre);
}

.legal-section a:hover {
    color: var(--ambre-light);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--blanc);
}

.legal-section em {
    color: var(--gris-texte);
    font-style: italic;
}

.legal-back {
    text-align: center;
    margin-top: 50px;
}

.legal-back .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gris-texte);
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: var(--gris-texte);
    transition: var(--transition-fast);
}

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

.footer-legal-links span {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-section {
        padding: 24px;
    }

    .legal-section h2 {
        font-size: 1.15rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal-links span {
        display: none;
    }
}

/* ============================================
   POPUP PROCHAIN STAGE
   ============================================ */
.stage-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stage-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.stage-popup-content {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(245, 158, 66, 0.2);
    border-radius: 20px;
    padding: 28px;
    width: 320px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(245, 158, 66, 0.1);
    position: relative;
    overflow: hidden;
}

.stage-popup-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--ambre),
        var(--ambre-dark)
    );
}

.stage-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--gris-texte);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stage-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanc);
}

.stage-popup-header {
    margin-bottom: 20px;
}

.stage-popup-badge {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--ambre),
        var(--ambre-dark)
    );
    color: var(--noir-profond);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.stage-popup-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blanc);
    line-height: 1.3;
}

.stage-popup-body {
    margin-bottom: 24px;
}

.stage-popup-date,
.stage-popup-location {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gris-clair);
    font-size: 0.95rem;
}

.stage-popup-date svg,
.stage-popup-location svg {
    color: var(--ambre);
    flex-shrink: 0;
}

.stage-popup-date span,
.stage-popup-location span {
    font-weight: 500;
}

.stage-popup-price {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-popup-price .price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ambre);
}

.stage-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(
        135deg,
        var(--ambre-dark),
        var(--ambre)
    );
    color: var(--noir-profond);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stage-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 66, 0.3);
}

.stage-popup-btn svg {
    transition: transform 0.3s ease;
}

.stage-popup-btn:hover svg {
    transform: translateX(4px);
}

/* Bouton minimisé */
.stage-mini-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(245, 158, 66, 0.3);
    border-radius: 50px;
    padding: 14px 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(245, 158, 66, 0.1);
}

.stage-mini-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.stage-mini-btn:hover {
    border-color: var(--ambre);
    transform: translateY(-3px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(245, 158, 66, 0.2);
}

.stage-mini-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        var(--ambre),
        var(--ambre-dark)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-mini-icon svg {
    color: var(--noir-profond);
}

.stage-mini-text {
    color: var(--blanc);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Animation pulse pour attirer l'attention */
@keyframes pulse-glow {
    0%,
    100% {
        box-shadow:
            0 15px 50px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(245, 158, 66, 0.1);
    }
    50% {
        box-shadow:
            0 15px 50px rgba(0, 0, 0, 0.4),
            0 0 50px rgba(245, 158, 66, 0.3);
    }
}

.stage-mini-btn.active {
    animation: pulse-glow 2s ease-in-out infinite;
}

.stage-mini-btn:hover {
    animation: none;
}

/* Responsive popup */
@media (max-width: 480px) {
    .stage-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .stage-popup-content {
        width: 100%;
        padding: 24px;
    }

    .stage-mini-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }

    .stage-mini-text {
        display: none;
    }

    .stage-mini-btn {
        border-radius: 50%;
        padding: 12px;
    }
}

/* ============================================
   VIDEO PLAYER
   ============================================ */
.video-showcase {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-showcase .section-tag {
    display: block;
    text-align: center;
    margin-bottom: 16px;
}

.video-showcase-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--blanc);
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--noir-card);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.03);
}

.video-thumbnail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.2) 0%,
        rgba(10, 10, 10, 0.5) 100%
    );
    z-index: 1;
    transition: background 0.3s ease;
}

.video-thumbnail:hover::before {
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.1) 0%,
        rgba(10, 10, 10, 0.3) 100%
    );
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90px;
    height: 90px;
    background: linear-gradient(
        135deg,
        var(--ambre),
        var(--ambre-dark)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(245, 158, 66, 0.4);
}

.video-play-btn svg {
    width: 36px;
    height: 36px;
    color: var(--noir-profond);
    margin-left: 4px;
}

.video-thumbnail:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(245, 158, 66, 0.5);
}

.video-caption {
    text-align: center;
    padding: 20px;
    color: var(--gris-texte);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--blanc);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.video-modal-close svg {
    width: 20px;
    height: 20px;
}

/* Video responsive */
@media (max-width: 768px) {
    .video-showcase {
        margin-top: 60px;
        padding-top: 40px;
    }

    .video-showcase-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }

    .video-play-btn svg {
        width: 28px;
        height: 28px;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -45px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
}
