/* ========================================
   RESET & BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--c-text);
    background-color: var(--c-surface);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}
.logo-img {
    height: 50px; /* ajuste selon ton header */
    width: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   TEASER PREVENTE TEE-SHIRT
======================================== */
.teeshirt-teaser {
    position: relative;
    max-width: 900px;
    margin: 56px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sh-brand);
    border: 2px solid var(--c-border-brand);
}

.teeshirt-teaser-carousel {
    position: relative;
    height: 420px;
}

.teeshirt-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--c-surface-alt);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: saturate(1.08) contrast(1.03);
}

.teeshirt-slide.active {
    opacity: 1;
}

.teeshirt-teaser-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    background: linear-gradient(
        to top,
        oklch(12% 0.02 194 / 0.82) 0%,
        oklch(44% 0.16 194 / 0.35) 55%,
        transparent 100%
    );
    color: var(--c-raised);
}

.teeshirt-badge {
    display: inline-block;
    background: var(--grad-brand);
    color: var(--c-raised);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
    box-shadow: var(--sh-brand);
}

.teeshirt-teaser-overlay h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--c-raised);
    margin: 0 0 8px;
}

.teeshirt-teaser-overlay p {
    margin: 0 0 20px;
    opacity: 0.92;
    font-size: 15px;
}

.teeshirt-teaser-overlay .btn {
    width: fit-content;
    cursor: pointer;
}

.teeshirt-teaser-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 7px;
    z-index: 2;
}

.teeshirt-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: oklch(99.5% 0 0 / 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.teeshirt-dot.active {
    background: var(--c-raised);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .teeshirt-teaser-carousel { height: 320px; }
    .teeshirt-teaser-overlay { padding: 24px; }
}

@media (max-width: 480px) {
    .teeshirt-teaser-carousel { height: 260px; }
}
/* ========================================
   DESIGN TOKENS — OKLCH
======================================== */
:root {
    /* Brand teal — richer, intentional */
    --c-brand:        oklch(60% 0.17 194);
    --c-brand-deep:   oklch(44% 0.16 194);
    --c-brand-mid:    oklch(73% 0.12 194);
    --c-brand-subtle: oklch(94.5% 0.04 194);

    /* Surfaces — warm-tinted, not cold gray */
    --c-surface:      oklch(98.5% 0.005 80);
    --c-surface-alt:  oklch(96% 0.011 75);
    --c-raised:       oklch(99.5% 0.003 80);

    /* Text — warm dark */
    --c-text:         oklch(17% 0.025 65);
    --c-text-soft:    oklch(46% 0.03 70);
    --c-text-faint:   oklch(65% 0.02 75);

    /* Borders */
    --c-border:       oklch(89% 0.012 80);
    --c-border-brand: oklch(83% 0.09 194);

    /* Shadows */
    --sh-sm:    0 2px 8px oklch(17% 0.025 65 / 0.07);
    --sh-md:    0 6px 24px oklch(17% 0.025 65 / 0.10);
    --sh-lg:    0 12px 40px oklch(17% 0.025 65 / 0.12);
    --sh-brand: 0 6px 24px oklch(60% 0.17 194 / 0.22);

    /* Dark footer */
    --c-footer: oklch(12% 0.02 194);

    /* Brand gradient — used only for hero overlay, comparison header, CTAs */
    --grad-brand: linear-gradient(135deg, var(--c-brand-deep), var(--c-brand));
}

/* ========================================
   LAYOUT
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--c-surface-alt);
}

/* ========================================
   HEADER STICKY
======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: oklch(98.5% 0.005 80 / 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

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

.logo-img {
    height: 44px;
    width: auto;
    display: block;
}

#nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

#nav a {
    color: var(--c-text);
    font-weight: 500;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.22s ease;
    position: relative;
}

#nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--c-brand);
    border-radius: 2px;
    transition: width 0.25s ease;
}

#nav a:hover {
    color: var(--c-brand);
    background: oklch(60% 0.17 194 / 0.06);
}

#nav a:hover::after {
    width: 60%;
}

.btn-contact {
    padding: 9px 22px;
    background: var(--grad-brand);
    color: var(--c-raised);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: var(--sh-brand);
    white-space: nowrap;
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--c-brand), var(--c-brand-mid));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px oklch(60% 0.17 194 / 0.32);
}

/* Burger menu */
.burger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--c-text);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ========================================
   HERO SECTION — CARROUSEL
