/* ========================================
   CC VERGEZE — Raw Industrial Luxury
   Bebas Neue + DM Sans · Diagonal accents
   ======================================== */

:root {
    --bg: #0a0a0a;
    --bg-warm: #0f0d0b;
    --bg-card: #141210;
    --bg-card-hover: #1a1815;
    --bg-elevated: #1e1b18;
    --border: rgba(255, 235, 205, 0.06);
    --border-hover: rgba(255, 235, 205, 0.14);
    --border-brand: rgba(214, 40, 40, 0.25);
    --text: #f2ece4;
    --text-2: #a39888;
    --text-3: #5c5347;
    --brand: #d62828;
    --brand-dark: #a11d1d;
    --brand-soft: rgba(214, 40, 40, 0.1);
    --brand-glow: rgba(214, 40, 40, 0.3);
    --orange: #e8762a;
    --gold: #c9a84c;
    --fb: #1877f2;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
strong { font-weight: 600; }
em { font-style: italic; color: var(--brand); }

::selection { background: var(--brand); color: white; }

/* ========================================
   GRAIN OVERLAY
   ======================================== */
.grain {
    position: fixed; inset: 0; z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    mix-blend-mode: overlay;
}

/* ========================================
   LOADER
   ======================================== */
#loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; width: 200px; }

.loader-bar-track {
    height: 2px; background: var(--border);
    border-radius: 1px; overflow: hidden;
    margin-bottom: 20px;
}
.loader-bar {
    height: 100%; width: 0; background: var(--brand);
    animation: loader-fill 1s var(--ease) forwards;
}
@keyframes loader-fill { to { width: 100%; } }

.loader-text {
    font-family: var(--font-display);
    font-size: 1rem; letter-spacing: 8px;
    color: var(--text-3);
}

/* ========================================
   STATUS BANNER
   ======================================== */
.status-banner {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1100; height: 34px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.status-banner.open {
    background: rgba(22, 163, 74, 0.06);
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
    color: #4ade80;
}
.status-banner.closed {
    background: rgba(239, 68, 68, 0.05);
    border-bottom: 1px solid rgba(239, 68, 68, 0.08);
    color: #f87171;
}

.status-banner-inner {
    display: flex; align-items: center; gap: 8px;
}

.status-dot {
    width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.status-banner.open .status-dot {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: pulse-dot 2.5s ease-in-out infinite;
}
.status-banner.closed .status-dot {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.status-sep { color: var(--text-3); font-weight: 300; }
#statusDetail { color: var(--text-3); font-weight: 400; font-size: 0.68rem; }

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
    position: fixed; top: 34px; left: 0; right: 0;
    z-index: 1000; padding: 16px 0;
    transition: top 0.4s var(--ease), background 0.4s, padding 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}
#navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    padding: 10px 0;
}

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

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
    width: 44px; height: 44px;
    background: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.05rem;
    color: white; letter-spacing: 2px; gap: 1px;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    transition: clip-path 0.4s var(--ease);
}
.logo:hover .logo-mark {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.logo-letter { display: inline; }
.logo-label { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem; letter-spacing: 2px;
    color: var(--text);
}
.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem; font-weight: 500;
    color: var(--text-3); letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
    font-size: 0.82rem; font-weight: 500; color: var(--text-2);
    transition: color 0.3s; position: relative;
    letter-spacing: 0.3px;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--brand);
    transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text);
    padding: 10px 24px;
    border: 1px solid var(--border-hover);
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.5px;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    transition: all 0.4s var(--ease);
}
.nav-cta:hover {
    background: var(--brand);
    border-color: var(--brand);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.4s var(--ease); transform-origin: center; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
    background: var(--bg);
    z-index: 999; display: flex; align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu-inner { padding: 0 40px; width: 100%; }
.mobile-menu ul { list-style: none; }
.mobile-menu li {
    border-bottom: 1px solid var(--border);
    transform: translateY(20px); opacity: 0;
    transition: all 0.5s var(--ease);
}
.mobile-menu.active li {
    transform: translateY(0); opacity: 1;
}
.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu a {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 0;
    font-family: var(--font-display);
    font-size: 2.4rem; letter-spacing: 3px;
    color: var(--text-2);
    transition: color 0.3s, padding-left 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--brand); padding-left: 12px; }

.mobile-num {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 500;
    color: var(--text-3); letter-spacing: 0;
    min-width: 24px;
}

