/* ========================================
   RENFO MUSCULAIRE DANSÉ - LANDING PAGE
   Dynamic & Punchy Styling - Adults
   ======================================== */

/* ========================================
   CSS VARIABLES - ENERGETIC PALETTE
   ======================================== */
:root {
    /* Primary Colors - Dynamic & Punchy */
    --dark: #0f0f1a;
    --dark-blue: #1a1a2e;
    --accent: #FF6B35;
    --accent-light: #FF8C5A;
    --accent-dark: #E55A25;
    --energy-pink: #FF2D78;
    --energy-purple: #8B5CF6;

    /* Warm Neutrals */
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-gap: 120px;
    --container-width: 1400px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 0 40px rgba(255, 107, 53, 0.4);
    --shadow-glow: 0 0 60px rgba(255, 107, 53, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark);
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--accent);
    text-align: center;
}

.section-title-light {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-align: left;
}

.section-subtitle {
    font-size: 20px;
    color: var(--cream);
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

.highlight-accent {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 45, 120, 0.08) 0%, transparent 50%);
    z-index: 0;
}

/* Energy Animated Elements */
.energy-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.energy-pulse {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: energyPulse 6s ease-in-out infinite;
}

.pulse-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pulse-2 {
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.12) 0%, transparent 70%);
}

@keyframes energyPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.energy-ring {
    position: absolute;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    animation: ringFloat 12s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
}

.ring-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

.ring-3 {
    width: 160px;
    height: 160px;
    top: 60%;
    right: 30%;
    animation-delay: 8s;
    border-color: var(--energy-pink);
}

@keyframes ringFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.2; }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    color: var(--cream);
}

.hero-badge {
    margin-bottom: 25px;
}

.hero-badge .logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--energy-pink));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    color: var(--cream);
}

/* Event Details */
.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.detail-icon {
    font-size: 22px;
}

.detail-text {
    font-size: 16px;
    color: var(--cream);
}

/* Price Box */
.price-box {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 30px;
    text-align: center;
}

.price-calculation {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
}

.price-main {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: var(--shadow-accent);
}

.price-per {
    font-size: 18px;
    color: var(--cream);
    opacity: 0.85;
    font-weight: 600;
}

.price-period {
    font-size: 16px;
    color: var(--cream);
    opacity: 0.75;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy-pink) 100%);
    color: var(--white);
    box-shadow: var(--shadow-accent);
    width: 100%;
    margin-bottom: 25px;
}

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

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

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

/* Urgency Bar */
.urgency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 45, 120, 0.12);
    border: 1px solid var(--energy-pink);
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 25px;
}

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

.urgency-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-item {
    font-size: 15px;
    color: var(--cream);
    opacity: 0.85;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    margin-top: 40px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 32px;
    color: var(--accent);
    opacity: 0.6;
}

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

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--accent);
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */
.pain-points {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, #1e0a2e 0%, var(--dark) 100%);
}

.pain-intro {
    margin-bottom: 60px;
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.pain-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.pain-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.pain-card p {
    font-size: 17px;
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.7;
}

/* Promise Block */
.promise-block {
    background: rgba(139, 92, 246, 0.08);
    border: 2px solid var(--energy-purple);
    border-radius: 24px;
    padding: 60px;
}

.promise-intro {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 40px;
    line-height: 1.7;
}

.promise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.promise-icon {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 5px;
}

.promise-text strong {
    font-size: 20px;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.promise-text p {
    font-size: 17px;
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.7;
}

.promise-tagline {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    line-height: 1.4;
}

.promise-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-mid {
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy-pink) 100%);
    color: var(--white);
    box-shadow: var(--shadow-accent);
    padding: 20px 50px;
    font-size: 19px;
}

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

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

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

/* ========================================
   SESSION SECTION
   ======================================== */
.session-section {
    padding: var(--section-gap) 0;
    background: var(--dark);
}

.session-timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.session-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    position: relative;
}

.session-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}

.session-step:last-child::before {
    display: none;
}

.session-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dark);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.3);
    flex-shrink: 0;
}

.session-marker.star {
    background: linear-gradient(135deg, var(--accent), var(--energy-pink));
    color: var(--white);
    font-size: 36px;
    border: none;
    animation: pulseMarker 2s ease-in-out infinite;
}

@keyframes pulseMarker {
    0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(255, 107, 53, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 107, 53, 0.6); }
}

.session-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 35px;
    border-left: 4px solid var(--accent);
}

.session-step-final .session-content {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.15);
}

