/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
    padding-top: 80px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.highlight {
    color: #e53e3e;
    font-weight: 700;
}

.strikethrough {
    text-decoration: line-through;
    color: #a0aec0;
}

/* Header */
.main-header {
    background: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f39c12;
}

/* Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(243, 156, 18, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #f39c12;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-menu-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-menu-nav a:hover {
    color: #f39c12;
}

.mobile-menu-nav .cta-button {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: #f39c12 !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e2e8f0;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero .highlight {
    color: #f6ad55;
}

/* Video Container */
.video-container {
    margin: 2rem auto;
    max-width: 600px;
}

.demo-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.demo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* CTA Buttons */
.cta-container {
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

.cta-button.primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.4);
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.3rem;
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: #e53e3e;
    color: white;
}

.header-cta:hover {
    background: #c53030;
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    color: #a0aec0;
    font-style: italic;
}

.hero-precommande-text {
    color: #e53e3e !important;
    font-weight: 600 !important;
    font-style: normal !important;
    background: rgba(229, 62, 62, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.guarantee-badge {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Countdown Banner */
.countdown-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: #111;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(243,156,18,0.25);
    margin: 0 auto 1rem auto;
    width: fit-content;
}

.countdown-banner .label {
    font-weight: 800;
    letter-spacing: 0.2px;
}

.countdown-banner .countdown {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.countdown-banner .time {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.85);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    min-width: 56px;
}

.countdown-banner .time span {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.1;
    color: #111;
}

.countdown-banner .time small {
    font-size: 0.7rem;
    color: #333;
    opacity: 0.85;
}

.countdown-banner .sep {
    font-weight: 900;
    color: rgba(0,0,0,0.65);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

/* Market Shift Section */
.market-shift {
    padding: 4rem 0;
    background-color: #fdfaef;
}

/* Demo Systems Section */
.demo-systems {
    padding: 3rem 0;
    background: #f8f9fa;
}

.demo-caption {
    text-align: center;
    font-weight: 600;
    padding: 0.75rem;
    background: #333;
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.demo-caption p {
    margin: 0;
}

/* Testimonial Preview */
.testimonial-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Hero Video Container */
.hero-video-container {
    margin: 2rem auto;
    max-width: 600px;
}

.hero-video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.hero-video-caption {
    background: #333;
    color: white;
    padding: 0.75rem;
    text-align: center;
}

.hero-video-caption p {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Pre-order Bonus Section */
.preorder-bonus-section {
    margin: 2.5rem auto 2rem auto;
    padding: 2rem;
    background-color: #fff1e0;
    border: 2px dashed #f39c12;
    border-radius: 12px;
    max-width: 750px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color: #333 !important;
}

.preorder-bonus-section * {
    color: inherit !important;
}

.preorder-bonus-title {
    text-align: center;
    font-size: 1.6rem;
    color: #111 !important;
    margin-top: 0;
    font-weight: 800;
}

.preorder-bonus-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #d35400 !important;
}

.preorder-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.preorder-bonus-content {
    text-align: left;
}

.preorder-bonus-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333 !important;
}

.preorder-bonus-highlight {
    font-weight: 700;
    background: #f39c12;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
}

.preorder-bonus-list {
    font-size: 0.95rem;
    padding-left: 20px;
    list-style: '✅ ';
    margin-top: 1rem;
    color: #333 !important;
}

.preorder-bonus-list li {
    padding-left: 10px;
    margin-bottom: 0.5rem;
    color: #333 !important;
}

.preorder-bonus-list li:last-child {
    margin-bottom: 0;
}

.preorder-bonus-image-container {
    text-align: center;
}

.preorder-bonus-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.preorder-bonus-image-caption {
    font-size: 0.8rem;
    text-align: center;
    color: #666 !important;
    margin-top: 0.5rem;
}

/* CTA Container Styles */
.cta-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-badge {
    background: #e8f5e8;
    color: #2d5016;
    padding: 0.35rem 0.75rem;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.85rem;
}

.cta-pricing {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* CTA Group */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Special Sections */
.special-section {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.special-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.special-section p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.special-section-highlight {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Personas Grid */
.personas-section {
    padding: 4rem 0;
    background-color: #fdfaef;
}

.persona-card h3 {
    color: #f39c12;
}

/* Three Phases Grid */
.phase-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.phase-badge-1 {
    background: #e74c3c;
}

.phase-badge-2 {
    background: #f39c12;
}

.phase-badge-3 {
    background: #27ae60;
}

.phase-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid;
    position: relative;
}

.phase-card h3 {
    color: #1a202c;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.phase-card ul {
    margin-bottom: 1.5rem;
}

.phase-card-1 {
    border-left-color: #e74c3c;
}

.phase-card-2 {
    border-left-color: #f39c12;
}

.phase-card-3 {
    border-left-color: #27ae60;
}

.phase-result-box {
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #f39c12;
}

.phase-result-box-1 {
    background: #fef5e7;
}

.phase-result-box-2 {
    background: #fef5e7;
}

.phase-result-box-3 {
    background: #f0fff4;
    border-left-color: #27ae60;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card h4 {
    font-size: 2.5rem;
    color: #f39c12;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.stat-card .source {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    margin-top: auto;
}

.market-conclusion {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.market-graphs-small {
    max-width: 60%;
    display: block;
    margin: 1.5rem auto;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    opacity: 0.9;
}

/* Problem Section */
.problem {
    background-color: #ffffff;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-meme {
    text-align: center;
    margin: 2rem 0;
}

.problem-meme img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.problem-conclusion {
    background-color: #fed7d7;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e53e3e;
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* Who Is It For Section */
.who-is-it-for {
    padding: 4rem 0;
    background-color: #fdfaef;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.persona-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.persona-card h3 {
    color: #f39c12;
}

/* Solution Section */
.solution {
    background-color: #f7fafc;
}

.solution .lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.solution > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.solution h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

/* Transformation Grid */
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.transformation-grid::before {
    content: "VS";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    z-index: 10;
    border: 4px solid white;
}

.transformation-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.transformation-box.before {
    border-left: 5px solid #e74c3c;
}

.transformation-box.before h4 {
    color: #e74c3c;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transformation-box.after {
    border-left: 5px solid #27ae60;
}

.transformation-box.after h4 {
    color: #27ae60;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transformation-box ul {
    list-style: none;
    padding: 0;
}

.transformation-box ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.transformation-box.before ul li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.transformation-box.after ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* P.I.L.O.T.E. Grid */
.pilote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pilote-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #e53e3e;
}

.pilote-letter {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.pilote-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.pilote-content p {
    color: #4a5568;
    margin-bottom: 0;
}

/* Instructor Section */
.instructor {
    background-color: #ffffff;
}

.instructor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.instructor-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.instructor-bio h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Three Phases Section */
.three-phases {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.phase-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
}

/* Use Cases Section */
.use-cases {
    padding: 4rem 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid;
}

.use-case-category-1 {
    border-left-color: #e74c3c;
}

.use-case-category-2 {
    border-left-color: #f39c12;
}

.use-case-category-3 {
    border-left-color: #27ae60;
}

.use-case-category h3 {
    margin-bottom: 1.5rem;
}

.use-case-category-1 h3 {
    color: #e74c3c;
}

.use-case-category-2 h3 {
    color: #f39c12;
}

.use-case-category-3 h3 {
    color: #27ae60;
}

.use-case-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.use-case-item h4 {
    color: #1a202c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.use-case-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.use-case-roi {
    background: #e8f5e8;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #2d5016;
}

.use-case-roi-orange {
    background: #fff7e6;
    color: #b7791f;
}

/* Modules Section */
.modules {
    background-color: #f7fafc;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.module-number {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.module-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.module-card p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.module-card ul {
    color: #4a5568;
    padding-left: 1.5rem;
}

.module-card ul li {
    margin-bottom: 0.5rem;
}

/* Stack Technique Section */
.stack-technique {
    padding: 3rem 0;
    background: #fafafa;
}

/* Social Proof Section */
.social-proof {
    background-color: #ffffff;
}

.testimonial-grid {
    margin-top: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e53e3e;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-card p:first-child {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card p:last-child {
    font-weight: bold;
    color: #1a202c;
    margin-bottom: 0;
}

/* Section Livrables */
.livrables {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.livrables-header {
    text-align: center;
    margin-bottom: 4rem;
}

.livrables-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.livrables .section-title {
    color: #1a202c;
    margin-bottom: 1rem;
}

.livrables .lead {
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.livrables-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 700;
}

.livrables-subtitle .icon {
    font-size: 1.8rem;
}

/* Modules visuels */
.livrables-modules {
    margin-bottom: 4rem;
}

.modules-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.module-visual-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.module-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #f39c12;
}

.module-visual-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.module-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 12px;
}

.module-label {
    background: #f39c12;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.module-visual-card h4 {
    color: #1a202c;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.module-visual-content p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.module-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.module-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    font-size: 0.9rem;
}

.module-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.module-outcome {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #2d5016;
}

/* Bonus visuels */
.livrables-bonus {
    margin-bottom: 3rem;
}

.bonus-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.bonus-visual-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.bonus-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #f39c12;
}

.bonus-visual-card.bonus-highlight {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-color: #f39c12;
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bonus-visual-card h4 {
    color: #1a202c;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.bonus-visual-card p {
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.bonus-value {
    font-weight: 700;
    color: #e74c3c;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    padding: 0.3rem 0.8rem;
    background: #fff5f5;
    border-radius: 8px;
    border: 1px solid #fed7d7;
}

.bonus-tag {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: auto;
}

/* Total value box */
.total-value-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto 3rem;
    border: 3px solid #f39c12;
}

.value-breakdown {
    margin-bottom: 2rem;
}

.value-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.1rem;
}

.value-line.total {
    border-bottom: none;
    border-top: 2px solid #f39c12;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1a202c;
}

.value-amount {
    font-weight: 600;
    color: #f39c12;
}

.actual-price {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 12px;
}

.actual-price p {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.old-price {
    font-size: 1.5rem;
    color: #a0aec0;
    text-decoration: line-through;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e53e3e;
}

.discount {
    background: #e53e3e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
}

/* Section Précommande */
.precommande-highlight {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 3px solid #f39c12;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.precommande-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f39c12, #e67e22, #d35400);
}

.precommande-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.precommande-title {
    color: #1a202c;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.precommande-pricing {
    margin-bottom: 1.5rem;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-today, .price-later {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 16px;
    min-width: 200px;
    flex: 1;
}

.price-today {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 2px solid #27ae60;
    transform: scale(1.05);
}

.price-later {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #e53e3e;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-today .price-value {
    color: #27ae60;
}

.price-later .price-value {
    color: #e53e3e;
}

.price-benefit {
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 500;
}

.price-arrow {
    font-size: 2rem;
    color: #f39c12;
    font-weight: bold;
}

.precommande-savings {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

/* CTA Livrables */
.livrables-cta {
    text-align: center;
}

.livrables-cta .cta-button {
    margin-bottom: 1rem;
}

.livrables-cta .guarantee-badge {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.offer .section-title {
    color: white;
}

.offer .lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #e2e8f0;
}

.offer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.main-offer {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.main-offer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    color: #f6ad55;
    font-weight: 700;
}

.bonus-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #f6ad55;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.15), rgba(237, 137, 54, 0.1));
    border: 2px solid #f6ad55;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(246, 173, 85, 0.3);
    border-color: #ed8936;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f6ad55, #ed8936);
}

.bonus-number {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: #1a202c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.3);
}

.bonus-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
}

.bonus-card p {
    color: #e2e8f0;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Pricing Summary */
.pricing-summary {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.pricing-summary h3 {
    margin-bottom: 2rem;
    color: #f6ad55;
}

.pricing-breakdown {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

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

.pricing-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f6ad55;
    font-size: 1.3rem;
}

.final-price {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: 12px;
}

.final-price h2 {
    margin-bottom: 0;
    font-size: 2rem;
}

.final-price .highlight {
    color: #f6ad55;
    font-size: 2.5rem;
}

/* Last Chance Section */
.last-chance {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

/* Final CTA Section */
.final-cta {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee {
    margin-top: 3rem;
}

.guarantee p {
    margin-bottom: 0;
}

/* Objections Section */
.objections {
    padding: 4rem 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.objection-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

/* FAQ Section */
.faq {
    background-color: #f7fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-category-btn.active, 
.faq-category-btn:hover {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: #e53e3e;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

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

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.site-footer {
    background: #111;
    color: #fff;
    padding: 2rem 0;
        text-align: center;
    }

.site-footer nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer nav a {
    color: #fff;
    text-decoration: none;
}

/* Scroll End Message */
.scroll-end-message {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
        text-align: center;
    }
    
.scroll-end-message.show {
    transform: translateY(0);
    opacity: 1;
}

.scroll-end-message .close-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-end-message .close-btn:hover {
    opacity: 1;
}

.scroll-end-message .emoji {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.scroll-end-message .code {
    background: #333;
    color: #f39c12;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .instructor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .instructor-image {
        margin: 0 auto 2rem;
        max-width: 250px;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transformation-grid::before {
        top: calc(50% - 1rem);
            font-size: 1.2rem;
        padding: 0.8rem 1.2rem;
    }
        }

        @media (max-width: 768px) {
    /* Mobile Navigation */
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
            display: flex;
    }

    /* Header adjustments */
            .main-header {
                padding: 0.8rem 0;
            }

            .logo {
                font-size: 1.3rem;
            }

            .header-cta {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
            }

            body {
                padding-top: 70px;
            }

    /* Hero section */
            .hero {
                padding: 2rem 0;
            }

            .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

            .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    /* Typography */
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Container */
            .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Sections */
    .market-shift, .problem, .solution, .instructor, 
    .modules, .offer, .final-cta {
        padding: 2.5rem 0;
    }

    /* CTA buttons */
    .cta-button {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: none;
        margin: 0.5rem 0;
    }

    .cta-button.primary {
        font-size: 1rem;
        padding: 1.2rem 1rem;
    }

    .cta-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Grids */
    .stats-grid, .personas-grid, .phases-grid, 
    .use-cases-grid, .modules-grid, .bonus-grid, 
    .objections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demo-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .demo-item iframe {
        height: 180px;
    }

    /* Cards */
    .stat-card, .transformation-box, .phase-card, 
    .module-card, .bonus-card, .objection-card,
    .module-visual-card, .bonus-visual-card {
        padding: 1.5rem;
    }

    .stat-card h4 {
        font-size: 2rem;
    }

    /* PILOTE grid */
    .pilote-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pilote-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .pilote-letter {
        margin-right: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Video containers */
    .video-container {
        margin: 1.5rem auto;
    }

    /* Problem list */
    .problem-list li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    /* Market graphs */
    .market-graphs-small {
        max-width: 90%;
    }

    /* Module numbers */
    .module-number {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Pricing */
    .pricing-breakdown {
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-categories {
        flex-direction: column;
        gap: 0.5rem;
    }

    .faq-category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Guarantee */
            .guarantee img {
        width: 60px;
        height: 60px;
            }

    /* Final CTA */
            .final-cta .cta-content > div {
        flex-direction: column;
            gap: 1rem;
        }

    .final-cta .cta-content > div > span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Countdown */
    .countdown-banner {
        gap: 0.4rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        margin-bottom: 0.8rem;
    }

    .countdown-banner .time {
        min-width: 48px;
        padding: 0.3rem 0.5rem;
    }

    .countdown-banner .time span {
        font-size: 1.05rem;
    }

    .countdown-banner .time small {
        font-size: 0.65rem;
    }

    /* Mobile menu content */
    .mobile-menu-content {
        width: 280px;
    }

    /* Scroll message */
    .scroll-end-message {
        font-size: 0.85rem;
        padding: 0.8rem 3rem 0.8rem 1rem;
        line-height: 1.4;
    }

    .scroll-end-message .close-btn {
        right: 15px;
        font-size: 1.1rem;
    }

    .scroll-end-message .code {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }

    /* Section Livrables Mobile */
    .livrables-subtitle {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .livrables-subtitle .icon {
        font-size: 1.5rem;
    }

    .module-visual-card {
        padding: 1.2rem;
    }

    .module-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .module-visual-card h4 {
        font-size: 1.1rem;
    }

    .module-features {
        margin-bottom: 1rem;
    }

    .module-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .bonus-visual-card {
        padding: 1.2rem;
    }

    .bonus-icon {
        font-size: 2rem;
    }

    .bonus-visual-card h4 {
        font-size: 1rem;
    }

    .bonus-visual-card p {
        font-size: 0.8rem;
    }

    .bonus-value {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .total-value-box {
        padding: 1.5rem;
    }

    .value-line {
        font-size: 0.95rem;
    }

    .value-line.total {
        font-size: 1.1rem;
    }

    .price-tag {
        flex-wrap: wrap;
    }

    .old-price {
        font-size: 1.2rem;
    }

    .new-price {
        font-size: 2rem;
    }

    .discount {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    /* Section Précommande Mobile */
    .precommande-highlight {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .precommande-title {
        font-size: 1.3rem;
    }

    .price-comparison {
        flex-direction: column;
        gap: 1rem;
    }

    .price-today, .price-later {
        min-width: auto;
        width: 100%;
        padding: 1rem;
    }

    .price-today {
        transform: none;
    }

    .price-value {
        font-size: 2rem;
    }

    .price-arrow {
        font-size: 1.5rem;
        transform: rotate(90deg);
    }

    .precommande-savings {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    /* Touch improvements */
    .cta-button, .faq-category-btn, .faq-question {
        min-height: 44px;
        touch-action: manipulation;
    }

    .cta-button:active, .faq-category-btn:active, .faq-question:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    input, textarea, select {
        font-size: 16px;
    }

    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

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

    .highlight {
        background: linear-gradient(120deg, #f39c12 0%, #f39c12 100%);
        background-repeat: no-repeat;
        background-size: 100% 0.3em;
        background-position: 0 88%;
        padding: 0 0.1em;
    }

    ul, ol {
        padding-left: 1.2rem;
    }

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

        @media (max-width: 480px) {
            .main-header {
                padding: 0.6rem 0;
            }

            .logo {
                font-size: 1.1rem;
            }

            .header-cta {
                font-size: 0.7rem;
                padding: 0.4rem 0.6rem;
            }

            body {
                padding-top: 60px;
            }

            .mobile-menu-content {
        width: 100%;
        padding: 1.5rem;
            }

            .mobile-menu-nav a {
        font-size: 1rem;
        padding: 0.8rem 0;
            }

            .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
            }

            .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
            }

            .section-title {
        font-size: 1.4rem;
        line-height: 1.2;
            }

            .cta-button {
        font-size: 0.85rem;
        padding: 0.9rem 1rem;
            }

            .cta-button.primary {
        font-size: 0.9rem;
        padding: 1rem 0.8rem;
            }

            .container {
        padding: 0 0.8rem;
    }

    .market-shift, .problem, .solution, .instructor, 
    .modules, .offer, .final-cta {
        padding: 2rem 0;
    }

    .stat-card, .transformation-box, .phase-card, 
    .module-card, .bonus-card, .objection-card,
    .module-visual-card, .bonus-visual-card {
        padding: 1rem;
    }

    .livrables-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .module-label {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .bonus-tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }

    .total-value-box {
        padding: 1rem;
    }

    .actual-price {
        padding: 1rem;
    }

    .precommande-highlight {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .precommande-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .precommande-title {
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .precommande-savings {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }

    .demo-item iframe {
        height: 160px;
    }

            .scroll-end-message {
                font-size: 0.8rem;
                padding: 0.7rem 2.5rem 0.7rem 0.8rem;
            }

            .scroll-end-message .close-btn {
                right: 10px;
                font-size: 1rem;
            }
        }

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .demo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-grid, .phases-grid, .use-cases-grid, 
    .modules-grid, .objections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}