.mobile-cta {
    display: inline-block; margin-top: 32px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--brand); letter-spacing: 1px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px;
    font-size: 0.85rem; font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer; border: none; text-decoration: none;
    letter-spacing: 0.3px;
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
    transition: all 0.4s var(--ease);
}
.btn-primary {
    background: var(--brand); color: white;
}
.btn-primary:hover {
    background: var(--brand-dark);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 8px 32px var(--brand-glow);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.04); color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.btn-outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--brand); color: var(--brand);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.btn-fb {
    background: var(--fb); color: white;
}
.btn-fb:hover {
    background: #0e5fc0;
    box-shadow: 0 8px 32px rgba(24, 119, 242, 0.3);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.btn-large { padding: 18px 38px; font-size: 0.92rem; }
.btn-large.btn-fb { clip-path: none; border-radius: 4px; }

@media (max-width: 768px) {
    .btn { clip-path: none; border-radius: 4px; }
    .btn-large { padding: 16px 24px; font-size: 0.85rem; }
    .actus-box { padding: 40px 20px; }
    .actus-box .btn-large { width: 100%; justify-content: center; }
}
.btn-full { width: 100%; justify-content: center; }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.2) saturate(0.5) contrast(1.1);
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(160deg, rgba(10, 10, 10, 0.7) 0%, transparent 50%),
        linear-gradient(180deg, transparent 50%, var(--bg) 100%);
}

/* Diagonal slash accent in hero */
.hero-slash {
    position: absolute;
    top: 0; right: 15%;
    width: 2px; height: 120%;
    background: linear-gradient(180deg, transparent, var(--brand), transparent);
    opacity: 0.12;
    transform: rotate(-15deg);
    transform-origin: top center;
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 160px 28px 80px;
    width: 100%;
}

.hero-left { max-width: 680px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 18px 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    font-size: 0.75rem; font-weight: 500; color: var(--text-2);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.badge-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2.5s ease-in-out infinite;
}

.hero h1 { margin-bottom: 24px; }

.hero-line {
    display: block;
    font-family: var(--font-display);
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
}
.hero-line-1 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-2);
    margin-bottom: 6px;
}
.hero-line-2 {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--text);
    letter-spacing: 6px;
}
.hero-line-3 {
    font-size: clamp(4rem, 10vw, 8rem);
    color: transparent;
    -webkit-text-stroke: 2px var(--text-2);
    letter-spacing: 6px;
    margin-top: -4px;
}

.hero-sub {
    max-width: 480px;
    font-size: 1rem; color: var(--text-2);
    line-height: 1.8; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

/* Stats bar */
.hero-stats {
    display: flex; align-items: center; gap: 40px;
    margin-top: 64px;
    position: relative; z-index: 2;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem; line-height: 1;
    color: var(--text); letter-spacing: 2px;
}
.stat-unit {
    font-family: var(--font-display);
    font-size: 1.2rem; color: var(--brand);
    letter-spacing: 2px; margin-top: -2px;
}
.stat-label {
    font-size: 0.72rem; color: var(--text-3);
    letter-spacing: 2px; text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px; height: 48px;
    background: linear-gradient(180deg, transparent, var(--border-hover), transparent);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 40px; right: 40px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(180deg, var(--text-3), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}
.scroll-text {
    font-size: 0.6rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--text-3);
    writing-mode: vertical-rl;
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section { padding: 120px 0; }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-eyebrow { justify-content: center; }

.section-eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
}
.section-eyebrow.center { justify-content: center; }

.eyebrow-line {
    width: 32px; height: 1px;
    background: var(--brand);
}
.eyebrow-text {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--brand);
}
.eyebrow-num {
    font-family: var(--font-display);
    font-size: 0.85rem; color: var(--text-3);
    letter-spacing: 2px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    letter-spacing: 3px; line-height: 1.1;
    text-transform: uppercase;
}

.section-sub { font-size: 1rem; color: var(--text-2); margin-top: 12px; }

/* ========================================
   FEATURES
   ======================================== */
.features {
    background: var(--bg-warm);
    position: relative;
}
.features::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 44px 32px;
    position: relative;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: var(--bg-card-hover); }

.feature-num {
    font-family: var(--font-display);
    font-size: 3.5rem; line-height: 1;
    color: var(--border);
    position: absolute; top: 20px; right: 24px;
    letter-spacing: 2px;
    transition: color 0.5s;
}
.feature-card:hover .feature-num { color: var(--brand-soft); }

.feature-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; color: var(--brand);
    border-left: 2px solid var(--brand);
    padding-left: 14px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }

