:root {
    --primary-color: #1e3a8a;
    /* Dark Blue */
    --accent-color: #f97316;
    /* Construction Orange */
    --highlight-color: #2563eb;
    /* Bright Blue */
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.header-price-old {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.header-price-new {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.btn-header {
    white-space: nowrap;
    font-size: 0.95rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo .highlight {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.95), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.badge-urgent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
    font-weight: 800;
}

.highlight-text {
    color: var(--accent-color);
    font-style: italic;
    display: block;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Price in Hero */
.price-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.old-price {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.economy {
    background-color: #22c55e;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Social Proof in Hero */
.social-proof-hero {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.proof-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Hero Actions */
.hero-actions {
    margin-top: 40px;
}

.btn.pulse {
    animation: pulse 2s infinite;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.trust-stars {
    display: flex;
    gap: 3px;
}

.trust-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.trust-rating {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.trust-source {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* Guarantees Section */
.guarantees-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guarantee-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.guarantee-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.comparison-column.bad {
    border: 3px solid #ef4444;
}

.comparison-column.good {
    border: 3px solid #22c55e;
    position: relative;
}

.comparison-column.good::before {
    content: "⭐ RECOMMANDÉ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.column-header {
    text-align: center;
    margin-bottom: 25px;
}

.column-header i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.comparison-column.bad .column-header i {
    color: #ef4444;
}

.comparison-column.good .column-header i {
    color: #22c55e;
}

.column-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-column.bad .comparison-list i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 2px;
}

.comparison-column.good .comparison-list i {
    color: #22c55e;
    font-size: 1.2rem;
    margin-top: 2px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    padding: 20px;
}

.vs-divider span {
    background: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Solution */
.solution {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--highlight-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 4px;
}

/* Results */
.results {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.results-box h2 {
    color: var(--white);
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

.results-text {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.author strong {
    display: block;
    color: var(--primary-color);
}

.author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Binary Choice Section */
.binary-choice {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: var(--white);
}

.binary-choice h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 50px;
    font-weight: 800;
}

.choices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.choice-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.choice-box.negative {
    border: 3px solid #ef4444;
}

.choice-box.positive {
    border: 3px solid #22c55e;
    transform: scale(1.05);
}

.choice-icon {
    text-align: center;
    margin-bottom: 20px;
}

.choice-icon i {
    font-size: 4rem;
}

.choice-box.negative .choice-icon i {
    color: #ef4444;
}

.choice-box.positive .choice-icon i {
    color: #22c55e;
}

.choice-box h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.choice-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.choice-box ul li {
    padding: 10px 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.choice-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.choice-box.negative ul li::before {
    color: #ef4444;
}

.choice-box.positive ul li::before {
    color: #22c55e;
}

.choice-result {
    background: rgba(37, 99, 235, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.binary-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
    color: var(--white);
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background-color: var(--white);
}

.urgency-banner {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    animation: pulse 2s infinite;
}

.pricing-card.main-offer {
    background: var(--white);
    border: 3px solid var(--highlight-color);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 550px;
    margin: 0 auto 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.pricing-card.main-offer::before {
    /*content: "⭐ OFFRE RECOMMANDÉE";*/
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--highlight-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 25px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.pricing-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.03));
    padding: 60px 30px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.price-old {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 600;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.economy-badge {
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.ht {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
}

.payment-terms {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 15px;
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul {
    margin-bottom: 30px;
}

.pricing-body li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-body li i {
    color: var(--highlight-color);
    margin-right: 10px;
}

.options-section h3 {
    text-align: center;
    margin-bottom: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.option-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-color);
}

.option-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.option-price {
    font-weight: 700;
    color: var(--highlight-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.option-card p:last-child {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--highlight-color);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Mobile Responsive - Optimisé Conversion */
@media (max-width: 768px) {



    /* Header Mobile - LOGO UNIQUEMENT */
    .header {
        padding: 10px 0;
        position: fixed;
        width: 100%;
        top: 0;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .header-container {
        flex-direction: row;
        gap: 0;
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 35px;
    }

    .header-right {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding: 60px 0 50px;
        margin-top: 55px;
    }

    .badge-urgent {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .highlight-text {
        font-size: 1.6rem;
        margin-top: 8px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    /* Prix Hero Mobile */
    .price-hero {
        margin: 25px 0;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        padding: 15px;
        border-radius: 12px;
    }

    .old-price {
        font-size: 1.3rem;
    }

    .new-price {
        font-size: 2.8rem;
        font-weight: 900;
    }

    .economy {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    /* Social Proof Hero Mobile */
    .social-proof-hero {
        gap: 25px;
        margin: 25px 0;
    }

    .proof-number {
        font-size: 2rem;
    }

    .proof-label {
        font-size: 0.8rem;
    }

    /* CTA Hero Mobile - ULTRA VISIBLE */
    .hero-actions {
        margin-top: 30px;
    }

    .btn-lg {
        width: 100%;
        padding: 18px 24px;
        font-size: 1.1rem;
        font-weight: 800;
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    }

    .guarantee {
        font-size: 0.85rem;
        margin-top: 15px;
    }

    /* Trust Bar Mobile */
    .trust-bar {
        padding: 25px 0;
    }

    .trust-items {
        gap: 20px;
    }

    .trust-item {
        min-width: 140px;
    }

    .trust-divider {
        display: none;
    }

    .trust-stars i {
        font-size: 1rem;
    }

    .trust-rating {
        font-size: 1.2rem;
    }

    /* Comparison Mobile */
    .comparison-section {
        padding: 50px 0;
    }

    .section-title-center {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .section-subtitle-center {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vs-divider {
        transform: rotate(90deg);
        padding: 5px;
    }

    .vs-divider span {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .column-header h3 {
        font-size: 1rem;
    }

    .comparison-list li {
        font-size: 0.9rem;
    }

    /* Solution Mobile */
    .solution {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        gap: 20px;
    }

    /* Results Mobile */
    .results {
        padding: 50px 0;
    }

    .results-box h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .stats-grid {
        gap: 25px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Guarantees Mobile */
    .guarantees-section {
        padding: 40px 0;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guarantee-item {
        padding: 20px;
    }

    .guarantee-item i {
        font-size: 2.2rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 50px 0;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    /* Binary Choice Mobile */
    .binary-choice {
        padding: 50px 0;
    }

    .binary-choice h2 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .choices-grid {
        gap: 25px;
    }

    .choice-box {
        padding: 25px;
    }

    .choice-box.positive {
        transform: scale(1);
        border-width: 4px;
    }

    .choice-icon i {
        font-size: 3rem;
    }

    .choice-box h3 {
        font-size: 1.2rem;
    }

    .choice-box ul li {
        font-size: 0.9rem;
    }

    .choice-box .btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 1.05rem;
        font-weight: 800;
    }

    .binary-footer {
        font-size: 1.05rem;
        margin-top: 30px;
    }

    /* Pricing Mobile */
    .pricing {
        padding: 50px 0;
    }

    .urgency-banner {
        font-size: 0.9rem;
        padding: 14px;
    }

    .pricing-card.main-offer {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .pricing-header {
        padding: 50px 20px 30px;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .price-old {
        font-size: 1.3rem;
    }

    .price {
        font-size: 3rem;
    }

    .economy-badge {
        font-size: 0.85rem;
        padding: 5px 14px;
    }

    .payment-terms {
        font-size: 0.9rem;
    }

    .pricing-body {
        padding: 25px 20px;
    }

    .pricing-body li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .guarantee-box {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }

    .guarantee-box i {
        font-size: 2.2rem;
    }

    .btn-pulse {
        width: 100%;
        padding: 18px 24px;
        font-size: 1.1rem;
        font-weight: 800;
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    }

    .pricing-footer {
        font-size: 0.9rem;
        margin-top: 12px;
    }

    /* Options Mobile */
    .options-section h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .options-grid {
        gap: 20px;
    }

    .option-card {
        padding: 20px;
    }

    /* Contact Mobile */
    .contact {
        padding: 50px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .contact-text p {
        font-size: 1rem;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-form-box h3 {
        font-size: 1.3rem;
    }

    /* Sticky CTA Mobile - BONUS */
    .btn-primary {
        transition: all 0.3s ease;
    }

    .btn-primary:active {
        transform: scale(0.98);
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 16px 20px;
    }

    .section-title-center {
        font-size: 1.6rem;
    }

    .binary-choice h2 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Guarantee Box in Pricing */
.guarantee-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 2px solid #22c55e;
    border-radius: var(--radius);
    padding: 20px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-box i {
    font-size: 2.5rem;
    color: #22c55e;
    flex-shrink: 0;
}

.guarantee-box strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.guarantee-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-footer strong {
    color: #ef4444;
    font-weight: 700;
}

.btn-pulse {
    animation: pulse 2s infinite;
}