/* Reset et variables */
:root {
    --primary-color: #36675A;
    --primary-dark: #2a5046;
    --primary-light: #4a7a6a;
    --secondary-color: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --max-width: 1200px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* All Round Book Medium uniquement pour les titres */
h1, h2, h3, h4, h5, h6 {
    font-family: 'All Round Book', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500 !important; /* All Round Book Medium */
}

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

/* Boutons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500; /* All Round Book Medium */
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid #25D366;
    cursor: pointer;
    font-size: 16px;
    background-color: #25D366;
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.navbar {
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

.cta-nav {
    background-color: var(--primary-color);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.cta-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.cta-nav.active {
    background-color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 110vh;
    background-image: url('images/glen-hero.jpg');
    background-size: 130%;
    background-position: center 0%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.1) 40%, 
        rgba(0,0,0,0.05) 60%, 
        rgba(248,249,250,0.1) 75%, 
        rgba(248,249,250,0.4) 85%, 
        rgba(248,249,250,0.7) 92%, 
        rgba(248,249,250,0.9) 97%, 
        rgba(248,249,250,1) 100%);
    z-index: 1;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-weight: 500;
}



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

.hero-image {
    display: none;
}



.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.athlete-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Sections générales */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--text-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 35px;
    color: var(--text-white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    background-color: var(--text-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
}

.about-image {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-placeholder i {
    font-size: 100px;
    color: var(--text-white);
}

/* Calculator CTA Section */
.calculator-cta {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.calculator-coming-soon {
    display: none;
}

.calculator-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.calculator-cta-content {
    position: relative;
    z-index: 2;
}

.calculator-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

/* Badge text styles removed to avoid double background */

.badge-icon {
    font-size: 20px;
}

.calculator-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calculator-text {
    color: var(--text-white);
}

.calculator-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 700;
}

.calculator-text h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-weight: 600;
}

.calculator-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.85);
}

.calculator-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.highlight-card:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 20px;
}

.highlight-content h4 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.highlight-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.calculator-cta-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-calculator-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-white);
    color: var(--primary-color);
    padding: 18px 32px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.btn-calculator-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-calculator-primary i {
    font-size: 20px;
}

.calculator-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-badge {
    background-color: rgba(255,255,255,0.2);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.calculator-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator-mockup {
    background-color: var(--text-white);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background-color: var(--secondary-color);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.2);
}