.feature-line {
    margin-top: 28px; width: 40px; height: 1px;
    background: var(--border);
    transition: width 0.5s var(--ease), background 0.5s;
}
.feature-card:hover .feature-line { width: 80px; background: var(--brand); }

/* ========================================
   PLATEAU
   ======================================== */
.plateau { background: var(--bg); }

.plateau-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 64px; align-items: center;
}

.plateau-img {
    position: relative; overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 96% 100%, 4% 100%);
    transition: clip-path 0.6s var(--ease);
}
.plateau-img:hover {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.plateau-img img {
    width: 100%; height: 420px; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.plateau-img:hover img { transform: scale(1.04); }

.plateau-img-label {
    position: absolute; bottom: 24px; left: 24px;
    font-family: var(--font-display);
    font-size: 3rem; letter-spacing: 4px;
    color: white; opacity: 0.7;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.plateau-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px; text-transform: uppercase;
    line-height: 1.15; margin-bottom: 20px;
}
.plateau-content p {
    font-size: 0.92rem; color: var(--text-2);
    line-height: 1.8; margin-bottom: 28px;
}

.plateau-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--border);
    font-size: 0.75rem; font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.5px;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    transition: all 0.3s var(--ease);
}
.tag:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    background: var(--bg-warm);
    position: relative;
}
.pricing::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* Zone Toggle */
.zone-toggle {
    display: flex; justify-content: center; margin-bottom: 56px;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 4px; max-width: 340px;
    margin-left: auto; margin-right: auto;
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.zone-btn {
    flex: 1; padding: 11px 20px; border: none; background: none;
    color: var(--text-2); font-family: var(--font-body);
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer; position: relative; z-index: 1;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}
.zone-btn.active { color: white; }
.zone-slider {
    position: absolute; top: 4px; left: 4px;
    width: calc(50% - 4px); height: calc(100% - 8px);
    background: var(--brand);
    transition: transform 0.4s var(--ease);
}
.zone-toggle[data-active="hors"] .zone-slider { transform: translateX(100%); }

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

.price-card {
    background: var(--bg-card);
    padding: 40px 28px;
    position: relative; display: flex; flex-direction: column;
    transition: all 0.4s var(--ease);
}
.price-card:hover { background: var(--bg-card-hover); }

.price-card.featured {
    background: linear-gradient(180deg, rgba(214, 40, 40, 0.06) 0%, var(--bg-card) 50%);
    border: 1px solid var(--border-brand);
}
.price-card.featured:hover { box-shadow: 0 16px 48px rgba(214, 40, 40, 0.12); }

.price-popular {
    position: absolute; top: 0; left: 28px;
    background: var(--brand); color: white;
    padding: 6px 16px;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 8% 100%);
}

.price-header { margin-bottom: 24px; }
.price-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; letter-spacing: 2px;
    text-transform: uppercase;
}

.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-amount .amount {
    font-family: var(--font-display);
    font-size: 4.5rem; line-height: 1; letter-spacing: 2px;
}
.price-amount .currency {
    font-family: var(--font-display);
    font-size: 2rem; color: var(--text-2);
}
.price-card.featured .amount { color: var(--brand); }

.price-monthly {
    font-size: 0.82rem; color: var(--text-3);
    margin-bottom: 28px; letter-spacing: 0.3px;
}

.price-features { list-style: none; margin-bottom: 28px; flex: 1; }
.price-features li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; font-size: 0.85rem; color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features svg { color: var(--brand); flex-shrink: 0; }

.price-notes { margin-bottom: 24px; }
.price-notes p { font-size: 0.78rem; color: var(--text-3); line-height: 1.7; }

.price-cta-text {
    font-size: 0.82rem; color: var(--text-3);
    margin-bottom: 24px; font-style: italic;
}

/* Payment chips */
.payment-info {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 10px;
    margin-top: 8px;
}
.payment-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: transparent; border: 1px solid var(--border);
    font-size: 0.78rem; color: var(--text-2);
    letter-spacing: 0.3px;
}
.payment-chip svg { color: var(--brand); }
.payment-chip.muted { color: var(--text-3); border-style: dashed; }
.payment-chip.muted svg { color: var(--text-3); }

/* ========================================
   INFOS PRATIQUES
   ======================================== */
.infos { background: var(--bg); }

.info-banner {
    display: flex; align-items: center; gap: 24px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.06), rgba(232, 118, 42, 0.04));
    border-left: 3px solid var(--brand);
    margin-bottom: 56px;
}
.info-banner-icon { color: var(--brand); flex-shrink: 0; }
.info-banner h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 2px;
}
.info-banner p { font-size: 0.92rem; color: var(--text-2); }

