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

:root {
    --bg-primary: #1a0808;
    --bg-secondary: #220a0a;
    --bg-card: #2a0e0e;
    --bg-card-hover: #3a1414;
    --text-primary: #f5ede3;
    --text-secondary: #c4b5a8;
    --text-muted: #8a7a6e;
    --accent: #c9a96e;
    --accent-hover: #d4b896;
    --border: #4a2020;
    --border-light: #5a2a2a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
}

em, .script-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--accent);
    color: #1a0808;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(201, 169, 110, 0.08);
}

.btn-text {
    background: transparent;
    color: var(--text-secondary);
    padding: 0;
    font-size: 0.9rem;
}

.btn-text:hover {
    color: var(--text-primary);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(26, 8, 8, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

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

.nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.nav-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: #1a0808;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-hover);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(10%, 10%); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 40px;
    position: relative;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

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

.hero-vu-dans {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.vu-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vu-logos {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-placeholder {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: 0.05em;
}

.hero-quote {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-quote strong {
    color: var(--text-primary);
    font-weight: 800;
}

/* ===== SECTION COMMON ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ===== PODCAST ===== */
.podcast-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.podcast-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.podcast-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.podcast-description {
    color: var(--text-secondary);
    margin: 24px 0;
    line-height: 1.8;
}

.podcast-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.podcast-platforms span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.platform-links {
    display: flex;
    gap: 12px;
}

.platform-link {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.platform-link:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.podcast-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.podcast-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 60px 0;
}

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

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.podcast-guests-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.podcast-section .btn-text {
    display: block;
    text-align: center;
    margin-bottom: 40px;
}

/* Episodes Carousel */
.episodes-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 24px;
    cursor: grab;
}

.episodes-carousel::-webkit-scrollbar {
    display: none;
}

.episodes-carousel:active {
    cursor: grabbing;
}

.episodes-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 8px 0;
}

.episode-card {
    width: 280px;
    flex-shrink: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.episode-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.episode-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.episode-info {
    padding: 20px;
}

.episode-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.episode-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.carousel-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 24px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.newsletter-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 32px 0;
}

.newsletter-card-label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.newsletter-card h3 {
    font-size: 1.5rem;
}

.newsletter-description {
    color: var(--text-secondary);
    margin: 24px 0;
    line-height: 1.8;
}

.newsletter-value {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.newsletter-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.newsletter-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn {
    padding: 14px 20px;
    border-radius: 100px;
    font-size: 1.2rem;
}

/* ===== AUDIT LINKEDIN ===== */
.audit-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.audit-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.audit-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.audit-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.audit-explanation {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.audit-value {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.audit-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.audit-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
}

.audit-preview {
    max-width: 500px;
    margin: 0 auto;
}

.audit-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.audit-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #d4b896, var(--accent));
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mockup-live {
    padding: 4px 12px;
    background: #22c55e;
    color: #000;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mockup-score {
    text-align: center;
    margin-bottom: 32px;
}

.score-number {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--accent);
}

.score-total {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.mockup-criteria {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.criteria-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.criteria-row span:first-child {
    width: 120px;
    color: var(--text-secondary);
}

.criteria-bar {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.criteria-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 1s ease;
}

.criteria-row span:last-child {
    width: 40px;
    text-align: right;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.mockup-verdict {
    text-align: center;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 24px;
}

.mockup-plan {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
}

.mockup-plan h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.mockup-plan p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.mockup-plan-more {
    font-size: 0.8rem;
    color: var(--accent);
}

.mockup-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== OFFRES ===== */
.offres-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.offres-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.offres-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.offres-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.offre-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition);
}

.offre-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.offre-featured {
    border-color: rgba(201, 169, 110, 0.3);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.06), transparent);
}

.offre-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.offre-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.offre-social-proof {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.proof-item {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.proof-highlight {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.offre-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.offre-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.offre-footer {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== EVENTS ===== */
.events-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.events-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.events-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.events-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.event-stat {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.event-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.event-stat-number {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.event-stat-big {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    letter-spacing: -0.03em;
}

.event-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.events-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.events-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ===== SUCCESS STORIES ===== */
.stories-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.stories-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.stories-counter {
    margin: 32px 0;
}

.counter-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.counter-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.stories-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.stories-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 24px;
    cursor: grab;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

.stories-carousel:active {
    cursor: grabbing;
}

.stories-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 8px 0;
}

.story-card {
    width: 320px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

.story-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.story-number {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.story-metric {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-metric small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.story-card blockquote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.story-card cite {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
}

.stories-cta {
    display: block;
    text-align: center;
    margin-top: 40px;
}

/* ===== PRESSE ===== */
.presse-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.presse-section .section-title {
    text-align: center;
}

.presse-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.presse-carousel {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.presse-carousel::-webkit-scrollbar {
    display: none;
}

.presse-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0 24px;
}

.presse-card {
    width: 250px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.presse-card:hover {
    border-color: var(--border-light);
}

.presse-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.presse-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== PROJET FUTUR ===== */
.projet-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.projet-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.projet-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.projet-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.projet-partner {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.projet-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.projet-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.projet-vision {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
}

.projet-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ===== HISTOIRE / TIMELINE ===== */
.histoire-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.histoire-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.histoire-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.histoire-intro {
    color: var(--text-secondary);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding: 24px 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 32px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--bg-secondary);
}

.timeline-number {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.timeline-age {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.timeline-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .offres-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .podcast-stats {
        gap: 40px;
    }

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

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

    .offre-card {
        padding: 28px;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-item::before {
        left: -36px;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .hero-vu-dans {
        flex-direction: column;
        gap: 12px;
    }
}

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

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

    .events-stats-grid {
        grid-template-columns: 1fr;
    }

    .podcast-ctas {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== CELIA NÉMOZ BRANDING ADDITIONS ===== */

/* Logo CN */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-cn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Section Ornament */
.section-ornament {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 16px;
    opacity: 0.6;
}

/* Hero Updates */
.hero {
    background: linear-gradient(180deg, #1a0808 0%, #220a0a 50%, #1a0808 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-logo-cn {
    margin-bottom: 40px;
}

.hero-logo-cn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.hero-title {
    margin-bottom: 32px;
}

.hero-title-serif {
    font-family: var(--font-sans);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title-script {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    text-transform: none;
    letter-spacing: 0;
}

.hero-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.tag-dot {
    color: var(--accent);
    font-size: 0.6rem;
}

/* Hero Categories */
.hero-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-cat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.hero-cat:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.1);
}

.hero-cat-icon {
    font-size: 1.3rem;
}

.hero-cat-text {
    display: flex;
    flex-direction: column;
}

.hero-cat-text strong {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.hero-cat-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Podcast Section Updates */
.podcast-section {
    background: linear-gradient(180deg, #220a0a 0%, #2a0e0e 50%, #220a0a 100%);
}

.podcast-section .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

/* Club Section */
.club-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a0808 0%, #2a0e0e 50%, #1a0808 100%);
    position: relative;
}

.club-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.club-content {
    text-align: center;
}

.club-tagline {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.club-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Offre Pillars */
.offre-pillars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-sm);
}

.pillar-icon {
    font-size: 1.2rem;
}

.pillar span:last-child {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

/* Footer Logo */
.footer-logo-cn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

/* Section Backgrounds with Gradient */
.offres-section {
    background: linear-gradient(180deg, #2a0e0e 0%, #1a0808 50%, #2a0e0e 100%);
}

.audit-section {
    background: linear-gradient(180deg, #220a0a 0%, #2a0e0e 50%, #220a0a 100%);
}

.stories-section {
    background: linear-gradient(180deg, #1a0808 0%, #220a0a 50%, #1a0808 100%);
}

.histoire-section {
    background: linear-gradient(180deg, #2a0e0e 0%, #220a0a 50%, #2a0e0e 100%);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-categories {
        gap: 16px;
    }

    .hero-cat {
        padding: 12px 16px;
    }

    .hero-cat-text strong {
        font-size: 0.65rem;
    }

    .hero-title-serif {
        font-size: 2rem;
    }

    .hero-title-script {
        font-size: 2.5rem;
    }

    .hero-tags {
        gap: 8px;
        font-size: 0.75rem;
    }
}

/* ===== NEW CONTENT STYLES ===== */

/* Eyebrow */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Marquee */
.marquee {
    background: linear-gradient(90deg, #3a1010, #5a2020, #3a1010);
    color: #fff;
    overflow: hidden;
    padding: 13px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: scroll 24s linear infinite;
}

.marquee span {
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 22px;
    opacity: 0.85;
}

@keyframes scroll {
    to { transform: translateX(-50%); }
}

/* Stats Section */
.stats-section {
    padding: 44px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.stat-label {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Socials Section */
.socials-section {
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.social-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.social-info strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
}

.social-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Newsletter Note */
.newsletter-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 14px;
}

.newsletter-topic {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Avatars */
.avatars {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.avatars span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
}

.avatars span:first-child {
    margin-left: 0;
}

.avatars .more {
    background: var(--text-primary) !important;
    color: var(--bg-primary) !important;
    font-size: 0.68rem;
}

/* Content Section / Split Layout */
.content-section {
    padding: 100px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.split-visual {
    position: relative;
}

.cover-card {
    aspect-ratio: 1/1;
    border-radius: 16px;
    position: relative;
    background: linear-gradient(to top, rgba(26, 8, 8, 0.75), rgba(26, 8, 8, 0.1)),
                linear-gradient(150deg, #2a0e0e, #4a1818);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.cover-handle {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cover-platforms {
    opacity: 0.65;
    font-size: 0.9rem;
    margin-top: 6px;
}

.split-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.episodes-list {
    list-style: none;
    border-top: 1px solid var(--border);
}

.episodes-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 4px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.episodes-list li:hover {
    background: var(--bg-card);
}

.ep-num {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--accent);
    min-width: 34px;
}

.ep-title {
    flex: 1;
    font-weight: 600;
    font-size: 0.98rem;
}

.ep-play {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--text-primary);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.platform-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--border);
    border-radius: 99px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Coulisses Section */
.coulisses-section {
    padding: 100px 0;
}

.coulisses-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
}

.coulisses-visual {
    background: linear-gradient(150deg, #3a1010, #5a2020);
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.coulisses-body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.coulisses-body p {
    color: var(--text-secondary);
    font-size: 0.98rem;
}

/* Audit Grid */
.audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.audit-text .audit-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Score Card */
.score-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.score-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.score-number {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.score-total {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.score-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(201, 169, 110, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.bar-row {
    margin-bottom: 18px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 7px;
}

.bar-label span:last-child {
    color: var(--text-muted);
    font-weight: 500;
}

.bar-track {
    height: 8px;
    background: var(--bg-primary);
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #d4b896);
    border-radius: 99px;
    width: 0;
    transition: width 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.in .bar-fill {
    width: var(--w);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.offer-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.offer-visual {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

.offer-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.offer-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.offer-card h3 {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.offer-card p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    flex: 1;
}

.offer-link {
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--text-primary);
    text-decoration: none;
}

.offer-link:hover {
    color: var(--accent);
}

/* Testimonials */
.temoignages-section {
    padding: 100px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s;
}

.testi-card:hover {
    transform: translateY(-4px);
}

.testi-metric {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.testi-card blockquote {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-style: italic;
}

.testi-card cite {
    font-style: normal;
    font-size: 0.86rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-card cite small {
    font-weight: 400;
    color: var(--text-muted);
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text-primary);
    color: var(--bg-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}

/* Stories Carousel */
.stories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.car-nav {
    display: flex;
    gap: 10px;
}

.car-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.car-nav button:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.stories-carousel {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

.story-card {
    flex: 0 0 min(280px, 75vw);
    aspect-ratio: 9/16;
    border-radius: 18px;
    scroll-snap-align: start;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.story-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 16, 0.82) 0%, rgba(10, 8, 16, 0) 55%);
}

.story-card > * {
    position: relative;
    z-index: 1;
}

.sc1 { background: linear-gradient(160deg, #5a2020, #2a0e0e); }
.sc2 { background: linear-gradient(160deg, #2a0e0e, #1a0808); }
.sc3 { background: linear-gradient(160deg, #4a1818, #2a0c0c); }
.sc4 { background: linear-gradient(160deg, #3a1212, #1a0808); }

.story-who {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-metric {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
    margin-bottom: 8px;
}

.story-card q {
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0.9;
    quotes: "« " " »";
}

.play-big {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 1;
}

/* Parcours / Timeline */
.parcours-section {
    padding: 100px 0;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 44px;
}

.chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 44px 0;
    border-top: 1px solid var(--border);
}

.chapter:nth-child(even) .chapter-visual {
    order: 2;
}

.chapter-visual {
    aspect-ratio: 16/11;
    border-radius: 14px;
    background: linear-gradient(150deg, rgba(201, 169, 110, 0.1), var(--bg-card));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chapter-num {
    font-size: clamp(4.5rem, 9vw, 7rem);
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    letter-spacing: -0.05em;
}

.chapter-text small {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.chapter-text h3 {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin: 6px 0 10px;
}

.chapter-text p {
    color: var(--text-secondary);
    font-size: 0.98rem;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .split-layout,
    .audit-grid,
    .coulisses-card {
        grid-template-columns: 1fr;
    }

    .offers-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

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

    .chapter {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .chapter:nth-child(even) .chapter-visual {
        order: 0;
    }
}

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

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

    .footer-content {
        flex-direction: column;
    }

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

/* ===== SHIFT BUSINESS SECTION ===== */
.shift-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a0808 0%, #2a0e0e 50%, #1a0808 100%);
    position: relative;
}

.shift-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.shift-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.shift-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.shift-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.shift-highlight {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

.shift-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Phases Overview */
.shift-phases-overview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.shift-phase-card {
    text-align: center;
    padding: 32px 40px;
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    min-width: 200px;
    transition: var(--transition);
}

.shift-phase-card:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-4px);
}

.phase-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.shift-phase-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.shift-phase-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.shift-phase-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.5;
}

/* Intro */
.shift-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.shift-intro p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.shift-intro strong {
    color: var(--accent);
    font-weight: 700;
}

/* Phase Details */
.shift-phase-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 32px;
    transition: var(--transition);
}

.shift-phase-detail:hover {
    border-color: var(--border-light);
}

.phase-header {
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.phase-number {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 18px;
}

.phase-header h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.phase-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.phase-col {
    text-align: center;
}

.phase-col h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.phase-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.phase-col ul li {
    position: relative;
    padding-left: 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.phase-col ul li::before {
    content: '✦';
    color: var(--accent);
    font-size: 0.7rem;
    margin-right: 8px;
}

/* Shift CTA */
.shift-cta {
    text-align: center;
    margin-top: 60px;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.02) 50%, rgba(201, 169, 110, 0.08) 100%);
    border: 1.5px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.shift-cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.shift-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
}

.shift-cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.shift-cta-text em {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.shift-cta-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
}

.shift-cta-price-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

/* CANDIDATER Button */
.btn-candidater {
    display: inline-block;
    padding: 24px 80px;
    background: var(--accent);
    color: #1a0808;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0);
    cursor: pointer;
}

.btn-candidater:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4), 0 0 80px rgba(201, 169, 110, 0.15);
    letter-spacing: 0.12em;
}

.btn-candidater:active {
    transform: translateY(-1px) scale(0.99);
}

.shift-cta-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 20px;
    letter-spacing: 0.05em;
    position: relative;
}

/* Responsive Shift */
@media (max-width: 768px) {
    .shift-highlights {
        gap: 32px;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

    .shift-phases-overview {
        flex-direction: column;
        gap: 16px;
    }

    .shift-phase-arrow {
        transform: rotate(90deg);
    }

    .shift-phase-detail {
        padding: 28px;
    }

    .phase-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shift-cta {
        padding: 50px 20px;
    }

    .shift-cta-title {
        font-size: 2.2rem;
    }

    .btn-candidater {
        padding: 20px 48px;
        font-size: 1.4rem;
    }
}

/* ===== AVIS CLIENTS (SENJA) ===== */
.temoignages-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #220a0a 0%, #1a0808 50%, #220a0a 100%);
}

.temoignages-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.t-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.t-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Grid d'avis */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.avis-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.avis-card:hover {
    border-color: var(--border-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.avis-featured {
    border-color: rgba(201, 169, 110, 0.3);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.06), var(--bg-card));
}

.avis-wide {
    grid-column: span 2;
}

.avis-stars {
    color: #f5c518;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.avis-card blockquote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.avis-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--border);
}

.avis-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.avis-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.avis-cta {
    text-align: center;
    margin-top: 32px;
}

/* Responsive Avis */
@media (max-width: 1024px) {
    .avis-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avis-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .avis-grid {
        grid-template-columns: 1fr;
    }

    .avis-wide {
        grid-column: span 1;
    }

    .temoignages-stats {
        gap: 32px;
    }

    .t-stat-number {
        font-size: 2rem;
    }

    .avis-card {
        padding: 22px;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section-inner {
    margin-top: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    border-color: rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), var(--bg-card));
    transform: scale(1.04);
}

.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.15);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.pricing-duration {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--accent);
}

.pricing-per {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
}

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

/* ===== AUDIT QUIZ MODAL ===== */
.quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quiz-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 5, 5, 0.92);
    backdrop-filter: blur(10px);
}

.quiz-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.quiz-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}

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

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: quizFadeIn 0.35s ease;
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

.quiz-step-content {
    text-align: center;
}

.quiz-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.quiz-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.quiz-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.quiz-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
}

.quiz-progress {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 99px;
    margin-bottom: 24px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #d4b896);
    border-radius: 99px;
    transition: width 0.4s ease;
}

.quiz-step-num {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.quiz-question {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.4;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(201, 169, 110, 0.04);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.quiz-option:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.08);
    color: var(--text-primary);
}

.quiz-option input[type="radio"] {
    display: none;
}

.quiz-option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(201, 169, 110, 0.12);
    color: var(--text-primary);
    font-weight: 600;
}

.quiz-option span {
    flex: 1;
}

/* Nav buttons */
.quiz-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.quiz-nav .btn {
    flex: 1;
    justify-content: center;
}

/* Results */
.quiz-results {
    text-align: center;
}

.quiz-score-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 28px auto;
    background: rgba(201, 169, 110, 0.06);
}

.quiz-score-num {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent);
    line-height: 1;
}

.quiz-score-total {
    font-size: 1rem;
    color: var(--text-muted);
}

.quiz-verdict {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.quiz-bars {
    text-align: left;
    margin-bottom: 28px;
}

.quiz-bar-row {
    margin-bottom: 14px;
}

.quiz-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.quiz-bar-label span:last-child {
    color: var(--text-muted);
}

.quiz-bar-track {
    height: 8px;
    background: var(--bg-primary);
    border-radius: 99px;
    overflow: hidden;
}

.quiz-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #d4b896);
    border-radius: 99px;
    width: 0;
    transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quiz-actions {
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.quiz-actions h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.quiz-actions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-actions li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.quiz-actions li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.65rem;
    top: 3px;
}

.quiz-cta-result {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Recommendation Cards */
.reco-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    text-align: left;
}

.reco-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.reco-card {
    background: rgba(201, 169, 110, 0.04);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: left;
    transition: border-color 0.25s, background 0.25s;
    position: relative;
}

.reco-card:hover {
    border-color: rgba(201, 169, 110, 0.35);
    background: rgba(201, 169, 110, 0.08);
}

.reco-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 3px 10px;
    border-radius: 100px;
}

.reco-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 10px;
}

.reco-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.reco-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.82rem;
}

.quiz-cta-result p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* Responsive quiz */
@media (max-width: 768px) {
    .quiz-container {
        padding: 28px 20px;
        max-height: 95vh;
    }

    .quiz-question {
        font-size: 1.1rem;
    }

    .quiz-score-circle {
        width: 130px;
        height: 130px;
    }

    .quiz-score-num {
        font-size: 2.8rem;
    }
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }
}

/* ===== STORY VIDEO CARDS ===== */
.story-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 18px;
}

.story-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.story-card .play-big {
    transition: opacity 0.3s, transform 0.3s;
}

.story-card.playing .play-big {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

.story-card .story-who,
.story-card .story-metric,
.story-card q {
    position: relative;
    z-index: 2;
}

/* ===== FAQ SECTION ===== */
.faq-section .faq-item h4 {
    transition: color 0.3s;
}

.faq-section .faq-item h4:hover {
    color: var(--accent);
}

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
    transition: transform 0.3s, box-shadow 0.3s;
}

.guarantee-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.15);
}

/* ===== URGENCY BANNER ===== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.shift-header > div:first-child span {
    animation: pulse 2s infinite;
}

/* ===== BOOKING FORM ===== */
.quiz-booking {
    text-align: left;
}

.quiz-booking .quiz-title,
.quiz-booking .quiz-desc {
    text-align: center;
}

.quiz-booking .quiz-desc {
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.booking-field label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    width: 100%;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: var(--text-muted);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.booking-field textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-field select {
    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 d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.booking-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(201, 169, 110, 0.06);
    border: 1.5px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-top: 8px;
}

.booking-summary-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.booking-summary-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-summary-text strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.booking-summary-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.booking-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 8px;
}

.booking-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 40px 20px;
}

.booking-confirm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.booking-confirmation h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.booking-confirmation p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive booking */
@media (max-width: 600px) {
    .booking-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