======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--c-raised);
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        oklch(44% 0.16 194 / 0.82) 0%,
        oklch(60% 0.17 194 / 0.68) 50%,
        oklch(73% 0.12 194 / 0.58) 100%
    );
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 840px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 24px oklch(0% 0 0 / 0.28);
    letter-spacing: -0.5px;
    line-height: 1.12;
}

.hero p {
    font-size: clamp(17px, 2vw, 21px);
    margin-bottom: 48px;
    font-weight: 300;
    opacity: 0.92;
    letter-spacing: 0.2px;
}

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

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: oklch(99.5% 0 0 / 0.42);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicator.active {
    background: var(--c-raised);
    transform: scale(1.3);
    border-color: oklch(99.5% 0 0 / 0.5);
    width: 28px;
    border-radius: 6px;
}

.hero-indicator:hover {
    background: oklch(99.5% 0 0 / 0.72);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.28s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-family: inherit;
}

.btn-primary {
    background: var(--grad-brand);
    color: var(--c-raised);
    box-shadow: var(--sh-brand);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--c-brand), var(--c-brand-mid));
    transform: translateY(-3px);
    box-shadow: 0 12px 32px oklch(60% 0.17 194 / 0.38);
}

.btn-secondary {
    background: oklch(99.5% 0 0 / 0.14);
    color: var(--c-raised);
    border: 2px solid oklch(99.5% 0 0 / 0.78);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--c-raised);
    color: var(--c-brand);
    border-color: var(--c-raised);
}

/* ========================================
   TYPOGRAPHY
======================================== */
h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 56px;
    text-align: center;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--c-text);
}

/* ========================================
   QUI SOMMES-NOUS
======================================== */
.intro-text {
    max-width: 800px;
    margin: -16px auto 56px;
    text-align: center;
    font-size: 17px;
    color: var(--c-text-soft);
    line-height: 1.85;
}

.intro-text p {
    margin-bottom: 18px;
}

/* Engagements: numbered list, no card boxes */
.engagements-grid {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    counter-reset: engagement;
}

.engagement-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 0 24px;
    padding: 40px 0;
    border-bottom: 1px solid var(--c-border);
    counter-increment: engagement;
    text-align: left;
    background: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    transition: none;
}

.engagement-card:last-child {
    border-bottom: none;
}

.engagement-card::before {
    content: "0" counter(engagement);
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 44px;
    font-weight: 800;
    color: var(--c-brand);
    opacity: 0.35;
    line-height: 1;
    padding-top: 4px;
    align-self: start;
    transition: opacity 0.25s ease;
}

.engagement-card:hover::before {
    opacity: 0.65;
}

.engagement-card .icon {
    display: none;
}

.engagement-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 21px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px;
}

.engagement-card p {
    grid-column: 2;
    grid-row: 2;
    color: var(--c-text-soft);
    line-height: 1.7;
    font-size: 15.5px;
    margin: 0;
}

/* ========================================
   APA VS COACH SPORTIF
======================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 980px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sh-md);
    transition: all 0.35s ease;
}

.comparison-card--apa {
    border: 2px solid var(--c-brand);
}

.comparison-card--apa:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-brand);
}

.comparison-card--coach {
    border: 2px solid var(--c-border);
}

.comparison-card--coach:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-md);
}

.comparison-header {
    padding: 36px 30px;
    text-align: center;
}

.comparison-card--apa .comparison-header {
    background: var(--grad-brand);
}

.comparison-card--coach .comparison-header {
    background: var(--c-surface-alt);
}

.comparison-icon {
    font-size: 48px;
    margin-bottom: 14px;
    display: block;
}

.comparison-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.comparison-card--apa .comparison-header h3 {
    color: var(--c-raised);
}

.comparison-card--coach .comparison-header h3 {
    color: var(--c-text);
}

.comparison-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.comparison-card--apa .comparison-tag {
    background: oklch(99.5% 0 0 / 0.2);
    color: var(--c-raised);
}

.comparison-card--coach .comparison-tag {
    background: var(--c-border);
    color: var(--c-text-soft);
}

.comparison-list {
    list-style: none;
    padding: 8px 28px 24px;
    background: var(--c-raised);
}

.comparison-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-soft);
    font-size: 14.5px;
    line-height: 1.5;
}

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

.comparison-list li::before {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
}

.comparison-card--apa .comparison-list li::before {
    content: '✓';
    color: var(--c-brand);
}

.comparison-card--coach .comparison-list li::before {
    content: '–';
    color: var(--c-text-faint);
}

/* ========================================
   PARCOURS (TIMELINE)
======================================== */
.timeline {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--c-brand) 0%, var(--c-brand-mid) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--grad-brand);
    color: var(--c-raised);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: var(--sh-brand);
}

