/* Reset et Base */
* {
    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: #2c3e50;
    overflow-x: hidden;
    background: #fafbfc;
}

/* Trust Bar Animé */
.trust-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.trust-message {
    display: none;
    animation: slideInDown 0.6s ease-out;
}

.trust-message.active {
    display: block;
}

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

/* Header Sticky */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.logo-icon {
    font-size: 28px;
}

.header-badges {
    display: flex;
    gap: 15px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.live {
    background: #ff4757;
    color: white;
    animation: pulse 2s infinite;
}

.badge.verified {
    background: #2ed573;
    color: white;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Photo du couple */
.couple-photo {
    margin: 40px 0;
    position: relative;
}

.couple-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.couple-image:hover {
    transform: scale(1.02);
}

.photo-caption {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -30px;
    position: relative;
    z-index: 3;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.caption-text {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.caption-date {
    font-size: 14px;
    color: #666;
}

/* Stats en temps réel */
.live-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* CTA Principal */
.cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.cta-primary::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;
}

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

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-guarantee {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

/* Section Story */
.story-section {
    padding: 80px 20px;
    background: white;
}

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

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Timeline */
.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #667eea;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-date {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.timeline-image {
    margin: 20px 0;
}

.timeline-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Proof Box */
.proof-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.proof-header {
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
    font-size: 16px;
}

.proof-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.result-card {
    background: white;
    border: 2px solid #27ae60;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.result-month {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.result-amount {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #27ae60;
}

/* Decision Image */
.decision-image {
    position: relative;
    margin: 20px 0;
}

.decision-img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* Current Life */
.current-life {
    margin: 20px 0;
}

.current-img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.life-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.life-stat {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.life-number {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.life-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Section Preuves */
.proof-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.proof-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.proof-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.proof-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.proof-icon {
    font-size: 18px;
}

.proof-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.proof-caption {
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
}

.verification-badge {
    background: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Section Méthode */
.method-section {
    padding: 80px 20px;
    background: white;
}

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

.method-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.method-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    text-align: left;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
    color: #2c3e50;
}

.step-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-time {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.method-guarantee {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 213, 115, 0.1));
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.guarantee-icon {
    font-size: 40px;
    color: #27ae60;
}

.guarantee-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Section Témoignages */
.testimonials-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #667eea;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 12px;
    color: #999;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-proof {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.proof-amount {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 5px;
}

.proof-verification {
    font-size: 12px;
    color: #666;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.community-stat {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.community-stat .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.community-stat .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Section Urgence */
.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-badge {
    background: #ff4757;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.urgency-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.countdown-container {
    margin: 40px 0;
}

.countdown-text {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 32px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 14px;
    opacity: 0.8;
}

.cta-urgency {
    background: #ff4757;
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.3);
    margin: 20px 0;
}

.cta-urgency:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.4);
}

.urgency-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.benefit-icon {
    color: #2ed573;
    font-weight: bold;
}

/* Section FAQ */
.faq-section {
    padding: 80px 20px;
    background: white;
}

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

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #667eea;
}

.faq-answer {
    padding: 0 30px 25px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    display: none;
}

/* Section CTA Final */
.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    text-align: center;
}

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

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.final-cta-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-transformation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.transformation-before,
.transformation-after {
    text-align: center;
}

.transformation-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.transformation-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transformation-arrow {
    font-size: 32px;
    color: #667eea;
}

.cta-final {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    margin: 40px 0;
}

.cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.final-guarantee {
    margin-top: 30px;
}

.guarantee-badge {
    background: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer {
    font-size: 12px;
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-copyright {
    font-size: 12px;
    color: #95a5a6;
}

/* Notifications Toast */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #667eea;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 320px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.notification-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    margin: 0;
}

.notification-time {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .live-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .proof-grid,
    .testimonials-grid,
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    .header-badges {
        display: none;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .final-transformation {
        flex-direction: column;
        gap: 20px;
    }
    
    .transformation-img {
        width: 100%;
        max-width: 300px;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }
    
    .story-section,
    .proof-section,
    .method-section,
    .testimonials-section,
    .final-cta-section,
    .faq-section {
        padding: 60px 15px;
    }
    
    .urgency-section {
        padding: 60px 15px;
    }
    
    .couple-image {
        height: 300px;
    }
    
    .timeline-img,
    .decision-img,
    .current-img {
        height: 200px;
    }
    
    .urgency-benefits {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Animations et Micro-interactions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Performance Optimizations */
.couple-image,
.timeline-img,
.proof-image,
.transformation-img {
    will-change: transform;
}

.cta-primary,
.cta-urgency,
.cta-final {
    will-change: transform, box-shadow;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .trust-bar,
    .header,
    .notification,
    .cta-primary,
    .cta-urgency,
    .cta-final {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .urgency-section {
        background: white !important;
        color: black !important;
    }
}