.mockup-dots span:nth-child(1) { background-color: #ff5f57; }
.mockup-dots span:nth-child(2) { background-color: #ffbd2e; }
.mockup-dots span:nth-child(3) { background-color: #28ca42; }

.mockup-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
}

.mockup-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.mockup-zones {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intensity-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.intensity-header {
    margin-bottom: 5px;
}

.intensity-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zone-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    margin-left: 15px;
}

.zone-bar:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.zone-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    min-width: 60px;
}

.zone-desc {
    color: var(--text-light);
    font-size: 12px;
}

.zone-1 { border-left-color: #22c55e; }
.zone-2 { border-left-color: #22c55e; }
.zone-3 { border-left-color: #f59e0b; }
.zone-4 { border-left-color: #f59e0b; }
.zone-5 { border-left-color: #ea580c; }
.zone-6 { border-left-color: #dc2626; }
.zone-7 { border-left-color: #dc2626; }

.mockup-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(0,0,0,0.1);
    color: var(--text-light);
    font-size: 14px;
}

.mockup-footer i {
    color: var(--primary-color);
}

/* Coaching Section */
.coaching-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.coaching-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(54, 103, 90, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(54, 103, 90, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.coaching-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.coaching-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.coaching-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.coaching-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(54, 103, 90, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(54, 103, 90, 0.2);
}

.step-icon i {
    color: white;
    font-size: 24px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.coaching-tech {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-info h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-weight: 600;
}

.tech-info p {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
}

.tech-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.tech-visual {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-image {
    width: 100%;
    max-width: 80px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tech-image:hover {
    transform: scale(1.02);
}

.coaching-notice {
    margin-bottom: 30px;
}

.coaching-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.coaching-notice-content i {
    flex-shrink: 0;
    font-size: 24px;
    color: #f59e0b;
    margin-top: 2px;
}

.coaching-notice-content strong {
    display: block;
    color: #78350f;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.coaching-notice-content p {
    color: #92400e;
    margin: 0;
    line-height: 1.5;
}

.coaching-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.coaching-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.coaching-cta:hover::before {
    left: 100%;
}

.coaching-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.coaching-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-coaching {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-coaching:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-coaching i {
    font-size: 1.2rem;
}

/* Pierre Le Corre Section */
.pierre-lecorre {
    position: relative;
    background-color: var(--secondary-color);
    overflow: hidden;
    padding: 100px 0;
}

.pierre-lecorre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/testimonials/lecorre-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.pierre-lecorre .container {
    position: relative;
    z-index: 2;
}

.pierre-header {
    text-align: center;
    margin-bottom: 40px;
}

.pierre-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0px;
    font-weight: 600;
    line-height: 1.2;
}

.pierre-header h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.2;
}

.pierre-titles {
    margin-bottom: 0;
}

.pierre-titles p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}

/* Modern SaaS Badge */
.modern-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.98), rgba(230, 230, 230, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    padding: 10px 18px;
    margin: 8px 0;
    backdrop-filter: blur(24px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.modern-badge:hover::before {
    left: 100%;
}

.modern-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 12px 32px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(54, 103, 90, 0.2);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 
        0 0 0 3px rgba(34, 197, 94, 0.15),
        0 2px 4px rgba(34, 197, 94, 0.2);
    animation: pulse-dot 3s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 
            0 0 0 3px rgba(34, 197, 94, 0.15),
            0 2px 4px rgba(34, 197, 94, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 0 6px rgba(34, 197, 94, 0.08),
            0 2px 8px rgba(34, 197, 94, 0.3);
        transform: scale(1.05);
    }
}

.badge-text {
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.pierre-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.pierre-image {
    position: relative;
}

.pierre-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.pierre-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.pierre-placeholder i {
    font-size: 100px;
    color: var(--text-white);
}

.testimonial {
    background-color: var(--text-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial blockquote {
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    quotes: none;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
    content: '';
}

/* Athletes Section */
.athletes {
    background-color: var(--text-white);
}

.athletes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.athlete-card {
    background-color: var(--text-white);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: stretch;
    gap: 0;
    text-align: left;
    min-height: 180px;
    overflow: hidden;
    height: 100%;
}

.athlete-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.athlete-avatar {
    width: 120px;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.athlete-avatar i {
    font-size: 35px;
    color: var(--text-white);
}

.athlete-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.athlete-card:hover .athlete-avatar img {
    transform: scale(1.05);
}

.athlete-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 25px;
    justify-content: center;
}

.athlete-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 2px;
    font-weight: 600;
}

.athlete-level {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1px;
}

.athlete-coaching {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.athlete-socials {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.athlete-socials a {
    color: var(--text-light);
    transition: var(--transition);
    text-decoration: none;
    font-size: 18px;
}

.athlete-socials a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.athlete-socials i {
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

.cta-card {
    background: var(--secondary-color);
    color: var(--text-dark);
    min-height: 160px;
    border: 1px solid var(--border-color);
}

.cta-card h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 2px;
}

.cta-card .athlete-level {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.cta-card .athlete-avatar {
    background-color: var(--primary-color);
    opacity: 0.8;
}

.cta-card .btn-whatsapp {
    font-size: 13px;
    padding: 8px 16px;
}

/* Stages Teasing Section */
.stages-teasing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f8f6 100%);
    position: relative;
    overflow: hidden;
}

.stages-teasing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(54, 103, 90, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(54, 103, 90, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stages-content {
    position: relative;
    z-index: 1;
}

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

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.coming-soon-badge .badge-text {
    color: white;
}

/* Texte simple pour Pierre Le Corre */
.pierre-simple-text {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0px 0 0 0;
    text-align: center;
    line-height: 1.3;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.stages-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stages-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stages-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.stages-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

@media (max-width: 600px) {
    .stages-features {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(54, 103, 90, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.stages-preview {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.preview-text {
    padding: 40px;
}

.preview-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.preview-list {
    list-style: none;
    padding: 0;
}

.preview-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

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

.preview-list li:hover {
    background: #f8f9fa;
    padding-left: 10px;
}

.preview-list li i {
    color: var(--primary-color);
    font-size: 18px;
    width: 20px;
}

.preview-visual {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stages-carousel {
    position: relative;
    width: 100%;
    max-width: 320px;
    animation: float 6s ease-in-out infinite;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(54, 103, 90, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(54, 103, 90, 0.3);
}

.carousel-arrow-left {
    left: -60px;
}

.carousel-arrow-right {
    right: -60px;
}

.carousel-arrow i {
    font-size: 14px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.stage-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 33.333%;
    flex-shrink: 0;
}

/* Stage mockup variations - styling handled by parent classes */

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

.mockup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.mockup-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.mockup-schedule {
    padding: 20px;
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-day:last-child {
    border-bottom: none;
}

.day-label {
    background: var(--primary-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.day-activity {
    color: var(--text-dark);
    font-weight: 500;
}

.mockup-footer {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.mockup-footer i {
    color: var(--primary-color);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(54, 103, 90, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.indicator:hover::before {
    width: 100%;
    height: 100%;
}

.stages-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.stages-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 8s linear infinite;
}

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

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

.stages-cta h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.stages-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-stages {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid #25D366;
    margin-bottom: 20px;
}

.btn-stages:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-stages i {
    font-size: 20px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-note i {
    color: #25D366;
}

/* Responsive Design pour Stages */
@media (max-width: 768px) {
    .stages-header h2 {
        font-size: 2rem;
    }
    
    .stages-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
    }
    
    .preview-visual {
        padding: 30px 20px;
    }
    
    .stages-cta {
        padding: 40px 20px;
    }
    
    .btn-stages {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .carousel-arrow {
        display: none; /* Hide arrows on mobile, use swipe instead */
    }
}

/* Partners Section */
.partners {
    background-color: var(--secondary-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.partners-grid .cta-partner-card {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
    margin-top: 0;
}

.partner-card:not(.cta-partner-card) {
    background-color: var(--text-white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card:not(.cta-partner-card):hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-partner {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: auto;
}

.btn-partner:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Promo Code Simple */
.promo-code-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0;
    padding: 6px 0;
    border-top: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.promo-code-simple:hover {
    background-color: rgba(54, 103, 90, 0.05);
}

.promo-text {
    font-size: 13px;
    color: var(--text-light);
    user-select: none;
}

.promo-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.copy-icon {
    color: var(--text-light);
    font-size: 12px;
    transition: color 0.2s ease;
}

.promo-code-simple:hover .copy-icon {
    color: var(--primary-color);
}

.promo-code-simple.copied .copy-icon {
    color: #28a745;
}

/* Promo Code Simple Text Only */
.promo-code-simple-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 0;
    padding: 6px 0;
    border-top: 1px solid #eee;
    border-radius: 4px;
}

.cta-partner-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.cta-partner-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

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

.cta-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-partner-card:hover::before {
    left: 100%;
}

.cta-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cta-partner-card h3 {
    font-size: 18px;
    color: var(--text-white);
    margin: 8px 0 6px 0;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-partner-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-partner-card .partner-logo {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.cta-partner-card:hover .partner-logo {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-partner-card .partner-logo i {
    color: var(--text-white);
    font-size: 40px;
    position: relative;
    z-index: 3;
}

.cta-partner-card .btn-whatsapp {
    background-color: var(--text-white);
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 12px;
    padding: 8px 16px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.cta-partner-card .btn-whatsapp:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.cta-section .btn-whatsapp {
    background-color: #25D366;
    color: var(--text-white);
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-whatsapp:hover {
    background-color: #1da851;
    border-color: #1da851;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

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

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(54, 103, 90, 0.1);
}

.form-hint {
    display: block;
    margin-top: 8px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-hint i {
    color: var(--primary-color);
    margin-right: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-credits {
    display: flex;
    gap: 10px;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }

    .partners-grid .cta-partner-card {
        grid-column: auto;
        max-width: none;
        margin-top: 0;
    }

    /* Athletes section - tablettes */
    .athletes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .athlete-card {
        min-height: 160px;
    }

    .athlete-avatar {
        width: 110px;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--text-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

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

    .nav-menu a.active {
        color: var(--primary-color);
        font-weight: 600;
    }

    .hero {
        min-height: 100svh;
        height: 100svh;
        padding-top: 60px;
        padding-bottom: 60px;
        background-size: cover;
        background-position: center 20%;
        background-attachment: scroll;
        align-items: flex-start;
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(2rem, 4.5vw, 3rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .coaching-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .coaching-tech {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 0;
        margin-top: 20px;
        margin-bottom: 30px;
        max-width: none;
    }

    .tech-info {
        text-align: center;
    }
    
    .coaching-header h2 {
        font-size: 2rem;
    }
    
    .coaching-cta {
        padding: 40px 30px;
    }
    
    .coaching-cta h3 {
        font-size: 1.6rem;
    }
    
    .pierre-header {
        margin-bottom: 40px;
    }

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

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

    .calculator-highlights {
        align-items: stretch;
    }

    .highlight-card {
        width: 100%;
        max-width: none;
    }

    .calculator-cta-actions {
        justify-content: center;
        gap: 20px;
    }

    .calculator-mockup {
        max-width: 350px;
    }

    .pierre-img,
    .pierre-placeholder {
        height: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .athletes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }
    
    /* Modern Badge Responsive */
    .modern-badge {
        padding: 8px 14px;
        border-radius: 14px;
    }
    
    .badge-dot {
        width: 8px;
        height: 8px;
        margin-right: 10px;
    }
    
    .badge-text {
        font-size: 13px;
    }

    .partners-grid .cta-partner-card {
        grid-column: auto;
        max-width: none;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .coaching-process {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

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

    /* Athletes section - très petits écrans */
    .athlete-card {
        flex-direction: row;
        text-align: left;
        padding: 15px;
        min-height: 120px;
    }

    .athlete-avatar {
        width: 80px;
        height: 100%;
        border-radius: 10px;
    }

    .athlete-content {
        padding: 12px 15px;
        gap: 3px;
        line-height: 1.3;
    }

    .athlete-card h3 {
        font-size: 17px;
        margin-bottom: 2px;
        line-height: 1.2;
        font-weight: 600;
    }

    .athlete-level {
        font-size: 13px;
        margin-bottom: 2px;
        font-weight: 500;
        line-height: 1.2;
    }

    .athlete-coaching {
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.3;
        color: var(--text-light);
    }

    .athlete-socials {
        gap: 8px;
        margin-top: 2px;
    }

    .athlete-socials a {
        font-size: 16px;
        transition: var(--transition);
    }

    .athlete-socials a:hover {
        transform: scale(1.1);
    }

    /* Optimisation des images sur mobile */
    .athlete-avatar img {
        object-fit: cover;
        object-position: center top;
    }

    .athlete-card:hover .athlete-avatar img {
        transform: none; /* Désactiver l'effet zoom sur mobile */
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .footer-logo {
        height: 50px;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .footer-logo {
        height: 45px;
    }

    .hero {
        min-height: 100svh;
        height: 100svh;
        padding-top: 50px;
        padding-bottom: 50px;
        background-size: cover;
        background-position: center 25%;
        background-attachment: scroll;
        align-items: flex-start;
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 12px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .hero-content {
        padding: 15px;
        width: 100%;
        margin-top: 20px;
    }

    /* Assurer une transition propre vers la section suivante */
    .hero + section,
    .services {
        margin-top: -2px;
        position: relative;
        z-index: 1;
    }

    .hero::before {
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.3) 0%, 
            rgba(0,0,0,0.1) 40%, 
            rgba(0,0,0,0.05) 60%, 
            rgba(248,249,250,0.1) 75%, 
            rgba(248,249,250,0.4) 85%, 
            rgba(248,249,250,0.7) 92%, 
            rgba(248,249,250,0.9) 97%, 
            rgba(248,249,250,1) 100%);
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }



    .partner-card, .service-card {
        padding: 25px 20px;
    }

    .athlete-card {
        flex-direction: row;
        text-align: left;
        gap: 0;
        padding: 20px;
        min-height: 140px;
        align-items: stretch;
    }

    .athlete-content {
        gap: 4px;
        padding: 15px 20px;
        justify-content: center;
        line-height: 1.4;
    }

    .athlete-card h3 {
        font-size: 19px;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .athlete-level {
        font-size: 14px;
        margin-bottom: 2px;
        font-weight: 500;
        line-height: 1.3;
    }

    .athlete-coaching {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.3;
        color: var(--text-light);
    }

    .athlete-avatar {
        width: 100px;
        height: 100%;
        border-radius: 12px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .athlete-socials {
        justify-content: flex-start;
        gap: 12px;
        margin-top: 4px;
    }

    .athlete-socials a {
        transition: var(--transition);
    }

    /* Optimisation des images sur tablettes */
    .athlete-avatar img {
        object-fit: cover;
        object-position: center;
    }

    .calculator-main-content {
        gap: 30px;
    }

    .calculator-highlights {
        gap: 15px;
    }

    .highlight-card {
        padding: 15px;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .btn-calculator-primary {
        font-size: 16px;
        padding: 15px 25px;
    }

    .calculator-mockup {
        max-width: 100%;
    }

    .mockup-header {
        padding: 15px 20px;
    }

    .mockup-zones {
        padding: 20px;
        gap: 12px;
    }

    .zone-bar {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .zone-label {
        font-size: 13px;
    }

    .zone-desc {
        font-size: 11px;
    }
}

/* Mode paysage mobile - écrans courts */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: flex-start;
        background-position: center 30%;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 10px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hero-content {
        margin-top: 10px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Très petits écrans en portrait */
@media (max-width: 360px) {
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
        background-position: center 30%;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .hero-content {
        padding: 12px;
        margin-top: 15px;
    }

    .btn-whatsapp {
        padding: 11px 22px;
        font-size: 15px;
    }
}

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

.hero-content, .service-card, .athlete-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll comportement */
html {
    scroll-behavior: smooth;
}

/* Focus accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========== CALCULATEUR SECTION ========== */

.calculateur {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.calculateur-content {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.calc-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.calc-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.calc-card-header {
    margin-bottom: 25px;
    text-align: center;
}

.calc-card-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calc-card-header h3 i {
    color: var(--primary-color);
}

.calc-card-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-times-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
    padding: 16px;
    background: rgba(54, 103, 90, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(54, 103, 90, 0.1);
}

.calc-form .form-group {
    margin-bottom: 16px;
    padding: 16px;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.calc-form .form-group:hover {
    border-color: var(--primary-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calc-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.4;
}

.intensity {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-top: 2px;
}

.calc-form input,
.calc-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.calc-form input:focus,
.calc-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(54, 103, 90, 0.1);
}

.btn-calc {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(54, 103, 90, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-calc::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-calc:hover::before {
    left: 100%;
}

.btn-calc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(54, 103, 90, 0.3);
}

.btn-calc:active {
    transform: translateY(0);
}

.btn-calc:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-calc i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-calc:hover i {
    transform: scale(1.05);
}

/* Résultats */
.zones-grid {
    display: grid;
    gap: 20px;
}

.zone-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.zone-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 103, 90, 0.12);
}

.zone-card:hover::before {
    width: 6px;
}

.zone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.zone-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(54, 103, 90, 0.3);
    transition: all 0.3s ease;
}

.zone-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    margin-left: 15px;
}

.zone-time {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(54, 103, 90, 0.2);
    transition: all 0.3s ease;
}

.zone-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.zone-objectif {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    font-style: italic;
}

/* Animations d'hover pour les éléments de zone */
.zone-card:hover .zone-number {
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(54, 103, 90, 0.25);
}

.zone-card:hover .zone-time {
    transform: scale(1.01);
    box-shadow: 0 3px 10px rgba(54, 103, 90, 0.2);
}

/* Animations des cartes de zones */
.zone-card-hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zone-card-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation de pulsation pour les zones importantes */
.zone-card:nth-child(3) { /* Zone 3 - Seuil */
    animation: subtlePulse 6s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(54, 103, 90, 0.08);
    }
    50% {
        box-shadow: 0 6px 20px rgba(54, 103, 90, 0.15);
    }
}

/* Animation de l'apparition de la section des résultats */
.calc-results-section {
    animation: slideInUp 0.6s ease-out;
}

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

/* Historique */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.history-item {
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.history-item:hover {
    background: white;
    box-shadow: var(--shadow);
}

/* Nouvelle structure d'historique avec accordéon */
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.history-main-info {
    flex: 1;
}

.history-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.history-performance {
    display: flex;
    gap: 15px;
    align-items: center;
}

.history-tr {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.history-400m {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.history-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.history-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.history-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.history-toggle:hover {
    background: var(--primary-color);
    color: white;
}

.history-toggle.active {
    background: var(--primary-color);
    color: white;
}

.history-toggle i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

/* Aperçu des zones */
.history-preview {
    margin-bottom: 10px;
}

.history-preview h6 {
    margin: 0 0 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-zones-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 6px;
}

.history-zone-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: white;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.8rem;
    transition: background-color 0.2s ease;
}

.history-zone-compact:hover {
    background: rgba(54, 103, 90, 0.05);
}

.history-zone-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.8rem;
}

.history-zone-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Vue détaillée des zones */
.history-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    animation: slideDown 0.3s ease-out;
}

.history-details h6 {
    margin: 0 0 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-zones-detailed {
    display: grid;
    gap: 12px;
}

.detailed-zone {
    background: white;
    border-radius: 8px;
    padding: 12px;
    border-left: 4px solid var(--primary-color);
}

.detailed-zone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.zone-number {
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.zone-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.zone-objective {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-style: italic;
}

.zone-distances-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 6px;
}

.detailed-distance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    background: var(--secondary-color);
    border-radius: 4px;
    font-size: 0.75rem;
}

.distance-name {
    font-weight: 600;
    color: var(--primary-color);
}

.distance-time {
    font-weight: 700;
    color: var(--text-dark);
}

.distance-margin {
    color: var(--text-light);
    font-size: 0.7rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-tests {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 40px 20px;
}

.loading {
    text-align: center;
    padding: 20px;
    color: var(--primary-color);
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    margin: 20px 0;
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin: 20px 0;
}

/* Responsive Calculateur */
@media (max-width: 768px) {
    .calculateur {
        padding: 60px 0;
    }
    
    .calc-times-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-card {
        padding: 20px;
    }
    
    .zone-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .zone-name {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .history-main-info {
        width: 100%;
    }

    .history-performance {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .history-meta {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .history-zones-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

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

@media (max-width: 480px) {
    .calc-card-header h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-calc {
        padding: 12px 24px;
        font-size: 0.95rem;
        margin-top: 12px;
    }
    
    .history-toggle {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .history-toggle i {
        font-size: 0.65rem;
    }

    .history-preview h6,
    .history-details h6 {
        font-size: 0.8rem;
    }

    .history-zone-compact {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .history-zone-label {
        font-size: 0.8rem;
    }

    .history-zone-time {
        font-size: 0.85rem;
    }

    .detailed-zone {
        padding: 10px;
    }

    .zone-distances-detailed {
        grid-template-columns: 1fr;
    }

    .detailed-distance {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .history-zones-compact {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .history-zone-compact {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .history-zone-label {
        font-size: 0.75rem;
    }

    .history-zone-time {
        font-size: 0.8rem;
    }
}

/* ================ MODALE D'AUTHENTIFICATION ================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.modal-close {
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 24px;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s;
    position: relative;
}

.auth-tab.active {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.auth-form {
    margin-top: 20px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(54, 103, 90, 0.1);
}

.auth-form .btn-primary {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-form .btn-primary:hover {
    background-color: var(--primary-dark);
}

.auth-form .btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 16px;
    }
    
    .auth-tab {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* User info styles */
.user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.user-info span {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-logout {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-logout:hover {
    background: var(--primary-dark);
}

.btn-logout i {
    margin-right: 5px;
}

@media (max-width: 480px) {
    .user-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .btn-logout {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* ================ PAGE CALCULATEUR ================ */

/* Information Section - Simplified */
.info-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-main h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.info-block {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.info-block h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-block p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.info-block ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.info-block li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.info-block strong {
    color: var(--primary-color);
}

.info-expertise {
    background: rgba(54, 103, 90, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.info-expertise p {
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
}

/* Sticky Contact Button */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.btn-sticky-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: subtle-pulse 2s infinite;
}

.btn-sticky-contact:hover {
    background: #20b558;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-sticky-contact i {
    font-size: 1.2rem;
}

.btn-sticky-contact span {
    font-size: 0.9rem;
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .info-section {
        padding: 40px 0;
    }
    
    .info-main h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .info-block {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .info-block h3 {
        font-size: 1.1rem;
    }
    
    .sticky-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-sticky-contact {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .btn-sticky-contact span {
        display: none;
    }
} 

/* ================ CALCULATEUR LOADER & ANIMATIONS ================ */

/* Loader de calcul */
.calculation-loader {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.calculation-loader.visible {
    opacity: 1;
    transform: translateY(0);
}

.loader-content {
    max-width: 400px;
    margin: 0 auto;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
    opacity: 1;
}

.spinner-ring:nth-child(2) {
    animation-delay: 0.4s;
    opacity: 0.7;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
}

.spinner-ring:nth-child(3) {
    animation-delay: 0.8s;
    opacity: 0.4;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

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

.loader-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    animation: pulse 2s ease-in-out infinite;
}

.loader-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.loader-progress {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

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



/* Responsive pour les animations */
@media (max-width: 768px) {
    .calculation-loader {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .loader-spinner {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .loader-title {
        font-size: 1.3rem;
    }
    
    .loader-subtitle {
        font-size: 0.9rem;
    }
    
    .zone-card-hidden {
        transform: translateY(20px) scale(0.95);
    }
    
    .zone-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(54, 103, 90, 0.08);
    }
    

}

@media (max-width: 480px) {
    .calculation-loader {
        padding: 25px 15px;
        margin: 20px 0;
    }
    
    .loader-spinner {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .loader-title {
        font-size: 1.2rem;
    }
    
    .loader-subtitle {
        font-size: 0.85rem;
    }
    
    .zone-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .zone-time {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/* ================ ANCIENNES STYLES COLLABORATION - SUPPRIMÉES ================ */

.info-text h3 {
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
    margin-top: 40px;
}

.info-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Amélioration de la liste des étapes */
.info-text ol {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px 25px 25px 45px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-text ol li {
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
}

.info-text ol li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Animation pour la section info */
.info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* CTA amélioré */
.info-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(54, 103, 90, 0.2);
    position: relative;
    overflow: hidden;
}

.info-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.info-cta h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.info-cta h3::before {
    display: none;
}

.info-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-cta .btn-whatsapp {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-cta .btn-whatsapp:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.info-cta .btn-whatsapp i {
    font-size: 1.2rem;
}

/* Styles redondants supprimés */ 

/* ================ HERO CALCULATEUR COLLABORATIF ================ */

/* Amélioration du héro calculateur */
.calculateur-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(54, 103, 90, 0.85) 0%, rgba(44, 95, 78, 0.9) 100%), url('images/testimonials/pierre-lecorre.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.calculateur-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(54, 103, 90, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 1;
}

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

.calculateur-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.calculateur-hero .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #b8e6d3;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.calculateur-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.calculateur-hero strong {
    color: #b8e6d3;
    font-weight: 600;
}



/* Responsive pour le héro */
@media (max-width: 768px) {
    .calculateur-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .calculateur-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .calculateur-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .calculateur-hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .calculateur-hero {
        padding: 80px 0 50px;
        min-height: 50vh;
    }
    
    .calculateur-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .calculateur-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .calculateur-hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
} 

/* ================ CLASSE POUR EMPÊCHER LES SAUTS DE LIGNE ================ */

/* Empêche les sauts de ligne sur les noms importants */
.no-break {
    white-space: nowrap;
    display: inline-block;
} 

/* ================ NOUVEAUX STYLES FORMULAIRE AMÉLIORÉ ================ */

/* Test Protocol Styles - Compact */
.test-protocol {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.test-protocol h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.test-protocol h4 i {
    color: var(--primary-color);
    font-size: 16px;
}

.protocol-steps {
    display: grid;
    gap: 8px;
}

.protocol-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.protocol-step:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.step-number {
    min-width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content strong {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.step-content {
    font-size: 13px;
    line-height: 1.3;
}

/* Time Input Styles - Compacts */
.time-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
    padding: 10px 16px;
    background: rgba(54, 103, 90, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(54, 103, 90, 0.1);
}

.time-minutes, .time-seconds {
    width: 50px;
    padding: 8px 4px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    color: var(--primary-color);
}

.time-minutes:focus, .time-seconds:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(54, 103, 90, 0.1);
}

.time-separator {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 2px;
}

.time-unit {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-left: 4px;
}

.time-examples {
    margin-top: 6px;
    text-align: center;
    padding: 4px 8px;
    background: rgba(54, 103, 90, 0.05);
    border-radius: 4px;
    border-left: 2px solid var(--primary-color);
}

.time-examples small {
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 400;
    display: block;
    line-height: 1.3;
}

/* Wrapper for minutes/seconds on mobile */
.time-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Field Help Styles */
.field-help {
    display: block;
    font-size: 11px;
    color: #666;
    font-weight: 400;
    margin-top: 2px;
    line-height: 1.3;
}

/* Enhanced Intensity Styles - Compact */
.intensity-2 {
    background: #4caf50;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
}

.intensity-3 {
    background: #ff9800;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
}

.intensity-4 {
    background: #f44336;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
}

.intensity-5 {
    background: #9c27b0;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
}

/* Form Group Enhancements - Compact */
.calc-form .form-group label {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.3;
}

.calc-form .form-group .label-main {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.calc-form .form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Styles spécifiques pour les champs généraux */
.calc-form input[type="text"],
.calc-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
    font-family: inherit;
}

.calc-form input[type="text"]:focus,
.calc-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(54, 103, 90, 0.1);
}

/* Séparateur visuel pour les sections du formulaire - uniquement au hover */
.calc-form > .form-group:first-child:hover {
    border-color: var(--primary-color);
    background: rgba(54, 103, 90, 0.02);
}

.calc-form > .form-group:first-child:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Mobile Adaptations for New Elements - Compact */
@media (max-width: 768px) {
    .test-protocol {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .protocol-steps {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .protocol-step {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .step-number {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .calc-times-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 12px;
        margin: 16px 0;
    }
    
    .calc-form .form-group {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .time-input-group {
        padding: 8px 12px;
        margin: 6px 0;
    }
    
    .time-input-row {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .time-minutes, .time-seconds {
        width: 45px;
        padding: 6px 4px;
        font-size: 14px;
    }
    
    .time-separator {
        font-size: 16px;
    }
    
    .time-examples {
        margin-top: 4px;
        padding: 3px 6px;
    }
    
    .time-examples small {
        font-size: 10px;
    }
    
    .field-help {
        font-size: 10px;
        text-align: center;
    }
    
    .calc-form .form-group label {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }
    
    .calc-form .form-group .label-main {
        margin-bottom: 2px;
    }
    
    .intensity-2, .intensity-3, .intensity-4, .intensity-5 {
        margin-left: 0;
        margin-top: 2px;
        font-size: 9px;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .test-protocol h4 {
        font-size: 16px;
        text-align: center;
        flex-direction: column;
        gap: 6px;
    }
    
    .protocol-steps {
        gap: 4px;
    }
    
    .protocol-step {
        padding: 6px 8px;
        gap: 8px;
    }
    
    .step-number {
        min-width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .calc-times-grid {
        padding: 8px;
        margin: 12px 0;
    }
    
    .calc-form .form-group {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .time-input-group {
        padding: 6px 8px;
        gap: 4px;
    }
    
    .time-minutes, .time-seconds {
        width: 40px;
        padding: 4px 2px;
        font-size: 13px;
    }
    
    .time-separator {
        font-size: 14px;
    }
    
    .time-unit {
        font-size: 12px;
    }
    
    .time-examples {
        padding: 2px 4px;
        margin-top: 3px;
    }
    
    .time-examples small {
        font-size: 9px;
    }
    
    .calc-form .form-group label {
        font-size: 0.85rem;
    }
    
    .calc-form .form-group .label-main {
        margin-bottom: 1px;
    }
    
    .calc-form .form-group label i {
        font-size: 0.9rem;
    }
}

/* Recovery info styling */
.recovery-info {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 5px;
    font-size: 0.9em;
}

/* TR Display styling */
.tr-display {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
    border: 2px solid #36675a;
    border-radius: var(--border-radius);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.tr-display.visible {
    opacity: 1;
    transform: translateY(0);
}

.tr-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.tr-info i {
    font-size: 1.2em;
    color: var(--primary-color);
}

.tr-info strong {
    color: var(--text-dark);
    font-size: 1.1em;
}

/* Enhanced form group for main 400m input */
.form-group-main {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 100%);
    border: 2px solid #e6f7ff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.form-group-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #4ade80);
}

.form-group-main:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 103, 90, 0.15);
}

/* Update calc-times-grid for single item layout */
.calc-times-grid {
    display: block;
    gap: 0;
}

@media (max-width: 768px) {
    .recovery-info {
        font-size: 0.85em;
        margin-top: 3px;
    }
    
    .tr-display {
        padding: 12px;
        margin-top: 12px;
    }
    
    .tr-info {
        gap: 8px;
        font-size: 0.9em;
    }
    
    .form-group-main {
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .recovery-info {
        font-size: 0.8em;
    }
    
    .tr-display {
        padding: 10px;
    }
    
    .tr-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }
    
    .form-group-main {
        padding: 12px;
    }
} 

/* Désactiver les effets de hover sur les appareils tactiles */
@media (hover: none) {
    .zone-card:hover,
    .zone-distance:hover,
    .zone-card:hover .zone-number,
    .zone-card:hover .zone-time {
        transform: none !important;
        box-shadow: none !important;
        border-color: initial !important;
        background: initial !important;
    }
}

/* Zone distances display */
.zone-distances {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.zone-distances h4 {
    font-size: 0.9em;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
}

.zone-distance {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background: rgba(54, 103, 90, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(54, 103, 90, 0.1);
    transition: all 0.2s ease;
}

.zone-distance:hover {
    background: rgba(54, 103, 90, 0.08);
    border-color: rgba(54, 103, 90, 0.2);
}

.distance-label {
    font-size: 0.75em;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.distance-time {
    font-size: 0.85em;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2px 0;
}

.distance-margin {
    font-size: 0.7em;
    color: #6b7280;
    font-style: italic;
}

/* Enhanced zone time display */
.zone-time {
    margin: 10px 0;
}

.zone-time-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 100%);
    border-radius: 8px;
    border: 1px solid rgba(54, 103, 90, 0.15);
}

.time-label {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

.time-value {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-dark);
}

.time-margin {
    font-size: 0.8em;
    color: #6b7280;
    font-style: italic;
}

/* Enhanced zone description */
.zone-description {
    margin: 15px 0 10px;
}

.zone-description p {
    font-size: 0.9em;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* Enhanced zone objectif */
.zone-objectif {
    font-size: 0.85em;
    color: var(--text-dark);
    line-height: 1.4;
    background: rgba(54, 103, 90, 0.05);
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.zone-objectif strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .distances-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 6px;
    }
    
    .zone-distance {
        padding: 6px;
    }
    
    .distance-label {
        font-size: 0.7em;
    }
    
    .distance-time {
        font-size: 0.8em;
    }
    
    .distance-margin {
        font-size: 0.65em;
    }
    
    .zone-time-main {
        padding: 8px;
        gap: 6px;
    }
    
    .time-label {
        font-size: 0.8em;
    }
    
    .time-value {
        font-size: 1em;
    }
    
    .zone-distances h4 {
        font-size: 0.85em;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .distances-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 4px;
    }
    
    .zone-distance {
        padding: 4px;
    }
    
    .distance-label {
        font-size: 0.65em;
    }
    
    .distance-time {
        font-size: 0.75em;
    }
    
    .distance-margin {
        font-size: 0.6em;
    }
    
    .zone-time-main {
        flex-direction: column;
        gap: 4px;
        padding: 6px;
    }
    
    .time-label {
        font-size: 0.75em;
    }
    
    .time-value {
        font-size: 0.95em;
    }
    
    .zone-distances {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .zone-distances h4 {
        font-size: 0.8em;
        margin-bottom: 6px;
    }
    
    .zone-description p {
        font-size: 0.85em;
    }
    
    .zone-objectif {
        font-size: 0.8em;
        padding: 8px;
    }
}

/* ========================================================================== */
/* ================ PAGE STAGE NATATION + NUTRITION ========================= */
/* ========================================================================== */

/* Stage Hero Section */
.stage-hero {
    position: relative;
    min-height: 100vh;
    background-image: url('images/Natation.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.stage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(54, 103, 90, 0.92) 0%,
        rgba(44, 62, 80, 0.88) 50%,
        rgba(30, 50, 70, 0.9) 100%
    );
    z-index: 1;
}

.stage-hero .container {
    position: relative;
    z-index: 2;
}

.stage-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-white);
}

/* Stage Badge - Urgence */
.stage-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

.stage-badge .badge-pulse {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.stage-badge .badge-text {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6);
    }
}

.stage-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stage-hero-location {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stage-hero-location i {
    color: #ef4444;
}

/* Stage Info Badges Grid */
.stage-info-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

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

.info-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.info-badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.info-badge-item i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    min-width: 30px;
    text-align: center;
}

.info-badge-item div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.badge-value {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.info-badge-price {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.3));
    border-color: rgba(34, 197, 94, 0.4);
}

.info-badge-price .badge-value {
    color: #86efac;
    font-size: 20px;
}

/* Stage Hero CTA */
.stage-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-stage-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-stage-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
    color: white;
}

.btn-stage-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-stage-secondary:hover {
    transform: translateY(-3px);
    background: #1da851;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Stage Hero Notice */
.stage-hero-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.stage-hero-notice i {
    color: #fbbf24;
    animation: bell-ring 2s ease-in-out infinite;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
}

/* Stage Concept Section */
.stage-concept {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Concept Grid - 4 cartes */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.concept-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(54, 103, 90, 0.15);
}

/* Carte Featured - Objectif */
.concept-card.concept-card-featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(54, 103, 90, 0.25);
}

.concept-card.concept-card-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(54, 103, 90, 0.35);
}

.concept-featured-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.concept-featured-text {
    flex: 1;
}

.concept-card.concept-card-featured .concept-icon {
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.concept-card.concept-card-featured .concept-icon i {
    color: white;
}

.concept-card.concept-card-featured h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.concept-card.concept-card-featured p {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

.concept-card.concept-card-featured strong {
    color: #fef08a;
    font-weight: 700;
}

.concept-icon {
    width: 60px;
    height: 60px;
    background: rgba(54, 103, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.concept-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.concept-icon .concept-partner-logo {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.concept-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.concept-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.concept-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.concept-card strong {
    color: var(--primary-color);
}

.concept-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Stage Programme Section */
.stage-programme {
    padding: 100px 0;
    background: white;
}

/* Programme - Schedule Tabs System */
.schedule-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-natation { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.legend-nutrition { background: linear-gradient(135deg, #16a34a, #15803d); }
.legend-renfo { background: linear-gradient(135deg, #ea580c, #c2410c); }
.legend-recovery { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.legend-repas { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* Tabs */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.schedule-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.schedule-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.schedule-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 103, 90, 0.15);
}

.schedule-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(54, 103, 90, 0.3);
}

.schedule-tab.active::before {
    background: rgba(255, 255, 255, 0.3);
}

.tab-day {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: inherit;
}

.tab-date {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.7;
}

.tab-label {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(54, 103, 90, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.schedule-tab.active .tab-day,
.schedule-tab.active .tab-date {
    color: white;
}

.schedule-tab.active .tab-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Schedule Hint */
.schedule-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0.7;
}

.schedule-hint i {
    margin-right: 6px;
    font-size: 0.8rem;
}

/* Schedule Content */
.schedule-content {
    max-width: 1100px;
    margin: 0 auto;
}

.schedule-day {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.schedule-day.active {
    display: block;
}

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

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

.schedule-grid-full {
    grid-template-columns: repeat(4, 1fr);
}

/* Schedule Cards */
.schedule-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e7eb;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(148, 163, 184, 0.15);
    color: #64748b;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.card-time i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.card-body {
    text-align: center;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.card-icon-wrapper i {
    font-size: 24px;
    color: var(--primary-color);
}

.schedule-card:hover .card-icon-wrapper {
    transform: scale(1.1);
}

.card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.card-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: white;
    background: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 12px;
}

.card-duration i {
    font-size: 0.75rem;
}

/* Card Types */
.schedule-card-natation::before { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.schedule-card-natation .card-icon-wrapper { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.schedule-card-natation .card-icon-wrapper i { color: white; }
.schedule-card-natation .card-duration { background: #2563eb; }

.schedule-card-nutrition::before { background: linear-gradient(90deg, #16a34a, #22c55e); }
.schedule-card-nutrition .card-icon-wrapper { background: linear-gradient(135deg, #16a34a, #15803d); }
.schedule-card-nutrition .card-icon-wrapper i { color: white; }
.schedule-card-nutrition .card-duration { background: #16a34a; }

.schedule-card-renfo::before { background: linear-gradient(90deg, #ea580c, #f97316); }
.schedule-card-renfo .card-icon-wrapper { background: linear-gradient(135deg, #ea580c, #c2410c); }
.schedule-card-renfo .card-icon-wrapper i { color: white; }
.schedule-card-renfo .card-duration { background: #ea580c; }

.schedule-card-recovery::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.schedule-card-recovery .card-icon-wrapper { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.schedule-card-recovery .card-icon-wrapper i { color: white; }
.schedule-card-recovery .card-duration { background: #8b5cf6; }

.schedule-card-repas::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.schedule-card-repas .card-icon-wrapper { background: linear-gradient(135deg, #f59e0b, #d97706); }
.schedule-card-repas .card-icon-wrapper i { color: white; }

.schedule-card-welcome::before { background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); }
.schedule-card-welcome .card-icon-wrapper { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); }
.schedule-card-welcome .card-icon-wrapper i { color: white; }

.schedule-card-optional {
    background: #fafafa;
    border: 2px dashed #d1d5db;
}
.schedule-card-optional::before { background: linear-gradient(90deg, #94a3b8, #cbd5e1); }
.schedule-card-optional .card-icon-wrapper { background: linear-gradient(135deg, #94a3b8, #64748b); }
.schedule-card-optional .card-icon-wrapper i { color: white; }

.schedule-card-end::before { background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); }
.schedule-card-end .card-icon-wrapper { background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); }
.schedule-card-end .card-icon-wrapper i { color: white; }

.schedule-card-small {
    padding: 20px;
}

.schedule-card-small .card-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}

.schedule-card-small .card-icon-wrapper i {
    font-size: 20px;
}

.schedule-card-small h4 {
    font-size: 1rem;
}

/* Coming Soon Message */
.schedule-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 60px 20px;
}

.coming-soon-content {
    text-align: center;
    max-width: 500px;
}

.coming-soon-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.7;
}

.coming-soon-content h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Programme Summary */
.programme-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    padding: 40px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.summary-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-icon i {
    font-size: 20px;
    color: white;
}

.summary-content {
    display: flex;
    flex-direction: column;
}

.summary-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.summary-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Stage Hébergement Section */
.stage-hebergement {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
}

.hebergement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.hebergement-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hebergement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hebergement-main {
    grid-column: span 1;
}

.hebergement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.hebergement-icon i {
    font-size: 24px;
    color: white;
}

.hebergement-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.hebergement-main .hebergement-icon {
    width: auto;
    height: auto;
    min-height: 80px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hebergement-main .hebergement-icon img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 120px;
    padding: 0;
    object-fit: contain;
}

.hebergement-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.hebergement-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.hebergement-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.hebergement-location i {
    color: var(--primary-color);
}

/* Recovery section */
.hebergement-recovery {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 16px;
    padding: 30px;
}

.hebergement-recovery h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recovery-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recovery-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recovery-item:hover {
    background: rgba(255, 255, 255, 0.25);
}

.recovery-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recovery-icon i {
    font-size: 18px;
    color: white;
}

.recovery-item span {
    font-weight: 600;
    font-size: 1rem;
}

/* Repas list */
.repas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.repas-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
}

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

.repas-list li strong {
    color: var(--primary-color);
}

/* Stage Encadrement Section */
.stage-encadrement {
    padding: 100px 0;
    background: white;
}

.encadrement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.encadrant-wrapper {
    display: flex;
    flex-direction: column;
}

.encadrant-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
}

.encadrant-card {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.encadrant-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.encadrant-image {
    width: 150px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

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

.encadrant-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.encadrant-placeholder i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.5);
}

.encadrant-info {
    flex: 1;
}

.encadrant-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.encadrant-role {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.encadrant-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.encadrant-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.encadrant-expertise span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    background: rgba(54, 103, 90, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.encadrant-expertise span i {
    font-size: 12px;
}

/* Partenaire */
.stage-partenaire {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
}

.stage-partenaire p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partenaire-logo {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .partenaire-logo {
        height: 80px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .partenaire-logo {
        height: 60px;
        max-width: 150px;
    }
}

.partenaire-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Stage Matériel Section */
.stage-materiel {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
}

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

.materiel-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.materiel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.materiel-required {
    border-top: 4px solid var(--primary-color);
}

.materiel-optional {
    border-top: 4px solid #94a3b8;
    background: #fafafa;
}

.materiel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.materiel-header i {
    font-size: 24px;
    color: var(--primary-color);
}

.materiel-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.materiel-badge {
    font-size: 0.7rem;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.materiel-badge-optional {
    background: #94a3b8;
}

.materiel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.materiel-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.materiel-list li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.materiel-list li i.fa-info-circle {
    color: #94a3b8;
}

.materiel-optional-item {
    color: var(--text-light) !important;
}

.materiel-optional-item span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.materiel-note {
    margin-top: 15px;
    padding: 12px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.materiel-note i {
    color: #f59e0b;
    margin-top: 2px;
}

/* Stage Inscription Section */
.stage-inscription {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.stage-inscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.inscription-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.inscription-header {
    margin-bottom: 40px;
}

.inscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.inscription-badge i {
    color: #fbbf24;
}

.inscription-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.inscription-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Inscription Recap */
.inscription-recap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.recap-item i {
    font-size: 24px;
    opacity: 0.9;
}

.recap-item div {
    display: flex;
    flex-direction: column;
}

.recap-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recap-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.recap-price {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.recap-price .recap-value {
    color: #86efac;
    font-size: 1.3rem;
}

/* Inscription Includes */
.inscription-includes {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.inscription-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.inscription-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.inscription-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.inscription-includes li i {
    color: #86efac;
}

/* Inscription CTA */
.inscription-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.inscription-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

.inscription-notice i {
    color: #fbbf24;
}

.inscription-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-inscription-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-inscription-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-inscription-primary.btn-disabled {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    cursor: not-allowed;
}

.btn-inscription-primary.btn-disabled:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-inscription-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-inscription-secondary:hover {
    transform: translateY(-3px);
    background: #1da851;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.inscription-contact {
    font-size: 0.9rem;
    opacity: 0.9;
}

.inscription-contact a {
    color: #86efac;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.inscription-contact a:hover {
    text-decoration: underline;
}

/* ================== STAGE PAGE RESPONSIVE ================== */

@media (max-width: 1024px) {
    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concept-featured-content {
        flex-direction: column;
        text-align: center;
    }
    
    .concept-card.concept-card-featured .concept-icon {
        margin: 0 auto;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hebergement-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hebergement-main {
        grid-column: span 2;
    }
    
    .encadrement-grid {
        grid-template-columns: 1fr;
    }
    
    .materiel-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .programme-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stage-hero {
        padding: 100px 15px 60px;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .stage-hero h1 {
        font-size: 2rem;
    }
    
    .stage-hero-location {
        font-size: 1.1rem;
    }
    
    .stage-info-badges {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-badge-item {
        padding: 12px 15px;
    }
    
    .stage-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-stage-primary,
    .btn-stage-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .concept-card {
        padding: 25px;
    }
    
    .concept-card.concept-card-featured {
        padding: 30px;
    }
    
    .concept-card.concept-card-featured h3 {
        color: #ffffff;
        font-size: 1.3rem;
    }
    
    .concept-card.concept-card-featured p {
        color: #ffffff;
        font-size: 1rem;
    }
    
    .schedule-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .schedule-tab {
        padding: 15px 25px;
        flex: 1;
        min-width: 140px;
    }
    
    .tab-day {
        font-size: 1rem;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .schedule-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-legend {
        padding: 12px 20px;
        gap: 15px;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
    
    .programme-summary {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
        gap: 15px;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .hebergement-grid {
        grid-template-columns: 1fr;
    }
    
    .hebergement-main {
        grid-column: auto;
    }
    
    .encadrant-title {
        text-align: center;
    }
    
    .encadrant-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .encadrant-image {
        width: 120px;
        height: 150px;
        margin: 0 auto;
    }
    
    .encadrant-expertise {
        justify-content: center;
    }
    
    .materiel-grid {
        grid-template-columns: 1fr;
    }
    
    .inscription-recap {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .inscription-includes ul {
        grid-template-columns: 1fr;
    }
    
    .inscription-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-inscription-primary,
    .btn-inscription-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stage-hero {
        padding: 80px 15px 50px;
    }
    
    .stage-badge {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .stage-hero h1 {
        font-size: 1.7rem;
    }
    
    .schedule-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .schedule-tab {
        padding: 12px 20px;
        flex-direction: row;
        justify-content: space-between;
        min-width: auto;
        color: var(--text-dark);
    }
    
    .schedule-tab.active {
        color: white;
    }
    
    .tab-day {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .tab-date {
        font-size: 0.85rem;
    }
    
    .tab-label {
        margin-top: 0;
        margin-left: auto;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .schedule-grid-full {
        grid-template-columns: 1fr;
    }
    
    .schedule-card {
        padding: 20px;
    }
    
    .card-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .card-icon-wrapper i {
        font-size: 20px;
    }
    
    .card-body h4 {
        font-size: 1rem;
    }
    
    .schedule-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-radius: 12px;
    }
    
    .programme-summary {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }
    
    .summary-number {
        font-size: 1.5rem;
    }
    
    .summary-label {
        font-size: 0.75rem;
    }
    
    .recap-item {
        padding: 15px;
    }
    
    .inscription-includes {
        padding: 20px;
    }
}

/* ================== HOMEPAGE STAGE TEASING CARD ================== */

.stage-upcoming-card {
    background: linear-gradient(135deg, rgba(54, 103, 90, 0.95), rgba(30, 50, 70, 0.95));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.stage-upcoming-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 350px;
}

.stage-upcoming-image {
    position: relative;
    overflow: hidden;
}

.stage-upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stage-upcoming-card:hover .stage-upcoming-image img {
    transform: scale(1.05);
}

.stage-upcoming-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(54, 103, 90, 0.8) 100%);
}

.stage-upcoming-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.stage-upcoming-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.stage-upcoming-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.stage-upcoming-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stage-upcoming-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stage-upcoming-location i {
    color: #ef4444;
}

.stage-upcoming-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.stage-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.stage-detail-item i {
    opacity: 0.8;
}

.stage-detail-item.stage-price {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.stage-detail-item.stage-price span {
    color: #86efac;
    font-weight: 600;
}

.stage-upcoming-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-stage-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 14px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-stage-discover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-stage-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-stage-contact:hover {
    transform: translateY(-2px);
    background: #1da851;
    color: white;
}

@media (max-width: 768px) {
    .stage-upcoming-content {
        grid-template-columns: 1fr;
    }
    
    .stage-upcoming-image {
        height: 200px;
    }
    
    .stage-upcoming-overlay {
        background: linear-gradient(180deg, transparent 0%, rgba(54, 103, 90, 0.9) 100%);
    }
    
    .stage-upcoming-info {
        padding: 25px;
    }
    
    .stage-upcoming-info h3 {
        font-size: 1.4rem;
    }
    
    .stage-upcoming-cta {
        flex-direction: column;
    }
    
    .btn-stage-discover,
    .btn-stage-contact {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================================================== */
/* ================ FORMULAIRE D'INSCRIPTION STAGE ========================== */
/* ========================================================================== */

/* Header simplifié */
.header-form {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-form .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-form .logo img {
    height: 50px;
}

.btn-back-stage {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-back-stage:hover {
    background: var(--primary-color);
    color: white;
}

/* Main du formulaire */
.form-main {
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    padding-top: 20px;
    background: linear-gradient(180deg, #f8fafa 0%, #eef2f1 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* En-tête du formulaire */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-dates {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
}

/* Barre de progression formulaire */
.form-progress-container {
    margin-bottom: 40px;
    position: relative;
}

.form-progress-bar {
    position: absolute;
    top: 18px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    z-index: 0;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.progress-step.active .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-size: 0;
}

.progress-step.completed .step-circle::after {
    content: '✓';
    font-size: 16px;
    font-weight: bold;
}

.step-label {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    transition: color 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--primary-color);
    font-weight: 500;
}

/* Formulaire multi-étapes */
.multi-step-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-step {
    display: none;
    padding: 40px;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

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

/* En-tête d'étape */
.step-header {
    text-align: center;
    margin-bottom: 35px;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 28px;
    color: white;
}

.step-header h2 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-header p {
    color: var(--text-light);
}

/* Grilles de formulaire */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Groupes de formulaire */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: #ef4444;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 0.85rem;
}

/* Inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #1a1a1a;
}

/* Input date avec icône */
.form-group input[type="date"] {
    position: relative;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
    margin-right: -5px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Wrapper pour date avec icône personnalisée */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper input {
    padding-right: 45px;
}

.date-input-wrapper::after {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(54, 103, 90, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    color: #1a1a1a;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    color: #1a1a1a;
}

/* Input avec préfixe */
.input-with-prefix {
    display: flex;
    align-items: stretch;
}

.input-prefix {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: #666;
    font-weight: 500;
}

.input-with-prefix input {
    border-radius: 0 12px 12px 0 !important;
}

/* Checkboxes personnalisées */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label.error .checkbox-custom {
    border-color: #ef4444;
}

/* Grille de checkboxes */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Champs conditionnels */
.conditional-fields {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    border-left: 4px solid var(--primary-color);
}

.conditional-fields.hidden {
    display: none;
}

.conditional-inline {
    margin-top: 10px;
    padding-left: 34px;
}

.conditional-inline.hidden {
    display: none;
}

.conditional-inline input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: white;
}

/* Section titre */
.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section-title i {
    font-size: 1rem;
}

/* Séparateur */
.form-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 35px 0;
}

/* Questions de santé */
.health-questions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.health-question {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 5px;
}

/* Contact urgence */
.emergency-contact {
    background: linear-gradient(135deg, #fef3c7, #fef9c3);
    padding: 25px;
    border-radius: 16px;
    border-left: 5px solid #f59e0b;
    margin-top: 25px;
}

.emergency-contact h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b45309;
    margin-bottom: 15px;
}

/* Priorités */
.priorities-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.priority-input {
    display: flex;
    align-items: center;
    gap: 12px;
}

.priority-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.priority-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: white;
}

/* Cartes d'options */
.options-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.option-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--primary-color);
}

.option-text {
    display: flex;
    flex-direction: column;
}

.option-text strong {
    font-size: 1rem;
}

.option-text small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.option-sub {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #d1d5db;
}

.option-sub.hidden {
    display: none;
}

/* Alertes */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.alert i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.alert-info {
    background: #e0f2fe;
    color: #0369a1;
}

.alert-warning {
    background: #fef3c7;
    color: #b45309;
}

/* Récap carte */
.recap-card {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    padding: 25px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
}

.recap-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.recap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recap-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #d1fae5;
}

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

.recap-list li i {
    color: var(--primary-color);
    width: 20px;
}

/* Checkboxes de validation */
.validation-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.validation-checkbox {
    background: #f8f9fa;
    border-radius: 12px;
}

.validation-checkbox a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Navigation formulaire */
.form-navigation {
    display: flex;
    justify-content: space-between;
    padding: 25px 40px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.btn-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-prev {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e5e7eb;
}

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

.btn-next {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
}

.btn-next:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(54, 103, 90, 0.3);
}

.btn-submit {
    display: none;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    margin-left: auto;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(22, 163, 74, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Message de succès */
.success-message {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.success-message.hidden {
    display: none;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon i {
    font-size: 50px;
    color: white;
}

.success-message h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.success-payment-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.payment-notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.payment-notice-content {
    flex: 1;
    text-align: left;
    color: #78350f;
    line-height: 1.6;
}

.payment-notice-content strong {
    color: #92400e;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.success-actions {
    margin-top: 30px;
}

/* Footer simplifié */
.footer-simple {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    text-align: center;
}

/* Classes utilitaires */
.hidden {
    display: none !important;
}

/* Responsive formulaire */
@media (max-width: 768px) {
    .form-main {
        padding: 20px 15px;
    }
    
    .form-header h1 {
        font-size: 1.6rem;
    }
    
    .form-progress-bar {
        top: 15px;
        left: 30px;
        right: 30px;
    }
    
    .progress-steps {
        gap: 5px;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .form-step {
        padding: 25px 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .step-header h2 {
        font-size: 1.3rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .options-cards {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn-form {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .btn-prev {
        order: 2;
        flex: 1;
    }
    
    .btn-next,
    .btn-submit {
        order: 1;
        flex: 1;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-back-stage span {
        display: none;
    }
    
    .btn-back-stage i {
        margin: 0;
    }
}

/* Inscriptions ouvertes - styles positifs */
.stage-hero-notice-open {
    background: rgba(22, 163, 74, 0.2) !important;
    border-color: rgba(22, 163, 74, 0.5) !important;
}

.stage-hero-notice-open i {
    color: #16a34a;
}

.inscription-notice-open {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
    border-color: #16a34a !important;
}

.inscription-notice-open i {
    color: #16a34a;
}

.btn-inscription-primary:not(.btn-disabled) {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    cursor: pointer;
    pointer-events: auto;
}

.btn-inscription-primary:not(.btn-disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
}