.timeline-content {
    background: var(--c-raised);
    padding: 28px 30px;
    border-radius: 16px;
    box-shadow: var(--sh-sm);
    flex: 1;
    margin: 0 28px;
    max-width: 370px;
    transition: box-shadow 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--sh-brand);
}

.timeline-content h3 {
    color: var(--c-brand);
    margin-bottom: 8px;
    font-size: 18px;
}

.timeline-content p {
    color: var(--c-text-soft);
    font-size: 15px;
    line-height: 1.6;
}

.timeline-footer {
    text-align: center;
    font-size: 17px;
    font-style: italic;
    color: var(--c-text-soft);
    margin-top: 30px;
    font-weight: 300;
}

/* ========================================
   NOTICE PRESCRIPTION
======================================== */
.prescription-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--c-brand-subtle);
    border: 2px solid var(--c-border-brand);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--sh-brand);
}

.prescription-notice .prescription-icon {
    font-size: 34px;
    flex-shrink: 0;
    line-height: 1;
}

.prescription-notice p {
    color: var(--c-text);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}

.prescription-notice a {
    color: var(--c-brand-deep);
    font-weight: 600;
    text-decoration: underline;
}

/* ========================================
   TARIFS
======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 10px;
    align-items: start;
}

.pricing-card {
    background: var(--c-raised);
    padding: 38px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: all 0.35s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-brand);
    border-color: var(--c-border-brand);
}

.pricing-card--featured {
    border-color: var(--c-brand);
    background: linear-gradient(180deg, var(--c-brand-subtle) 0%, var(--c-raised) 100%);
    box-shadow: 0 10px 36px oklch(60% 0.17 194 / 0.18);
    transform: scale(1.04);
}

.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 20px 50px oklch(60% 0.17 194 / 0.28);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-brand);
    color: var(--c-raised);
    padding: 5px 22px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--sh-brand);
}

.pricing-icon {
    font-size: 40px;
    margin-bottom: 2px;
}

.pricing-card h3 {
    color: var(--c-text);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 0;
}

.pricing-price {
    font-size: 52px;
    font-weight: 800;
    color: var(--c-brand);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--c-text-soft);
    letter-spacing: 0;
}

.pricing-label {
    display: inline-block;
    background: var(--c-brand-subtle);
    color: var(--c-brand-deep);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--c-border-brand);
}

.pricing-features {
    list-style: none;
    width: 100%;
    text-align: left;
    margin: 4px 0;
}

.pricing-features li {
    display: flex;
    align-items: baseline;
    gap: 9px;
    padding: 9px 0;
    color: var(--c-text-soft);
    border-bottom: 1px solid var(--c-border);
    font-size: 14.5px;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    color: var(--c-brand);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ========================================
   ÉQUIPE
======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--c-raised);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all 0.35s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-brand);
}

.team-photo {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-card h3 {
    margin: 20px 0 4px;
    color: var(--c-text);
    font-size: 18px;
}

.team-card .role {
    color: var(--c-brand);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.team-card .bio {
    padding: 0 20px 24px;
    color: var(--c-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   GALERIE
======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: var(--sh-sm);
    transition: all 0.35s ease;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, oklch(60% 0.17 194 / 0.65), oklch(44% 0.16 194 / 0.55));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 36px oklch(60% 0.17 194 / 0.28);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: oklch(8% 0.02 194 / 0.97);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 60px oklch(60% 0.17 194 / 0.18);
}

.lightbox-close {
    position: absolute;
    top: 28px;
    right: 36px;
    font-size: 38px;
    color: var(--c-raised);
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--c-brand-mid);
    transform: rotate(90deg);
}

/* ========================================
   AVIS
======================================== */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 45px;
}