/* Coach schedule — Cards */
.coach-section { margin-bottom: 56px; }

.coach-title {
    font-family: var(--font-display);
    font-size: 1.3rem; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-2); margin-bottom: 24px;
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-bottom: 14px;
}

.coach-day {
    background: var(--bg-card);
    padding: 28px 20px 24px;
    position: relative;
    transition: all 0.4s var(--ease);
    display: flex; flex-direction: column;
}
.coach-day::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--brand); opacity: 0;
    transition: opacity 0.4s;
}
.coach-day:hover { background: var(--bg-card-hover); }
.coach-day:hover::before { opacity: 1; }

/* Cross-training days get a subtle side accent */
.coach-day.has-xt {
    background: linear-gradient(180deg, var(--bg-card) 60%, rgba(232, 118, 42, 0.03) 100%);
}
.coach-day.has-xt::before {
    background: var(--orange); opacity: 1;
}

.day-name {
    font-family: var(--font-display);
    font-size: 1.8rem; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1;
}

.day-slots {
    display: flex; flex-direction: column;
    gap: 10px; flex: 1;
}

.slot {
    padding: 12px 14px;
    border-left: 2px solid var(--border);
    transition: border-color 0.3s;
}
.slot-am { border-left-color: var(--gold); }
.slot-pm { border-left-color: var(--brand); }
.coach-day:hover .slot-am { border-left-color: var(--gold); }
.coach-day:hover .slot-pm { border-left-color: var(--brand); }

.slot-period {
    display: block;
    font-size: 0.62rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 4px;
}
.slot-am .slot-period { color: var(--gold); }
.slot-pm .slot-period { color: var(--brand); }

.slot-time {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem; letter-spacing: 1px;
    color: var(--text);
}

/* Cross-training banner inside card */
.day-xt {
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(232, 118, 42, 0.08);
    border: 1px solid rgba(232, 118, 42, 0.2);
    display: flex; align-items: center; gap: 10px;
    color: var(--orange);
    transition: background 0.3s, border-color 0.3s;
}
.day-xt:hover {
    background: rgba(232, 118, 42, 0.14);
    border-color: rgba(232, 118, 42, 0.35);
}
.day-xt svg { flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(232,118,42,0.3)); }
.day-xt span {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.coach-note { font-size: 0.78rem; color: var(--text-3); font-style: italic; margin-top: 14px; }

/* Responsive coach grid */
@media (max-width: 1024px) {
    .coach-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .coach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .coach-grid { grid-template-columns: 1fr; }
    .day-name { font-size: 1.4rem; }
}

/* Info cards */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.info-card-v2 {
    background: var(--bg-card);
    padding: 32px 24px;
    transition: all 0.4s var(--ease);
    position: relative;
}
.info-card-v2::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--brand); transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.info-card-v2:hover::before { transform: scaleX(1); }
.info-card-v2:hover { background: var(--bg-card-hover); }

.info-card-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; color: var(--brand);
    border-left: 2px solid var(--brand);
    padding-left: 12px;
}

.info-card-v2 h4 {
    font-family: var(--font-display);
    font-size: 1.15rem; letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.info-card-v2 p { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }
.info-card-v2 ul { list-style: none; }
.info-card-v2 li {
    font-size: 0.85rem; color: var(--text-2);
    padding: 6px 0 6px 18px; position: relative;
}
.info-card-v2 li::before {
    content: ''; position: absolute; left: 0; top: 14px;
    width: 6px; height: 1px; background: var(--brand);
}

/* ========================================
   ACTUALITES
   ======================================== */
.actus {
    background: var(--bg-warm);
    position: relative;
}
.actus::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.actus-box {
    text-align: center;
    max-width: 620px; margin: 0 auto;
    padding: 60px 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.actus-box::before {
    content: ''; position: absolute;
    top: -40%; right: -20%; width: 200px; height: 200%;
    background: linear-gradient(180deg, transparent, rgba(24, 119, 242, 0.03), transparent);
    transform: rotate(-15deg);
    pointer-events: none;
}
.actus-box:hover { border-color: rgba(24, 119, 242, 0.2); }

.actus-icon {
    width: 72px; height: 72px;
    background: var(--fb);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px; color: white;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    transition: clip-path 0.4s var(--ease);
}
.actus-box:hover .actus-icon {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.actus-box h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4; margin-bottom: 14px;
}
.actus-box > p {
    font-size: 0.88rem; color: var(--text-2);
    line-height: 1.7; margin-bottom: 32px;
}

/* ========================================
   LOCATION
   ======================================== */
.location {
    background: var(--bg-warm);
    position: relative;
}

.location-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2px; }

.location-map {
    overflow: hidden; min-height: 380px;
    background: var(--bg-card);
}
.location-map iframe {
    filter: brightness(0.85) contrast(1.05) saturate(0.7);
}

.location-details {
    display: flex; flex-direction: column; gap: 0;
    background: var(--bg-card);
}

.loc-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
.loc-item:last-child { border-bottom: none; }
.loc-item:hover { background: var(--bg-card-hover); }

.loc-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    border-left: 2px solid var(--brand);
    padding-left: 12px;
}
.loc-item strong {
    display: block; font-size: 0.78rem;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 4px; color: var(--text);
}
.loc-item p { font-size: 0.88rem; color: var(--text-2); }
.loc-item a { color: var(--brand); transition: color 0.3s; }
.loc-item a:hover { color: var(--orange); }

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