.session-time {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(255, 107, 53, 0.15);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.session-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.session-content p {
    font-size: 17px;
    color: var(--cream);
    line-height: 1.8;
    opacity: 0.92;
}

.session-highlight {
    background: rgba(255, 107, 53, 0.12);
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 16px;
    color: var(--cream);
    line-height: 1.7;
}

/* ========================================
   WHY IT WORKS SECTION
   ======================================== */
.why-it-works {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--dark) 0%, #1e0a2e 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 45px;
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.why-card-featured {
    border: 2px solid var(--accent);
    background: rgba(255, 107, 53, 0.06);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent), var(--energy-pink));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 17px;
    color: var(--cream);
    line-height: 1.7;
    opacity: 0.95;
}

/* ========================================
   TRANSFORMATION / TESTIMONIALS SECTION
   ======================================== */
.transformation {
    padding: var(--section-gap) 0;
    background: var(--dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.testimonial-stars {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--cream);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--energy-pink));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--white);
    display: block;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--dark) 0%, #1e0a2e 100%);
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-q-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--cream);
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px 30px;
    font-size: 17px;
    color: var(--cream);
    line-height: 1.8;
    opacity: 0.95;
}

.faq-answer strong {
    color: var(--accent);
}

/* ========================================
   PRACTICAL INFO SECTION
   ======================================== */
.practical-info {
    padding: var(--section-gap) 0;
    background: var(--dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 17px;
    color: var(--cream);
    margin-bottom: 8px;
}

.info-detail {
    font-size: 15px;
    opacity: 0.8;
}

.price-highlight {
    color: var(--accent);
    font-size: 28px;
    font-weight: 800;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    position: relative;
    padding: var(--section-gap) 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e0a2e 50%, var(--dark) 100%);
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 45, 120, 0.06) 0%, transparent 50%);
    z-index: 0;
}

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

.final-cta-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: var(--shadow-accent);
}

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

.path {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
}

.path-no {
    border: 1px solid rgba(255, 45, 120, 0.4);
}

.path-yes {
    border: 2px solid var(--accent);
    background: rgba(255, 107, 53, 0.06);
}

.path h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.path-no h3 {
    color: var(--gray-300);
}

.path-yes h3 {
    color: var(--accent);
}

.path ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.path li {
    font-size: 18px;
    line-height: 1.6;
    padding-left: 35px;
    position: relative;
}

.path-no li {
    color: var(--gray-300);
}

.path-no li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--energy-pink);
    font-weight: 700;
}

.path-yes li {
    color: var(--cream);
}

.path-yes li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Final Offer */
.final-offer {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-new {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: var(--shadow-accent);
}

.offer-per {
    font-size: 18px;
    color: var(--cream);
    opacity: 0.8;
    margin-top: 5px;
}

.offer-details {
    text-align: left;
}

.offer-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.offer-sub {
    font-size: 16px;
    color: var(--cream);
    opacity: 0.8;
}

.cta-final {
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy-pink) 100%);
    color: var(--white);
    font-size: 20px;
    padding: 22px 50px;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: var(--shadow-accent);
}

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

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

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

.offer-urgency {
    font-size: 16px;
    color: var(--cream);
    font-weight: 600;
}

/* Final PS */
.final-ps {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
}

.final-ps p {
    font-size: 17px;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.final-ps strong {
    color: var(--accent);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--cream);
    opacity: 0.8;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 8px;
}

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

.footer-nav a {
    font-size: 15px;
    color: var(--cream);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.6;
}

/* ========================================
   FLOATING STICKY CTA
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    border-top: 2px solid var(--accent);
    padding: 15px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.floating-cta.visible {
    transform: translateY(0);
}

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

.floating-cta-text {
    display: flex;
    flex-direction: column;
}

.floating-cta-text strong {
    font-size: 18px;
    color: var(--accent);
}

.floating-cta-text span {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.8;
}

.cta-floating {
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy-pink) 100%);
    color: var(--white);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
}

.cta-floating:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 44px;
    }

    .section-title-light {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 34px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .section-title-light {
        font-size: 28px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .event-details {
        flex-direction: column;
        gap: 12px;
    }

    .price-main {
        font-size: 44px;
    }

    .pain-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .promise-block {
        padding: 35px 25px;
    }

    .promise-intro {
        text-align: center;
    }

    .session-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .session-marker {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .session-content {
        padding: 28px 20px;
    }

    .session-content h3 {
        font-size: 22px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

    .final-offer {
        padding: 35px 25px;
    }

    .offer-content {
        flex-direction: column;
        gap: 25px;
    }

    .offer-new {
        font-size: 56px;
    }

    .offer-details {
        text-align: center;
    }

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

    .floating-cta-content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        text-align: center;
    }

    .cta-floating {
        width: 100%;
    }

    /* Hide decorative elements on mobile */
    .energy-elements {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .final-cta-title {
        font-size: 30px;
    }

    .offer-new {
        font-size: 48px;
    }

    .promise-tagline {
        font-size: 24px;
    }

    .path h3 {
        font-size: 24px;
    }
}
