/* Importation de Google Fonts pour RTL uniquement */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500&display=swap');

@font-face {
    font-family: 'Denominary';
      src: url('fonts/denominary-condensed-font-2024-12-16-09-30-49-utc/Denominary 1.1/Denominary 1.1 TTF/Denominary-Bold.ttf') format('truetype');

    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Just Sans';
    src: url('fonts/just-sans-clean-modern-minimal-geometric-typeface-2025-04-02-18-08-44-utc/Web Fonts/JustSans-Regular.woff2') format('woff2'),
         url('fonts/just-sans-clean-modern-minimal-geometric-typeface-2025-04-02-18-08-44-utc/Web Fonts/JustSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* Variables CSS (inchangées) */
:root {
    --primary-bg: #101010;
    --primary-cta: #fb5046;
    --text-light: #ffffff;
    --text-secondary: #cccccc;
    --accent-color: #ff6b35;
    --gradient-primary: linear-gradient(135deg, #fb5046 0%, #ff6b35 100%);
    --shadow-light: 0 4px 20px rgba(251, 80, 70, 0.3);
    --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.3);
    --border-radius: 15px;
    --transition: all 0.3s ease;

    --font-size-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
    --font-size-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --font-size-lg: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --font-size-xl: clamp(1.56rem, 1.4rem + 0.8vw, 2rem);
    --font-size-h3: clamp(1.95rem, 1.75rem + 1vw, 2.5rem);
    --font-size-h2: clamp(2.44rem, 2.1rem + 1.7vw, 3.125rem);
    --font-size-h1: clamp(3.05rem, 2.5rem + 2.75vw, 4rem);
}

/* === Support RTL === */
[dir="rtl"] {
    font-family: 'IBM Plex Sans Arabic', 'Segoe UI', 'Arial', sans-serif;
    text-align: right;
}

/* === Support LTR avec nouvelles polices === */
[dir="ltr"] {
    font-family: 'Just Sans', 'Arial', sans-serif;
    text-align: left;
}

/* Titres spécifiques en Denominary Bold */
[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] .title,
[dir="ltr"] .heading {
    font-family: 'Just Sans', sans-serif;
    font-weight: bold;
    text-transform: capitalize;
}



/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    /* On applique la taille de base ici */
    font-size: var(--font-size-base);
    min-height: 100vh;
}

/* Utilitaires */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header et Navigation */
.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-sticky.scrolled {
    background: rgba(16, 16, 16, 0.98);
    box-shadow: var(--shadow-dark);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: var(--font-size-lg);
    text-decoration: none;
    color: var(--text-light);
}

.navbar-brand:hover {
    color: var(--text-light);
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-cta);
}

.navbar-toggler {
    display: none;
    background: none;
    border: 1px solid var(--text-secondary);
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 5px;
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

.main-content section {
    padding: 4rem 0;
}

/* Opening Section */
.opening-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #101010 0%, #1a1a1a 100%);
    position: relative;
}

.opening-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(251, 80, 70, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.main-title {
    font-size: var(--font-size-h1);
    /* AVANT: clamp(2.5rem, 5vw, 3.5rem) */
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(251, 80, 70, 0.5));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(251, 80, 70, 0.8));
    }
}

