/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
    --primary-color: #0B132B;
    --primary-light: #1C82AD;
    --secondary-color: #1C82AD;
    --text-dark: #0B132B;
    --text-light: #6b7280;
    --bg-light: #F5F6FA;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Images adaptatives globales */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Exception pour les images dans les liens ou flex containers */
a img,
.flex img {
    display: inline-block;
}

/* Améliorations tactiles et accessibilité mobile */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
    -webkit-touch-callout: none;
}

a, button, input, select, textarea {
    touch-action: manipulation;
}

/* Amélioration du scroll sur mobile */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Empêcher le zoom sur les champs de formulaire sur iOS */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-light);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-light);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    margin: 3.5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Device Compatibility Section in Hero */
.device-compatibility {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.compatibility-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.compatibility-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.compatibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.compatibility-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.compatibility-item span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Platform Logos Section */
.platform-logos-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.platform-logos-container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.platform-logos-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    opacity: 1;
    text-align: center;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-logos img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    opacity: 1;
}

.platform-logos img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0 3rem;
    padding: 2rem 1.5rem;
    background: transparent;
    border-radius: 12px;
}

.trust-badge-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.payment-options-img {
    max-height: 80px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.guarantee-badge-img {
    max-height: 150px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.trust-badge-image img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .payment-options-img {
        max-height: 60px;
    }
    
    .guarantee-badge-img {
        max-height: 120px;
    }
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.guarantee-text {
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Plan Savings */
.plan-savings {
    color: #10b981;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(28, 130, 173, 0.4);
}

.btn-primary:hover {
    background: #1567a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 130, 173, 0.5);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sections */
.about-section,
.features-section,
.pricing-section,
.cta-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Features Grid */
.features-section {
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 3.5rem;
    margin: 1.5rem 0 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Devices Section */
.devices-section {
    padding: 4rem 0;
    background: var(--white);
}

.devices-showcase {
    margin-top: 3rem;
    text-align: center;
}

.devices-showcase-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.device-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.device-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.device-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.device-card h3 {
    font-size: 1.125rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.device-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Comparison Table Section */
.comparison-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.comparison-table th.feature-column {
    text-align: left;
    min-width: 180px;
}

.comparison-table th.featured-column {
    background: var(--primary-light);
    position: relative;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table td.feature-column {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table td.featured-column {
    background: rgba(28, 130, 173, 0.05);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table .check {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.plan-price-small {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-small {
    background: var(--primary-light);
    color: var(--white);
}

.btn-primary-small:hover {
    background: #1567a3;
    transform: translateY(-2px);
}

.btn-outline-small {
    background: transparent;
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-outline-small:hover {
    background: var(--primary-light);
    color: var(--white);
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-top: 3px solid var(--success-color);
    border-bottom: 3px solid var(--success-color);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 8rem;
    flex-shrink: 0;
}

.guarantee-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--success-color);
}

.guarantee-text .section-description {
    text-align: left;
    margin-bottom: 2rem;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 1rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-check {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.guarantee-feature span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: var(--white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.faq-question {
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact & Support Section */
.contact-support-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-card .btn {
    width: 100%;
    max-width: 250px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trustpilot-rating {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trustpilot-stars-img {
    max-width: 300px;
    height: auto;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star {
    font-size: 2rem;
    color: #ddd;
}

.star.filled {
    color: #00b67a;
}

.rating-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    border-color: #00b67a;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-stars {
    display: flex;
    gap: 0.125rem;
}

.review-stars .star {
    font-size: 1.25rem;
}

.review-title {
    font-size: 1.125rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.review-card {
    display: none;
}

.review-card.visible {
    display: block;
}

.reviews-load-more {
    text-align: center;
    margin-top: 2rem;
}

.reviews-load-more .btn {
    min-width: 200px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, #1567a3 100%);
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(28, 130, 173, 0.4);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured .plan-header,
.pricing-card.featured .plan-features,
.pricing-card.featured .plan-name,
.pricing-card.featured .plan-duration {
    color: var(--white);
}

.pricing-card.featured .plan-savings {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured .plan-features li {
    color: var(--white);
    opacity: 0.95;
}

.pricing-card.featured .currency,
.pricing-card.featured .amount {
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 15px 40px rgba(28, 130, 173, 0.5);
}

.pricing-card.best-deal {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}

.pricing-card.best-deal .plan-header,
.pricing-card.best-deal .plan-features,
.pricing-card.best-deal .plan-name,
.pricing-card.best-deal .plan-duration {
    color: var(--white);
}

.pricing-card.best-deal .plan-savings {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card.best-deal .plan-features li {
    color: var(--white);
    opacity: 0.95;
}

.pricing-card.best-deal .currency,
.pricing-card.best-deal .amount {
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card.best-deal:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.pricing-card.plan-discovery {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border-color: #7c3aed;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.pricing-card.plan-discovery .plan-header,
.pricing-card.plan-discovery .plan-features,
.pricing-card.plan-discovery .plan-name,
.pricing-card.plan-discovery .plan-duration {
    color: var(--white);
}

.pricing-card.plan-discovery .plan-savings {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card.plan-discovery .currency,
.pricing-card.plan-discovery .amount {
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card.plan-discovery .plan-features li {
    color: var(--white);
    opacity: 0.95;
}

.pricing-card.plan-discovery .btn-outline {
    background: var(--white);
    color: #4c1d95;
    border-color: var(--white);
}

.pricing-card.plan-discovery .btn-outline:hover {
    background: #f5f3ff;
    color: #3b0764;
}

.pricing-card.plan-discovery:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(167, 139, 250, 0.45);
}

.pricing-card.plan-monthly {
    background: linear-gradient(135deg, #075985 0%, #0c4a6e 100%);
    border-color: #075985;
    box-shadow: 0 8px 25px rgba(7, 89, 133, 0.4);
}

.pricing-card.plan-monthly .plan-header,
.pricing-card.plan-monthly .plan-features,
.pricing-card.plan-monthly .plan-name,
.pricing-card.plan-monthly .plan-duration {
    color: var(--white);
}

.pricing-card.plan-monthly .plan-savings {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card.plan-monthly .currency,
.pricing-card.plan-monthly .amount {
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card.plan-monthly .plan-features li {
    color: var(--white);
    opacity: 0.95;
}

.pricing-card.plan-monthly .btn-outline {
    background: var(--white);
    color: #0c4a6e;
    border-color: var(--white);
}

.pricing-card.plan-monthly .btn-outline:hover {
    background: #f0f9ff;
    color: #082f49;
}

.pricing-card.plan-monthly:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(56, 189, 248, 0.45);
}

.pricing-card.plan-semiannual {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
    border-color: #c2410c;
    box-shadow: 0 8px 25px rgba(194, 65, 12, 0.4);
}

.pricing-card.plan-semiannual .plan-header,
.pricing-card.plan-semiannual .plan-features,
.pricing-card.plan-semiannual .plan-name,
.pricing-card.plan-semiannual .plan-duration {
    color: var(--white);
}

.pricing-card.plan-semiannual .plan-savings {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card.plan-semiannual .currency,
.pricing-card.plan-semiannual .amount {
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card.plan-semiannual .plan-features li {
    color: var(--white);
    opacity: 0.95;
}

.pricing-card.plan-semiannual .btn-outline {
    background: var(--white);
    color: #9a3412;
    border-color: var(--white);
}

.pricing-card.plan-semiannual .btn-outline:hover {
    background: #fff7ed;
    color: #7c2d12;
}

.pricing-card.plan-semiannual:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(251, 146, 60, 0.45);
}

.pricing-card.plan-annual {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    border-color: #9333ea;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.pricing-card.plan-annual .plan-header,
.pricing-card.plan-annual .plan-features,
.pricing-card.plan-annual .plan-name,
.pricing-card.plan-annual .plan-duration {
    color: var(--white);
}

.pricing-card.plan-annual .plan-savings {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card.plan-annual .currency,
.pricing-card.plan-annual .amount {
    color: var(--white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card.plan-annual .plan-features li {
    color: var(--white);
    opacity: 0.95;
}

.pricing-card.plan-annual .btn-outline {
    background: var(--white);
    color: #6b21a8;
    border-color: var(--white);
}

.pricing-card.plan-annual .btn-outline:hover {
    background: #faf5ff;
    color: #581c87;
}

.pricing-card.plan-annual:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(192, 132, 252, 0.45);
}

.badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: var(--white);
    padding: 0.6rem 3.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-image {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: auto;
    background: none;
    border: none;
    padding: 0;
    transform: none;
    box-shadow: none;
    z-index: 10;
}

.best-deal .badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    padding: 0.65rem 3.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
}

.best-deal-badge {
    width: 150px;
    top: -15px;
    right: -15px;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0.75rem;
    gap: 0.25rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.amount {
    font-size: 4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan-duration {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.85rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:hover {
    padding-left: 0.5rem;
    color: var(--primary-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #091021 0%, #1F9BD1 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* CTA Actions Container */
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* CTA Specific Button Styles */
.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.cta-button-primary {
    background: var(--white);
    color: #091021;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.cta-button-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.cta-button-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Legacy support for existing .btn classes in CTA */
.cta-section .btn-primary {
    background: var(--white);
    color: #091021;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Form Styles */
.form-section {
    padding: 4rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
}

/* Order Summary */
.order-summary {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-light);
}

/* Success Message */
.success-section {
    text-align: center;
    padding: 4rem 0;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.success-section h1 {
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.success-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text-dark);
}

/* Payment Modal with Iframe */
.modal-payment {
    max-width: 900px;
    width: 95%;
    max-height: 95vh;
    padding: 0;
    overflow: hidden;
}

.modal-payment .modal-close {
    z-index: 10;
    background: var(--white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.modal-payment h2 {
    padding: 1.5rem 2rem 1rem 2rem;
    background: var(--white);
    margin: 0;
    border-radius: 16px 16px 0 0;
}

#whopCheckoutContainer {
    padding: 1rem;
    min-height: 500px;
    max-height: 75vh;
    overflow-y: auto;
}

.whop-checkout-embed {
    width: 100%;
    min-height: 500px;
}

/* Loading Spinner */
.spinner {
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

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

/* Responsive Design */

/* Tablettes et petits écrans (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

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

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

/* Tablettes (max-width: 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-menu a {
        font-size: 1.05rem;
        padding: 0.5rem;
        display: block;
    }

    .container {
        padding: 0 20px;
    }

    .trustpilot-stars-img {
        max-width: 250px;
    }

    .devices-showcase-img {
        border-radius: 12px;
        max-width: 100%;
        height: auto;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .plan-features {
        font-size: 0.95rem;
    }

    .plan-features li {
        padding: 0.5rem 0;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-tagline {
        font-size: 0.875rem;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 0 10px;
    }

    .compatibility-icons {
        gap: 2rem;
    }

    .compatibility-icon {
        font-size: 2.25rem;
    }

    .compatibility-item span {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 2.25rem;
        padding: 0 15px;
    }

    .section-description {
        font-size: 1.05rem;
        padding: 0 15px;
    }

    .features-grid,
    .pricing-grid,
    .reviews-grid,
    .steps-grid,
    .devices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .pricing-card,
    .step-card,
    .device-card {
        padding: 1.75rem 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .comparison-table-wrapper {
        margin: 2rem -20px 0;
        border-radius: 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .plan-price-small {
        font-size: 0.8rem;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .guarantee-icon {
        font-size: 6rem;
    }

    .guarantee-text .section-title,
    .guarantee-text .section-description {
        text-align: center;
    }

    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.75rem;
    }

    .faq-question {
        font-size: 1.15rem;
    }

    .pricing-card.featured,
    .pricing-card.best-deal,
    .pricing-card.plan-discovery,
    .pricing-card.plan-monthly,
    .pricing-card.plan-semiannual,
    .pricing-card.plan-annual {
        transform: scale(1);
    }

    .pricing-card.featured:hover,
    .pricing-card.best-deal:hover {
        transform: translateY(-8px);
    }

    .trust-badges {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .payment-options-img {
        max-height: 60px;
    }
    
    .guarantee-badge-img {
        max-height: 120px;
    }

    .guarantee-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .btn-lg {
        padding: 1.1rem 2.25rem;
        font-size: 1.05rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .modal-payment {
        width: 95%;
        max-height: 100vh;
        border-radius: 8px;
    }

    .modal-payment h2 {
        font-size: 1.65rem;
        padding: 1.25rem;
    }

    #whopCheckoutContainer {
        max-height: calc(100vh - 120px);
        min-height: 450px;
        padding: 0.75rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1.25rem;
    }

    .cta-button {
        width: 100%;
        max-width: 380px;
    }

    .platform-logos-section {
        margin-top: 2.5rem;
        padding: 2rem 0;
    }

    .platform-logos-container {
        padding: 1.75rem;
    }

    .platform-logos img {
        max-height: 55px;
    }

    .footer-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 3rem;
    }

    .badge-image {
        width: 90px;
        top: -8px;
        right: -8px;
    }

    .best-deal-badge {
        width: 120px;
        top: -12px;
        right: -12px;
    }

    .amount {
        font-size: 3.5rem;
    }

    .currency {
        font-size: 1.75rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }
}

/* Téléphones (max-width: 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.25;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 0.975rem;
        line-height: 1.65;
    }

    .section-title {
        font-size: 1.85rem;
        padding: 0 10px;
    }

    .section-description {
        font-size: 0.975rem;
        padding: 0 10px;
    }

    .btn {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 2.75rem;
    }

    .step-icon {
        font-size: 3rem;
    }

    .device-icon {
        font-size: 2.75rem;
    }

    .contact-icon {
        font-size: 3.5rem;
    }

    .feature-card h3,
    .step-card h3,
    .device-card h3 {
        font-size: 1.35rem;
    }

    .compatibility-icons {
        gap: 1.75rem;
    }

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

    .compatibility-item span {
        font-size: 0.8rem;
    }

    .platform-logos-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .platform-logos-container {
        padding: 1.5rem 1rem;
    }

    .platform-logos-title {
        font-size: 0.9rem;
    }

    .platform-logos img {
        max-height: 48px;
    }

    .amount {
        font-size: 3rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .plan-name {
        font-size: 1.35rem;
    }

    .plan-duration {
        font-size: 1rem;
    }

    .guarantee-icon {
        font-size: 5rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        max-width: 320px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-badges {
        gap: 1.25rem;
        padding: 1.25rem 0.75rem;
    }
}

/* Petits téléphones (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3.5rem 0 2.5rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.925rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-description {
        font-size: 0.925rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 0.95rem 1.75rem;
        font-size: 0.95rem;
    }

    .feature-card,
    .pricing-card,
    .step-card,
    .device-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .step-icon {
        font-size: 2.75rem;
    }

    .device-icon {
        font-size: 2.5rem;
    }

    .contact-icon {
        font-size: 3.25rem;
    }

    .feature-card h3,
    .step-card h3 {
        font-size: 1.25rem;
    }

    .device-card h3 {
        font-size: 1.05rem;
    }

    .feature-card p,
    .step-card p,
    .device-card p {
        font-size: 0.9rem;
    }

    .device-compatibility {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .compatibility-title {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .compatibility-icons {
        gap: 1.5rem;
    }

    .compatibility-icon {
        font-size: 1.85rem;
    }

    .compatibility-item span {
        font-size: 0.75rem;
    }

    .platform-logos-section {
        margin-top: 1.5rem;
        padding: 1.25rem 0;
    }

    .platform-logos-container {
        padding: 1.25rem 0.75rem;
    }

    .platform-logos-title {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .platform-logos img {
        max-height: 42px;
    }

    .amount {
        font-size: 2.75rem;
    }

    .currency {
        font-size: 1.35rem;
    }

    .plan-name {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .plan-duration {
        font-size: 0.95rem;
    }

    .plan-features {
        font-size: 0.875rem;
    }

    .plan-savings {
        font-size: 0.95rem;
        padding: 0.4rem 0.85rem;
    }

    .guarantee-icon {
        font-size: 4.5rem;
    }

    .guarantee-feature span:last-child {
        font-size: 0.9rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .reviewer-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .reviewer-details h4 {
        font-size: 0.95rem;
    }

    .review-date {
        font-size: 0.8rem;
    }

    .review-title {
        font-size: 1.05rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

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

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

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.35rem;
    }

    .cta-section {
        padding: 2.75rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.9rem 1.75rem;
        font-size: 0.85rem;
        max-width: 300px;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .modal-payment {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-payment h2 {
        font-size: 1.35rem;
        padding: 1rem;
        border-radius: 0;
    }

    #whopCheckoutContainer {
        max-height: calc(100vh - 100px);
        min-height: 400px;
        padding: 0.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.4rem 2.5rem;
    }

    .badge-image {
        width: 75px;
        top: -6px;
        right: -6px;
    }

    .best-deal-badge {
        width: 100px;
        top: -10px;
        right: -10px;
    }

    .trust-badges {
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .payment-options-img {
        max-height: 50px;
    }
    
    .guarantee-badge-img {
        max-height: 100px;
    }

    .footer {
        padding: 1.75rem 0;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Très petits téléphones (max-width: 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

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

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

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

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 0.875rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.25rem;
    }

    .plan-name {
        font-size: 1.15rem;
    }

    .platform-logos img {
        max-height: 36px;
    }

    .compatibility-icon {
        font-size: 1.65rem;
    }

    .compatibility-item span {
        font-size: 0.7rem;
    }

    .feature-card,
    .pricing-card,
    .step-card,
    .device-card {
        padding: 1.25rem 1rem;
    }

    .cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
        max-width: 280px;
    }
}