.avis-card {
    background: var(--c-raised);
    padding: 36px;
    border-radius: 18px;
    box-shadow: var(--sh-sm);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.avis-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 88px;
    color: var(--c-brand);
    opacity: 0.10;
    font-family: Georgia, serif;
    line-height: 1;
}

.avis-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-brand);
}

.stars {
    color: oklch(72% 0.17 68);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.avis-text {
    font-style: italic;
    color: var(--c-text-soft);
    margin-bottom: 20px;
    line-height: 1.75;
    font-size: 15px;
}

.avis-author {
    font-weight: 600;
    color: var(--c-brand);
    font-size: 14px;
}

.avis-cta {
    text-align: center;
}

/* Bandeau note Google */
.google-rating-banner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--c-raised);
    border: 2px solid var(--c-border);
    border-radius: 16px;
    padding: 20px 36px;
    margin: -20px auto 44px;
    max-width: 380px;
    box-shadow: var(--sh-sm);
}

.google-g {
    flex-shrink: 0;
}

.google-rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.google-rating-score {
    font-size: 38px;
    font-weight: 800;
    color: var(--c-text);
    line-height: 1;
}

.google-rating-stars {
    color: oklch(72% 0.17 68);
    font-size: 18px;
    letter-spacing: 2px;
}

.google-rating-count {
    color: var(--c-text-soft);
    font-size: 13px;
    font-weight: 500;
}

.avis-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.avis-footer .avis-author {
    margin-bottom: 0;
}

.avis-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--c-text-soft);
    background: var(--c-surface-alt);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--c-border);
    white-space: nowrap;
}

.avis-cta .btn-secondary {
    background: transparent;
    color: var(--c-brand);
    border: 2px solid var(--c-brand);
}

.avis-cta .btn-secondary:hover {
    background: var(--c-brand);
    color: var(--c-raised);
}

/* ========================================
   PRODUITS
======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: var(--c-raised);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-brand);
    border-color: var(--c-border-brand);
}

.product-icon {
    font-size: 52px;
    filter: drop-shadow(0 4px 8px oklch(60% 0.17 194 / 0.18));
}

.product-card h3 {
    color: var(--c-brand);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.product-card p {
    color: var(--c-text-soft);
    line-height: 1.75;
    font-size: 15.5px;
}

.product-badge {
    display: inline-block;
    background: var(--c-surface-alt);
    color: var(--c-text);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid var(--c-border);
}

.product-badge--promo {
    background: var(--grad-brand);
    color: var(--c-raised);
    border: none;
    box-shadow: var(--sh-brand);
}

/* ========================================
   PARTENAIRES
======================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-card {
    background: var(--c-raised);
    padding: 34px 24px;
    border-radius: 16px;
    box-shadow: var(--sh-sm);
    transition: all 0.35s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 200px;
    border: 2px solid transparent;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-brand);
    border-color: var(--c-border-brand);
}

.partner-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text);
    text-align: center;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.partner-card:hover h3 {
    color: var(--c-brand);
}

.partner-card--product {
    border-color: var(--c-border-brand);
    background: linear-gradient(160deg, var(--c-brand-subtle), var(--c-raised));
}

.partner-logo--text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-logo-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--c-brand);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.partner-card--product:hover .partner-logo-name {
    transform: scale(1.06);
    color: var(--c-brand-deep);
}

.partner-product-tag {
    display: inline-block;
    background: var(--grad-brand);
    color: var(--c-raised);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: var(--sh-brand);
}

/* ========================================
   CONTACT
======================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form-wrapper h3 {
    color: var(--c-brand);
    margin-bottom: 28px;
    font-size: 22px;
}

.contact-item {
    margin-bottom: 22px;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--c-text);
    font-weight: 600;
}

.contact-item a {
    color: var(--c-brand);
    transition: 0.3s;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--c-brand-deep);
}

.contact-item p {
    color: var(--c-text-soft);
}

.contact-delay {
    margin-top: 6px;
    font-size: 13px;
    color: var(--c-text-soft);
    font-style: italic;
    line-height: 1.5;
}

.contact-hours-note {
    font-size: 13px;
    font-style: italic;
    color: var(--c-text-soft);
    margin-bottom: 10px !important;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.hours-table td {
    padding: 5px 10px 5px 0;
    color: var(--c-text-soft);
    vertical-align: top;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--c-text);
    width: 90px;
    white-space: nowrap;
}

.hours-table tr.hours-closed td {
    color: oklch(55% 0.05 30);
    font-style: italic;
}

.map-container {
    margin-top: 28px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.contact-form {
    background: var(--c-raised);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--sh-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: var(--c-text);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--c-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--c-surface);
    color: var(--c-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-brand);
    background: var(--c-raised);
    box-shadow: 0 0 0 4px oklch(60% 0.17 194 / 0.10);
}

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

.error {
    display: block;
    color: oklch(53% 0.22 25);
    font-size: 13px;
    margin-top: 5px;
}

.success-message {
    display: none;
    background: var(--grad-brand);
    color: var(--c-raised);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    box-shadow: var(--sh-brand);
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

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

/* ========================================
   FOOTER
======================================== */
footer {
    background: var(--c-footer);
    color: var(--c-raised);
    padding: 50px 0 40px;
    border-top: 3px solid var(--c-brand);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: oklch(99.5% 0 0 / 0.6);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--c-brand-mid);
}