.content-block {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.large-text {
    font-size: var(--font-size-lg);
    /* AVANT: clamp(1.2rem, 2.5vw, 1.5rem) */
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-align: center;
}

.breakthrough-statement {
    background: linear-gradient(135deg, rgba(251, 80, 70, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--primary-cta);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.breakthrough-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(251, 80, 70, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.breakthrough-text {
    font-size: var(--font-size-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: var(--font-size-h3);
    color: var(--primary-cta);
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Reality Section */
.reality-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.reality-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: var(--font-size-h1);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.reality-statement {
    background: rgba(251, 80, 70, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    border: 1px solid rgba(251, 80, 70, 0.3);
}

.harsh-truth {
    font-size: var(--font-size-h2);
    color: var(--primary-cta);
    margin-bottom: 1rem;
    font-weight: bold;
}

.reality-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.reality-situations {
    margin-top: 4rem;
}

.situation-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-cta);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.situation-block:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-light);
}

.situation-question {
    font-size: var(--font-size-xl);
    color: var(--primary-cta);
    margin-bottom: 1rem;
    font-weight: 600;
}

.situation-answer {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.rejection {
    color: #ff4444;
    font-weight: bold;
}

.frustration-expression {
    text-align: center;
    margin-top: 3rem;
}

.frustration-text {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

/* Questions Section */
.questions-section {
    background: var(--primary-bg);
}

.questions-block {
    text-align: center;
}

.main-question {
    font-size: var(--font-size-h3);
    color: var(--primary-cta);
    margin-bottom: 3rem;
    font-weight: 700;
}

.options-list {
    margin-bottom: 3rem;
}

.option-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.option-text {
    font-size: var(--font-size-base);
    flex: 1;
}

.option-note {
    color: var(--primary-cta);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.despair-question {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.despair-text {
    font-size: var(--font-size-xl);
    color: #ff4444;
    font-weight: bold;
}

/* Deep Questions Section */
.deep-questions-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.deep-questions-block {
    text-align: center;
}

.deep-question {
    font-size: var(--font-size-xl);
    color: var(--primary-cta);
    margin-bottom: 2rem;
    font-weight: 600;
}

.acceptance-items {
    margin: 2rem 0;
}

.acceptance-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.acceptance-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.acceptance-note {
    color: #4CAF50;
    font-weight: bold;
}

.real-questions {
    margin: 3rem 0;
}

.real-question {
    font-size: var(--font-size-lg);
    color: var(--primary-cta);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.refusal-statements {
    margin: 3rem 0;
}

.refusal-text {
    font-size: var(--font-size-lg);
    color: #ff4444;
    margin-bottom: 1rem;
    font-weight: 600;
}

.demands-section {
    background: rgba(251, 80, 70, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(251, 80, 70, 0.3);
}

.demand-text {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.demand-text.highlight {
    color: var(--primary-cta);
    font-size: var(--font-size-h3);
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Beginning Section */
.beginning-section {
    background: var(--primary-bg);
}

.beginning-statement {
    text-align: center;
}

.beginning-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: var(--primary-cta);
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-begins {
    font-size: var(--font-size-h3);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.flip-question {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    font-weight: 600;
}

/* Common Story Section */
.common-story-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.story-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.story-opener {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.attempts-list {
    margin-bottom: 3rem;
}

.attempt-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #ff4444;
    position: relative;
    padding-left: 3rem;
    transition: var(--transition);
}

.attempt-item::before {
    content: '❌';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-base);
}

.attempt-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.attempt-item p {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
}

.self-blame {
    text-align: center;
    margin-bottom: 2rem;
}

.blame-text {
    font-size: var(--font-size-lg);
    color: #ff4444;
    font-style: italic;
}

.revelation {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.revelation-text {
    font-size: var(--font-size-xl);
    color: #4CAF50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.revelation-highlight {
    font-size: var(--font-size-h3);
    color: var(--primary-cta);
    font-weight: 700;
}

.truth-statement {
    text-align: center;
}

.truth-text {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    font-weight: 600;
}

/* Hidden Truth Section */
.hidden-truth-section {
    background: var(--primary-bg);
}

.truth-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.truth-opener {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.truth-title {
    font-size: var(--font-size-h3);
    color: var(--primary-cta);
    font-weight: 700;
}

.recruiter-reality {
    margin-bottom: 3rem;
}

.reality-fact {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.reality-fact.critical {
    color: var(--primary-cta);
    font-size: var(--font-size-xl);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

.critical-truth {
    background: linear-gradient(135deg, rgba(251, 80, 70, 0.2), rgba(255, 107, 53, 0.2));
    border: 2px solid var(--primary-cta);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.critical-text {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    font-weight: 700;
}

.strange-fact {
    margin: 3rem 0;
    text-align: center;
}

.strange-intro {
    font-size: var(--font-size-xl);
    color: var(--primary-cta);
    margin-bottom: 1rem;
    font-weight: 600;
}

.strange-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.priority-truth {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.priority-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.priority-simple {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.priority-highlight {
    font-size: var(--font-size-xl);
    color: var(--primary-cta);
    font-weight: 700;
}

.transformation {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.transformation-text,
.transformation-result,
.transformation-change,
.transformation-power {
    font-size: var(--font-size-lg);
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.transformation-power {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.solution-exists {
    text-align: center;
    margin: 3rem 0;
}

.solution-text {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    font-weight: 600;
}

.new-approach {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.approach-gil {
    font-size: var(--font-size-lg);
    color: var(--primary-cta);
    font-weight: 600;
    margin-bottom: 1rem;
}

.approach-power {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    font-weight: 700;
}

/* Program Section */
.program-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.program-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.program-description {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-structure {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.program-stages {
    margin-bottom: 3rem;
}

.stage-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stage-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stage-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.stage-content {
    flex: 1;
}

.stage-title {
    font-size: var(--font-size-xl);
    color: var(--primary-cta);
    margin-bottom: 1rem;
    font-weight: 600;
}

.stage-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

.program-benefits {
    text-align: center;
}

.benefit-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--primary-bg);
}

.pricing-container {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-cta);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.price-display {
    margin-bottom: 2rem;
}

.old-price {
    font-size: var(--font-size-xl);
    text-decoration: line-through;
    color: var(--text-secondary);
    margin-right: 1rem;
}

.new-price {
    font-size: var(--font-size-h1);
    font-weight: bold;
    color: var(--primary-cta);
}

.pricing-cta {
    margin-top: 2rem;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.bonus-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-title {
    font-size: var(--font-size-h3);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 700;
}

.bonus-subtitle {
    font-size: var(--font-size-xl);
    color: var(--primary-cta);
    font-weight: 600;
}

.bonus-list {
    margin-bottom: 3rem;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.bonus-icon {
    font-size: var(--font-size-lg);
    color: var(--primary-cta);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.bonus-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    flex: 1;
    line-height: 1.6;
}

.next-step {
    text-align: center;
}

/* Target Audience Section */
.target-audience-section {
    background: var(--primary-bg);
}

.audience-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.audience-title {
    font-size: var(--font-size-h3);
    color: var(--primary-cta);
    margin-bottom: 1rem;
    font-weight: 700;
}

.audience-intro-text {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    font-weight: 600;
}

.audience-list {
    margin-bottom: 3rem;
}

.audience-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-cta);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.audience-item p {
    margin: 0;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.start-timing {
    text-align: center;
}

.timing-question {
    font-size: var(--font-size-xl);
    color: var(--primary-cta);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timing-answer {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: var(--font-size-h3);
    color: var(--text-light);
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h5 {
    margin: 0;
    font-size: var(--font-size-lg);
    color: var(--text-light);
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    margin: 0;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--primary-bg);
    padding: 5rem 0;
}

.final-cta-container {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-cta);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.countdown-timer {
    margin-bottom: 2rem;
}

.countdown-timer h4 {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    min-width: 70px;
    text-align: center;
}

.timer-unit span {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: bold;
    color: var(--primary-cta);
}

.timer-unit small {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.final-price {
    margin-bottom: 2rem;
}

.final-price .old-price {
    font-size: var(--font-size-lg);
    text-decoration: line-through;
    color: var(--text-secondary);
    margin-right: 1rem;
}

.final-price .new-price {
    font-size: var(--font-size-h2);
    font-weight: bold;
    color: var(--primary-cta);
}

/* CTA Button */
.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 1.2rem 3rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 80, 70, 0.4);
    color: white;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-brand span {
font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-light);
}

.footer p {
    color: var(--text-secondary);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-cta);
}

/* Fixed Elements */
.fixed-elements {
    position: fixed;
    z-index: 1000;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 80, 70, 0.4);
}

.whatsapp-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
font-size: var(--font-size-lg);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.mobile-cta .btn {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1001;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner .btn {
font-size: var(--font-size-sm);
    padding: 0.5rem 1rem;
}

.cookie-banner p {
    color: var(--text-secondary);
    margin: 0;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
}

.language-toggle .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.5rem 1rem;
font-size: var(--font-size-sm);
}

.language-toggle .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .navbar-collapse {
        background: rgba(16, 16, 16, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .mobile-cta {
        display: block;
    }

    .stage-item {
        flex-direction: column;
        text-align: center;
    }

    .stage-number {
        margin-bottom: 1rem;
    }

    .acceptance-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .timer-display {
        justify-content: center;
    }

    .option-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .main-content section {
        padding: 2rem 0;
    }

    .container {
        padding: 0 0.5rem;
    }

    .breakthrough-statement,
    .reality-statement,
    .demands-section,
    .critical-truth,
    .transformation,
    .pricing-container,
    .final-cta-container {
        padding: 2rem 1rem;
    }

    .timer-unit {
        min-width: 60px;
        padding: 0.5rem;
    }

    .whatsapp-button {
        right: 15px;
        bottom: 75px;
    }

    .scroll-to-top {
        right: 15px;
        bottom: 15px;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-bg: #000000;
        --text-light: #ffffff;
        --primary-cta: #ff0000;
        --text-secondary: #cccccc;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {

    .header-sticky,
    .fixed-elements,
    .cookie-banner,
    .language-toggle {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .main-content {
        padding-top: 0 !important;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus Styles */
.cta-button:focus,
.faq-question:focus,
.nav-link:focus,
.scroll-to-top:focus {
    outline: 2px solid var(--primary-cta);
    outline-offset: 2px;
}

/* Animations for better UX */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Selection colors */
::selection {
    background: var(--primary-cta);
    color: white;
}

::-moz-selection {
    background: var(--primary-cta);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-cta);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
font-size: var(--font-size-base);
    border-radius: 0.375rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: var(--primary-cta);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-cta);
    border-color: var(--primary-cta);
    color: white;
}

.btn-outline-light {
    color: var(--text-light);
    border-color: var(--text-light);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-bg);
}

.btn-sm {
    padding: 0.25rem 0.5rem;
font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 0.5rem 1rem;
font-size: var(--font-size-lg);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.me-2 {
    margin-right: 0.5rem;
}

.text-end {
    text-align: end;
}

@media (max-width: 767.98px) {

    .col-md-4,
    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {

    .col-lg-6,
    .col-lg-8,
    .col-lg-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Final adjustments for better performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Ensure proper spacing and layout */
.main-content>section:first-child {
    padding-top: 6rem;
}

.main-content>section:last-child {
    padding-bottom: 6rem;
}