.contact-box {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 0; overflow: hidden; position: relative;
}

.contact-left {
    background: var(--bg-card);
    padding: 64px 48px;
    border-right: 1px solid var(--border);
}
.contact-left h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 2px; text-transform: uppercase;
    line-height: 1.1; margin-bottom: 20px;
}
.contact-left p {
    font-size: 0.92rem; color: var(--text-2);
    line-height: 1.8; margin-bottom: 32px; max-width: 420px;
}

.contact-alt { margin-top: 24px; }
.contact-alt p { font-size: 0.88rem; color: var(--text-3); margin-bottom: 0; }
.contact-alt a { color: var(--brand); }
.contact-alt a:hover { color: var(--orange); }

.contact-right {
    background: var(--bg-card);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.contact-right::before {
    content: ''; position: absolute;
    top: -30%; right: -20%;
    width: 300px; height: 160%;
    background: linear-gradient(180deg, transparent, var(--brand-soft), transparent);
    transform: rotate(-15deg);
    opacity: 0.5;
}

.contact-visual { position: relative; z-index: 1; }

.visual-ring {
    width: 200px; height: 200px;
    border: 1px solid var(--border-brand);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
}
.visual-ring-2 {
    position: absolute; inset: -20px;
    width: 240px; height: 240px;
    border-color: var(--border);
    animation-delay: -2.5s;
    animation-direction: reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(3deg); }
}

.visual-text {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.visual-big {
    font-family: var(--font-display);
    font-size: 3.2rem; letter-spacing: 8px;
    color: var(--brand);
}
.visual-small {
    font-size: 0.68rem; font-weight: 500;
    color: var(--text-3); letter-spacing: 3px;
    text-transform: uppercase;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 64px 0 28px;
}

.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}

.footer-brand { }
.footer-brand p {
    font-size: 0.82rem; color: var(--text-3);
    margin-top: 16px; line-height: 1.7; max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--text-2);
    margin-bottom: 16px;
}
.footer-col a {
    display: block; font-size: 0.85rem; color: var(--text-3);
    margin-bottom: 10px; transition: color 0.3s, padding-left 0.3s var(--ease);
}
.footer-col a:hover { color: var(--brand); padding-left: 6px; }
.footer-col p { font-size: 0.85rem; color: var(--text-3); margin-bottom: 8px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: center;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-3); letter-spacing: 1px; }

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-2); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.4s var(--ease); z-index: 100;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
    border-color: var(--brand); color: var(--brand);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr; }
    .plateau-grid { grid-template-columns: 1fr; gap: 40px; }
    .plateau-img img { height: 300px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .info-cards { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .location-map { min-height: 300px; }
    .contact-box { grid-template-columns: 1fr; }
    .contact-left { border-right: none; border-bottom: 1px solid var(--border); }
    .contact-right { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 24px; }
    .hero-slash { display: none; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
    .section { padding: 80px 0; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .contact-left { padding: 40px 24px; }
    .info-banner { flex-direction: column; text-align: left; }
    .payment-info { flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .stat-divider { display: none; }
    .hero-scroll { display: none; }
    .hero-content { padding: 140px 28px 120px; }
    .container { padding: 0 20px; }
}

@media (max-width: 480px) {
    .hero-line-2, .hero-line-3 { font-size: 3.2rem; letter-spacing: 3px; }
    .hero-stats { margin-top: 40px; }
    .hero-content { padding: 130px 20px 60px; }
    .zone-toggle { max-width: 100%; }
    .section-header h2 { font-size: 2rem; }
    .stat-num { font-size: 2rem; }
}
