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

:root {
    /* Colors - Red Theme */
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --primary-red-light: #ef4444;
    --accent-red: #f87171;
    
    --dark-bg: #0a0a0a;
    --dark-bg-secondary: #151515;
    --dark-bg-tertiary: #1f1f1f;
    
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    
    --border-color: #2a2a2a;
    --border-color-light: #3a3a3a;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(220, 38, 38, 0.1);
    --shadow-md: 0 4px 16px rgba(220, 38, 38, 0.15);
    --shadow-lg: 0 8px 32px rgba(220, 38, 38, 0.2);
    --shadow-glow: 0 0 20px rgba(220, 38, 38, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, transparent 0%, var(--dark-bg) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(220, 38, 38, 0.03) 2px,
            rgba(220, 38, 38, 0.03) 4px
        );
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: var(--shadow-glow);
    animation: fadeInDown 0.8s ease;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-red-light), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 1s ease 0.8s both;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================================
   BUTTONS
   ========================================= */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-primary:active {
    transform: translateY(-1px);
}

.cta-large {
    padding: 20px 48px;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: var(--shadow-lg), var(--shadow-glow); }
}

/* Animation pulsante pour tout le bouton */
.button-pulse {
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(0.92);
    }
}

/* =========================================
   VALUE COMPARISON SECTION - Alex Hormozi Style
   ========================================= */
.value-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
}

.value-card {
    background: var(--dark-bg-tertiary);
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red), var(--primary-red));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.competitor-prices {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

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

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: var(--dark-bg-secondary);
    border-radius: 8px;
    margin-top: 10px;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.total-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.crossed {
    position: relative;
    color: var(--text-muted);
}

.crossed::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    transform: translateY(-50%) rotate(-5deg);
}

.arrow-divider {
    font-size: 3rem;
    color: var(--primary-red);
    animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.our-price {
    background: linear-gradient(135deg, var(--primary-red-dark), var(--primary-red));
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.our-price::before {
    content: '🔥';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.price-highlight {
    position: relative;
    z-index: 1;
}

.price-main {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.price-period {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.value-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.value-tagline {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 40px;
    color: var(--accent-red);
}

.value-tagline i {
    margin-right: 10px;
    animation: fireFlicker 1.5s infinite;
}

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

/* =========================================
   PROBLEM/SOLUTION SECTION
   ========================================= */
.problem-solution {
    padding: var(--section-padding);
    background: var(--dark-bg-secondary);
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.comparison-card {
    background: var(--dark-bg-tertiary);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.comparison-card.problem {
    border-color: #4b5563;
}

.comparison-card.solution {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, var(--dark-bg-tertiary), rgba(220, 38, 38, 0.05));
}

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

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.05rem;
}

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

.comparison-card.solution li {
    color: var(--text-primary);
}

.comparison-card.solution strong {
    color: var(--primary-red);
}

/* =========================================
   PROGRAM SECTION
   ========================================= */
.program-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg-secondary), var(--dark-bg));
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.module-card {
    background: var(--dark-bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: all var(--transition-normal);
}

.module-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.module-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, var(--dark-bg-tertiary), rgba(220, 38, 38, 0.08));
    box-shadow: var(--shadow-md);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.module-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.15;
    line-height: 1;
}

.module-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.module-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    font-style: italic;
}

.module-content {
    list-style: none;
}

.module-content li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.module-content li i {
    color: var(--primary-red);
    margin-top: 4px;
    flex-shrink: 0;
}

.module-content strong {
    color: var(--primary-red);
    font-weight: 700;
}

.program-bonus {
    margin-top: 40px;
}

.bonus-card {
    background: linear-gradient(135deg, var(--primary-red-dark), var(--primary-red));
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.bonus-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.bonus-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.bonus-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--dark-bg-tertiary);
    border: 3px solid var(--primary-red);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 15px;
}

.price {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-red);
}

.period {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 30px;
}

.pricing-duration {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

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

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

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

.pricing-features li i {
    color: var(--primary-red);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pricing-features strong {
    color: var(--primary-red);
    font-weight: 700;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-guarantee i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.pricing-faq {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--dark-bg-tertiary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--primary-red);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-red-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

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

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-subtext {
    margin-top: 25px;
    font-size: 1rem;
    opacity: 0.8;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark-bg-secondary);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    font-style: italic;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .price-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .arrow-divider {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 20px 60px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 40px 25px;
    }
    
    .price-main {
        font-size: 4rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .cta-large {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
    
    .module-card {
        padding: 25px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .price {
        font-size: 4rem;
    }
}



:root { --anchor-offset: 0px; }

#pricing {                 /* l'ID est maintenant sur la carte */
  scroll-margin-top: var(--anchor-offset);
}

/* Centrer le bouton "Prend Ma MasterClass" dans la carte */
.pricing-card .cta-button {
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
  width: fit-content;
}

/* Laisser respirer le badge, sans qu'il soit coupé */
.pricing-card { padding-top: 80px; }
.pricing-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card {
  /* On garde overflow hidden pour l’effet décoratif, mais on libère
     de l’espace en haut pour que le badge ne soit plus coupé */
  padding-top: 80px; /* > 50px initial, laisse passer le badge */
}
.pricing-badge {
  top: 18px;                 /* Badge à l’intérieur de la carte */
  left: 50%;
  transform: translate(-50%, 0);  /* plus de translateY négatif */
}

/* 2) Centrer le bouton "PREND MA MASTERCLASS" dans la carte */
.pricing-card .cta-button {
  display: flex;             /* devient un bloc, pas inline */
  justify-content: center;
  margin: 24px auto 0;       /* centrage horizontal */
  width: fit-content;        /* largeur au contenu */
}

/* (si ton bouton n'a pas la classe .cta-button, tu peux cibler .cta-primary aussi) */
.pricing-card .cta-primary {
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
  width: fit-content;
}

/* 3) Ancre vers la section Pricing : en butée en haut + bouton visible
   - Par défaut, on ne considère PAS de header fixe (0px).
   - Si tu as un header sticky, mets la valeur réelle (ex: 72px). */
:root { --anchor-offset: 0px; }  /* mets ici la hauteur de ton header si besoin */
html { scroll-padding-top: var(--anchor-offset); }

/* suppose que ta section a id="pricing" (href="#pricing") */
#pricing { scroll-margin-top: var(--anchor-offset); }

/* Quand on arrive sur la section via l’ancre, on supprime l’espace au-dessus
   pour que la carte “meilleure offre” soit en butée en haut de la fenêtre. */
#pricing:target { padding-top: 0; }

/* Optionnel : si tu ajoutes id="meilleure-offre" directement sur la carte,
   on gère aussi le décalage d’ancre pile sur la carte. */
#meilleure-offre { scroll-margin-top: var(--anchor-offset); }

/* Ajustement mobile : un peu moins d’espace pour le badge si l’écran est étroit */
@media (max-width: 480px) {
  .pricing-card { padding-top: 64px; }
}



/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }