* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-email {
    font-size: 0.8em;
    color: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    scroll-behavior: smooth;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

body.modal-open {
    overflow: hidden;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4em;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.logo-icon {
    font-size: 1.3em;
}

.logo-text strong {
    color: #0a2a43;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #0a2a43;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0a2a43;
    transition: width 0.3s;
}

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

.btn-header {
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #0a2a43;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: white;
    padding: 60px 20px 80px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.3);
}

h1 {
    font-size: 2.8em;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: left;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 1.05em;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1.1;
    text-align: left;
}

.hero-right {
    flex: 0.9;
    display: flex;
    justify-content: center;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-hero-primary {
    background: #ffffff;
    color: #0a2a43;
    padding: 16px 28px;
    border-radius: 999px;
    border: none;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transition: all 0.25s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.btn-hero-primary-sub {
    font-size: 0.85em;
    font-weight: 500;
    opacity: 0.9;
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 22px 24px 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 360px;
    width: 100%;
}

.hero-card-title {
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 1.05em;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95em;
}

/* Chatbot widget */
.chatbot-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    z-index: 1200;
}

.chatbot-toggle span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chatbot-panel {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 320px;
    max-height: 460px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1201;
}

.chatbot-panel-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    padding: 12px 14px;
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: #fff;
}

.chatbot-title {
    font-weight: 700;
    font-size: 0.95em;
}

.chatbot-subtitle {
    font-size: 0.8em;
    opacity: 0.9;
}

.chatbot-messages {
    padding: 10px 12px;
    flex: 1;
    overflow-y: auto;
    background: #f8f9fa;
}

.chatbot-message {
    max-width: 85%;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.85em;
    margin-bottom: 6px;
}

.chatbot-message-bot {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.chatbot-message-user {
    background: #0a2a43;
    color: #ffffff;
    margin-left: auto;
}

.chatbot-suggestions {
    padding: 8px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.chatbot-suggestions button {
    border: none;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.8em;
    background: #eef2ff;
    color: #4c51bf;
    cursor: pointer;
}

.chatbot-form {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.chatbot-form input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    padding: 6px 10px;
    font-size: 0.85em;
}

.chatbot-form button {
    border-radius: 999px;
    border: none;
    padding: 6px 12px;
    background: #0a2a43;
    color: #ffffff;
    font-size: 0.8em;
    cursor: pointer;
}

@media (max-width: 768px) {
    .chatbot-toggle {
        right: 12px;
        bottom: 80px;
    }

    .chatbot-panel {
        right: 8px;
        left: 8px;
        width: auto;
        bottom: 90px;
    }
}

/* Section Mentions légales */
.legal-section {
    padding: 60px 20px 40px;
    background: #ffffff;
}

.legal-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 15px;
    border-left: 4px solid #0a2a43;
}

.hero-card-list li span:first-child {
    font-size: 1.1em;
}

.hero-card-badge {
    font-size: 0.85em;
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.premium-extra-fields {
    display: none;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.premium-extra-fields h3 {
    font-size: 1.15em;
    color: #154360;
    margin-bottom: 15px;
}

.premium-extra-fields.active {
    display: block;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-primary {
    background: #1a5276;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.15em;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.15em;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid white;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.reassurance {
    font-size: 0.9em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* How it works */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

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

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0a2a43;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15em;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-card {
    text-align: center;
    padding: 32px 26px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2ff 100%);
    border-radius: 18px;
    border: 1px solid rgba(102, 126, 234, 0.18);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
}

.step-number {
    display: inline-block;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 60%, #1a5276 100%);
    color: white;
    border-radius: 50%;
    line-height: 54px;
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.step-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

/* Who is this for */
.target-audience {
    padding: 80px 20px;
    background: #f8f9fa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.audience-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.audience-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.audience-card h3 {
    color: #0a2a43;
    margin-bottom: 12px;
    font-size: 1.3em;
}

/* Comparison */
.comparison {
    padding: 80px 20px;
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-column {
    padding: 40px;
    border-radius: 15px;
}

.comparison-without {
    background: #fff5f5;
    border: 2px solid #1a5276;
}

.comparison-with {
    background: #e8f5e9;
    border: 2px solid #1b4f72;
}

.comparison-column h3 {
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    padding: 12px 0;
    font-size: 1.05em;
    line-height: 1.5;
}

/* What you get */
.what-you-get {
    padding: 80px 20px;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-block-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.feature-block h3 {
    color: #0a2a43;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.feature-block p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05em;
}

/* Social proof */
.social-proof {
    padding: 80px 20px;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: white;
    border-radius: 15px;
}

.stat-value {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.05em;
    opacity: 0.95;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stars {
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #333;
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: #0a2a43;
    font-weight: 600;
}

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

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

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.faq-question {
    font-weight: 600;
    font-size: 1.15em;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    font-size: 1.02em;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Trust banner */
.trust-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.95em;
    border-bottom: 3px solid #0a2a43;
}

.trust-banner strong {
    color: #eab308;
}

/* Premium Section */
.standard-section {
    padding: 60px 20px 30px;
    background: #f8f9fa;
}

.standard-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
    text-align: center;
}

.standard-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1565c0;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.standard-title {
    font-size: 2.2em;
    color: #0f172a;
    margin-bottom: 15px;
}

.standard-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

.btn-standard {
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 999px;
    border: none;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.35);
    transition: all 0.25s ease;
    margin-bottom: 22px;
}

.btn-standard:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(102, 126, 234, 0.45);
}

.standard-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.standard-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 20px;
    background: #f8f9fa;
    color: #333;
    font-size: 0.98em;
}

.standard-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1b4f72;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}

/* Fast deals section */
.fast-deals {
    padding: 70px 20px;
    background: #ffffff;
}

.fast-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.fast-deal-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fast-deal-card h3 {
    font-size: 1.1em;
    color: #0f172a;
}

.fast-deal-meta {
    font-size: 0.9em;
    color: #6c757d;
}

.fast-deal-desc {
    font-size: 0.95em;
    color: #555;
}

.fast-deal-price {
    margin-top: 6px;
    font-weight: 600;
    color: #333;
}

.fast-deal-btn {
    margin-top: 10px;
    align-self: flex-start;
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fast-deal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.extra-offer {
    display: none;
}

.fast-deals-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-fast-more {
    background: #ffffff;
    color: #0a2a43;
    border: 2px solid #0a2a43;
    border-radius: 999px;
    padding: 12px 26px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-fast-more:hover {
    background: #0a2a43;
    color: #ffffff;
    transform: translateY(-2px);
}

.premium-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.premium-box {
    background: linear-gradient(135deg, #fb923c 0%, #154360 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(255, 111, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 3px solid #ff8f00;
    animation: premiumPulse 3s ease-in-out infinite;
}

@keyframes premiumPulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(255, 111, 0, 0.4);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 111, 0, 0.6);
    }
}

.premium-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: premiumShine 4s linear infinite;
}

@keyframes premiumShine {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.premium-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #154360;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95em;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.premium-title {
    color: white;
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.premium-text {
    color: white;
    font-size: 1.25em;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.premium-text strong {
    font-weight: 800;
    font-size: 1.15em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-premium {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 50%, #ffb300 100%);
    color: #6d4c00;
    padding: 22px 60px;
    border: none;
    border-radius: 50px;
    font-size: 1.4em;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.btn-premium-icon {
    font-size: 1.2em;
    animation: iconBounce 1s ease-in-out infinite;
}

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

.premium-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.premium-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-check {
    color: #1b4f72;
    font-size: 1.3em;
    font-weight: bold;
    background: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Questionnaire styles */
.questionnaire-section {
    padding: 80px 20px;
    background: white;
    min-height: 100vh;
    display: none;
}

.questionnaire-section.active {
    display: block;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.intro-text h2 {
    color: #0a2a43;
    font-size: 2em;
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

.no-payment-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    font-size: 1em;
}

.auto-save-info {
    display: inline-block;
    background: #e3f2fd;
    color: #1565c0;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 10px;
    font-size: 0.9em;
}

.questionnaire-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.step-indicator {
    text-align: center;
    margin-bottom: 30px;
    color: #0a2a43;
    font-size: 1.1em;
    font-weight: bold;
}

.question-group {
    display: none;
    animation: fadeIn 0.5s;
}

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

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

.btn-back-home {
    background: transparent;
    color: #0a2a43;
    border: 2px solid #0a2a43;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-back-home:hover {
    background: #0a2a43;
    color: white;
    transform: translateX(-3px);
}

.mode-indicator {
    margin-bottom: 15px;
    font-size: 0.95em;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mode-indicator span {
    font-size: 1.1em;
}

.question-group h2 {
    color: #0a2a43;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a2a43;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.radio-group, .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.radio-option, .checkbox-option {
    position: relative;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.radio-option label,
.checkbox-option label {
    display: block;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-weight: 500;
}

.radio-option input[type="radio"]:checked + label,
.checkbox-option input[type="checkbox"]:checked + label {
    background: #0a2a43;
    color: white;
    border-color: #0a2a43;
}

.radio-option label:hover,
.checkbox-option label:hover {
    border-color: #0a2a43;
    transform: translateY(-2px);
}

.privacy-note {
    font-size: 0.85em;
    color: #6c757d;
    margin-top: 8px;
    font-style: italic;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
}

.btn-secondary-dark {
    background: #6c757d;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-dark:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-primary-quest {
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary-quest:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.loading-section {
    display: none;
    text-align: center;
    padding: 80px 20px;
    min-height: 400px;
}

.loading-section.active {
    display: block;
    animation: fadeIn 0.5s;
}

/* Spinner amélioré - 80px, double bordure colorée */
.spinner {
    width: 80px;
    height: 80px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0a2a43;
    border-right: 6px solid #e91e63;
    border-radius: 50%;
    margin: 0 auto 40px;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animation de pulsation sur le texte */
.loading-text {
    font-size: 1.4em;
    color: #0a2a43;
    margin-bottom: 20px;
    font-weight: 600;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.loading-details {
    color: #555;
    font-size: 1.05em;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.progress-dots {
    margin-top: 30px;
}

.progress-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #0a2a43;
    border-radius: 50%;
    margin: 0 6px;
    animation: bounce 1.4s infinite ease-in-out both;
}

.progress-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.progress-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.3;
    } 
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

.validation-section {
    display: none;
    text-align: center;
}

.validation-section.active {
    display: block;
    animation: fadeIn 0.5s;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1b4f72;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    animation: scaleIn 0.5s;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.validation-title {
    color: #1b4f72;
    margin-bottom: 15px;
    font-size: 2em;
}

.validation-subtitle {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.profile-recap {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
    border-left: 4px solid #0a2a43;
}

.profile-recap h3 {
    color: #0a2a43;
    margin-bottom: 20px;
    text-align: center;
}

.recap-item {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.recap-label {
    font-weight: 600;
    color: #555;
}

.recap-value {
    color: #333;
    font-weight: 500;
}

.what-you-get-validation {
    background: white;
    border: 2px solid #0a2a43;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.what-you-get-validation h3 {
    color: #0a2a43;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5em;
}

.benefit-item {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon {
    color: #1b4f72;
    font-size: 1.3em;
    flex-shrink: 0;
}

.benefit-text {
    color: #555;
    line-height: 1.5;
}

.payment-info {
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.selected-offer-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-info h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.price-detail {
    font-size: 2.5em;
    margin: 20px 0;
    font-weight: bold;
}

.price-subtext {
    font-size: 0.95em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.guarantee-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95em;
    margin-top: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Offer selection modal */
.offer-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1200;
}

.offer-modal {
    background: #ffffff;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    padding: 32px 32px 26px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.45);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.offer-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: #6c757d;
}

.offer-modal-title {
    font-size: 1.9em;
    margin-bottom: 8px;
    color: #1f2933;
}

.offer-modal-subtitle {
    font-size: 0.98em;
    color: #6c757d;
    margin-bottom: 22px;
}

.offer-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

.offer-card {
    flex: 1 1 260px;
    background: #f8f9fa;
    border-radius: 18px;
    padding: 20px 20px 18px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.offer-card-label {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-card-standard .offer-card-label {
    background: #e3f2fd;
    color: #1565c0;
}

.offer-card-premium .offer-card-label {
    background: #fff3cd;
    color: #8a6d3b;
}

.offer-card-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9800, #ffb300);
    color: #fff;
    font-size: 0.78em;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-card-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #1f2933;
}

.offer-card-price {
    font-size: 1.6em;
    font-weight: 800;
    color: #4c51bf;
    margin: 4px 0;
}

.offer-card-delay {
    font-size: 0.95em;
    color: #495057;
}

.offer-card-tagline {
    font-size: 0.9em;
    color: #6c757d;
}

.offer-card-cta {
    margin-top: 10px;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.offer-card-standard .offer-card-cta {
    background: #ffffff;
    color: #0a2a43;
    border: 1px solid #4c51bf;
}

.offer-card-standard .offer-card-cta:hover {
    background: #4c51bf;
    color: #ffffff;
}

.offer-card-premium {
    background: linear-gradient(135deg, #ff9800 0%, #ffb300 60%, #ffcc80 100%);
    color: #1f1300;
    border-color: #ff9800;
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.45);
}

.offer-card-premium .offer-card-title,
.offer-card-premium .offer-card-delay,
.offer-card-premium .offer-card-tagline {
    color: #2b1b00;
}

.offer-card-premium .offer-card-price {
    color: #ffffff;
}

.offer-card-premium .offer-card-cta {
    background: #1f1300;
    color: #ffeb3b;
    border: none;
}

.offer-card-premium .offer-card-cta:hover {
    background: #000000;
    color: #ffeb3b;
}

/* Fast deal questionnaire modal */
.fastdeal-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1200;
}

.fastdeal-modal {
    background: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    padding: 26px 26px 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
    position: relative;
}

.fastdeal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #6c757d;
}

.fastdeal-title {
    font-size: 1.7em;
    margin-bottom: 8px;
    color: #1f2933;
}

.fastdeal-subtitle {
    font-size: 0.95em;
    color: #6c757d;
    margin-bottom: 18px;
}

.fastdeal-form-group {
    margin-bottom: 16px;
}

.fastdeal-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.fastdeal-form-group input,
.fastdeal-form-group select,
.fastdeal-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d0d7de;
    font-size: 0.95em;
    font-family: inherit;
}

.fastdeal-form-group input:focus,
.fastdeal-form-group select:focus,
.fastdeal-form-group textarea:focus {
    outline: none;
    border-color: #0a2a43;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.15);
}

.fastdeal-radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fastdeal-radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95em;
}

.fastdeal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.fastdeal-btn-primary,
.fastdeal-btn-secondary {
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.fastdeal-btn-primary {
    background: linear-gradient(135deg, #0a2a43 0%, #0f3d67 100%);
    color: #ffffff;
}

.fastdeal-btn-secondary {
    background: #f1f3f5;
    color: #495057;
}

.fastdeal-result {
    margin-top: 10px;
}

.fastdeal-ok-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1b4f72;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4em;
    margin: 0 auto 10px;
}

.fastdeal-loading {
    padding: 20px 10px;
    text-align: center;
}

.fastdeal-spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
    border-top-color: #0a2a43;
    margin: 0 auto 12px;
    animation: fastdeal-spin 0.8s linear infinite;
}

.fastdeal-loading-text {
    font-size: 0.95em;
    color: #555;
}

@keyframes fastdeal-spin {
    to {
        transform: rotate(360deg);
    }
}

.fastdeal-payment {
    margin: 18px 0 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8f9ff;
    border: 1px solid #d6d8ff;
}

.fastdeal-payment-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.fastdeal-payment-label {
    font-size: 0.95em;
    color: #555;
}

.fastdeal-payment-price {
    font-weight: 700;
    color: #4c51bf;
}

.fastdeal-payment-note {
    font-size: 0.8em;
    color: #6c757d;
}

@media (max-width: 768px) {
    .fastdeal-modal {
        max-width: 95%;
        padding: 22px 18px 18px;
    }
}

@media (max-width: 768px) {
    .offer-modal {
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .offer-cards {
        flex-direction: column;
    }
}

.reviews-toast-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    pointer-events: none;
}

.review-toast {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    max-width: 280px;
    font-size: 0.9em;
    color: #333;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    pointer-events: auto;
}

.review-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-toast-header {
    font-weight: 600;
    margin-bottom: 4px;
    color: #0a2a43;
}

.review-toast-meta {
    margin-top: 6px;
    font-size: 0.8em;
    color: #777;
}

.fomo-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    color: #856404;
    font-size: 0.95em;
}

footer {
    background: #0f172a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* Sticky CTA for mobile */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a5276;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.sticky-cta button {
    width: 100%;
    background: white;
    color: #1a5276;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
}

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

    .btn-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 1.2em;
    }

    .header-container {
        padding: 12px 15px;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 40px 15px 60px;
    }

    .hero-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-right {
        width: 100%;
        margin-top: 10px;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-cta {
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: flex-start;
    }

    h1 {
        font-size: 1.8em;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1em;
    }

    .benefits-list {
        padding: 0 10px;
    }

    .benefits-list li {
        font-size: 0.95em;
    }

    .badge {
        font-size: 0.85em;
        padding: 8px 16px;
    }

    /* Sections Mobile */
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .section-subtitle {
        font-size: 1em;
    }

    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 25px;
    }

    /* Audience Grid */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Comparison Grid */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .comparison-column {
        padding: 25px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-block {
        padding: 30px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FAQ */
    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 1.05em;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 1.8em;
    }

    .cta-section p {
        font-size: 1.05em;
    }

    /* Questionnaire Mobile */
    .questionnaire-container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .intro-text h2 {
        font-size: 1.6em;
    }

    .intro-text p {
        font-size: 1em;
    }

    .no-payment-badge {
        font-size: 0.9em;
        padding: 10px 20px;
    }

    .auto-save-info {
        font-size: 0.85em;
        padding: 8px 16px;
    }

    .question-group h2 {
        font-size: 1.5em;
    }

    .form-group label {
        font-size: 1em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Évite le zoom automatique sur iOS */
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary-quest,
    .btn-secondary-dark {
        width: 100%;
        padding: 14px 30px;
    }

    .radio-group, .checkbox-group {
        grid-template-columns: 1fr;
    }

    .radio-option label,
    .checkbox-option label {
        padding: 18px; /* Zone de touche plus grande */
        font-size: 1em;
    }

    /* Amélioration des zones tactiles */
    .nav-link,
    .mobile-nav-link,
    .faq-item,
    button,
    a {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.1);
    }

    /* Amélioration du défilement sur mobile */
    .questionnaire-section,
    .loading-section,
    .validation-section {
        -webkit-overflow-scrolling: touch;
    }

    /* Optimisation des inputs pour mobile */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        font-size: 16px; /* Empêche le zoom sur iOS */
        transform: scale(1);
    }

    /* Loading Section */
    .spinner {
        width: 60px;
        height: 60px;
    }

    .loading-text {
        font-size: 1.2em;
    }

    .loading-details {
        font-size: 0.95em;
    }

    /* Validation Section */
    .validation-title {
        font-size: 1.6em;
    }

    .validation-subtitle {
        font-size: 1em;
    }

    .profile-recap {
        padding: 20px;
    }

    .recap-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 8px 0;
    }

    .recap-label {
        font-size: 0.9em;
    }

    .recap-value {
        font-size: 0.95em;
    }

    .what-you-get-validation {
        padding: 20px;
    }

    .what-you-get-validation h3 {
        font-size: 1.3em;
    }

    .benefit-item {
        padding: 10px 0;
    }

    .benefit-text {
        font-size: 0.95em;
    }

    .payment-info {
        padding: 25px;
    }

    .payment-info h3 {
        font-size: 1.2em;
    }

    .price-detail {
        font-size: 2em;
    }

    .price-subtext {
        font-size: 0.9em;
    }

    .fomo-note {
        font-size: 0.9em;
        padding: 12px 15px;
    }

    /* Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 15px 30px;
        font-size: 1.05em;
    }

    .btn-back-home {
        font-size: 0.9em;
        padding: 8px 16px;
    }

    /* Sticky CTA */
    .sticky-cta {
        display: block;
        padding-bottom: env(safe-area-inset-bottom); /* Support pour iPhone X+ */
    }

    /* Trust Banner */
    .trust-banner {
        font-size: 0.85em;
        padding: 12px 15px;
    }

    /* Premium Section Mobile */
    .premium-section {
        padding: 40px 15px;
    }

    .premium-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .premium-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .premium-text {
        font-size: 1.05em;
        margin-bottom: 25px;
    }

    .btn-premium {
        padding: 18px 35px;
        font-size: 1.1em;
        width: 100%;
        justify-content: center;
    }

    .premium-features {
        flex-direction: column;
        gap: 15px;
    }

    .premium-feature-item {
        font-size: 1em;
        padding: 10px 15px;
    }

    /* Footer */
    footer {
        padding: 30px 15px;
        font-size: 0.9em;
    }
}

/* Support pour petits smartphones (< 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2em;
    }

    .step-card h3 {
        font-size: 1.1em;
    }

    .audience-card,
    .feature-block,
    .testimonial-card {
        padding: 25px;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 25px;
        font-size: 1em;
    }

    .questionnaire-container {
        padding: 25px 15px;
    }

    .question-group h2 {
        font-size: 1.3em;
    }

    /* Premium Section Petits Smartphones */
    .premium-title {
        font-size: 1.5em;
    }

    .premium-text {
        font-size: 1em;
    }

    .btn-premium {
        font-size: 1em;
        padding: 16px 30px;
    }
}

/* Support tablettes (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }

    .steps-grid,
    .audience-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden {
    display: none !important;
}


/* === Nouveau logo maison SVG LogementFast === */
.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
    flex-shrink: 0;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}