/* ========================================
   SCROLL TO TOP
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--grad-brand);
    color: var(--c-raised);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--sh-brand);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--c-brand), var(--c-brand-mid));
    transform: translateY(-5px);
    box-shadow: 0 10px 32px oklch(60% 0.17 194 / 0.40);
}

/* ========================================
   ANIMATIONS FADE-IN
======================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.fade-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    .fade-in  { animation: none; opacity: 1; }
    .fade-section { opacity: 1; transform: none; transition: none; }
    .hero-slide { transition: none; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ========================================
   RESPONSIVE — TABLET
======================================== */
@media (max-width: 1024px) {
    .timeline::before { left: 30px; }
    .timeline-item { flex-direction: row !important; }
    .timeline-content { margin-left: 80px; margin-right: 0; max-width: 100%; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .comparison-grid { gap: 24px; }
}

/* ========================================
   RESPONSIVE — MOBILE
======================================== */
@media (max-width: 768px) {
    #nav {
        position: fixed;
        top: 63px;
        left: -100%;
        width: 100%;
        background: var(--c-surface);
        box-shadow: 0 6px 20px oklch(17% 0.025 65 / 0.12);
        transition: left 0.3s ease;
        z-index: 999;
    }

    #nav.active { left: 0; }

    #nav ul { flex-direction: column; padding: 16px 20px; gap: 0; }
    #nav li { border-bottom: 1px solid var(--c-border); }
    #nav a { display: block; padding: 14px 10px; font-size: 15px; }
    #nav a::after { display: none; }

    /* Contact button stays visible on mobile, smaller */
    .btn-contact {
        padding: 7px 14px;
        font-size: 13px;
    }

    .burger { display: flex; }

    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    .hero h1 { font-size: 30px; }
    .hero p  { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-indicators { bottom: 22px; }

    .section { padding: 68px 0; }

    h2 { font-size: 26px; margin-bottom: 40px; }

    /* Engagement list mobile */
    .engagement-card {
        grid-template-columns: 52px 1fr;
        gap: 0 16px;
        padding: 32px 0;
    }
    .engagement-card::before { font-size: 34px; }

    /* Timeline mobile */
    .timeline::before { left: 15px; }
    .timeline-number { width: 42px; height: 42px; font-size: 17px; }
    .timeline-content { margin-left: 65px; }

    /* Grids single column */
    .team-grid,
    .avis-grid,
    .pricing-grid,
    .products-grid,
    .comparison-grid { grid-template-columns: 1fr; }

    .pricing-card--featured { transform: scale(1); }
    .pricing-card--featured:hover { transform: translateY(-8px); }

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

    .prescription-notice { flex-direction: column; align-items: center; text-align: center; }
    .contact-form { padding: 28px 22px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    h2 { font-size: 22px; }
    .scroll-to-top { width: 44px; height: 44px; bottom: 20px; right: 18px; font-size: 18px; }
    .products-grid { grid-template-columns: 1fr; }
}
