/*
Theme Name: Lyncha
Theme URI: https://lyncha.com
Author: Votre Nom
Author URI: https://lyncha.com
Description: Thème WordPress moderne pour Lyncha - Plateforme d'automatisation WhatsApp et LinkedIn
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lyncha
Tags: business, automation, modern, custom-colors, custom-menu, featured-images, threaded-comments
*/


/* ===================================
   RESET & BASE STYLES
   =================================== */
#calendly-inline-widget html {
    overflow: hidden;
}

.calendly-simple-container {
    max-width: 100% !important;
}

#calendly-inline-widget {
   width: 100%;
}

html {
    scroll-behavior: smooth; /* smooth scroll */
}

/* CTA menu item – Emelia style */
#menu-item-24 > a {
    transition: all 0.3s ease;
}

/* Hover effect */
#menu-item-24 > a:hover {
    transform: translateY(-2px);
    opacity: 1;
}

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

:root {
    --primary-blue: #2541CB;
    --primary-green: #32D851;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --gradient-bg: linear-gradient(270deg, rgba(50, 216, 81, 0.23) 0%, rgba(67, 60, 136, 0.23) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    color: var(--text-dark);
    background: linear-gradient(270deg, rgba(50, 216, 81, 0.23) 0%, rgba(67, 60, 136, 0.23) 100%);
}


/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 64px;
    line-height: 71px;
    letter-spacing: -0.07em;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    line-height: 71px;
    letter-spacing: -0.07em;
    font-weight: 600;
}

.highlight-whatsapp {
    color: var(--primary-green);
}

.highlight-linkedin {
    color: var(--primary-blue);
}

.highlight-price {
    color: #8B7FE8;
}


/* ===================================
   HEADER & NAVIGATION
   =================================== */

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.hero__mockups img {
    max-width: 100%;
}

.site-header {
    /*background: rgba(255, 255, 255, 0.95);*/
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
}

.flex-number {
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 60px;
}

.btn-login {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: var(--primary-blue);
}


/* ===================================
   MOBILE MENU - CLEAN VERSION
   =================================== */

/* Bouton hamburger - caché par défaut sur desktop */
.mobile-menu-toggle {
    display: none;
}

/* Bouton de fermeture - caché par défaut */
.mobile-menu-close {
    display: none;
}


/* Screen reader only */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}


/* ===================================
   SUBMENU / DROPDOWN STYLES
   =================================== */


/* Position relative pour les éléments parent du menu */

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    transition: opacity 0.3s ease;
}

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}


.main-navigation ul li {
    position: relative;
}


/* Cacher les sous-menus par défaut */

.main-navigation ul li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #d0efd9;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 9999;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Afficher le sous-menu au survol du parent OU du sous-menu */
.main-navigation ul li:hover > .sub-menu,
.main-navigation ul li:focus-within > .sub-menu,
.main-navigation ul li .sub-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Zone invisible pour faciliter le survol */
.main-navigation ul li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    z-index: 9998;
}


/* Style des éléments du sous-menu */

.main-navigation ul li .sub-menu li {
    display: block;
    width: 100%;
}


/* Style des liens dans les sous-menus */

.main-navigation ul li .sub-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.main-navigation ul li .sub-menu a:hover {
    background: rgba(37, 65, 203, 0.05);
    /*color: var(--primary-blue);*/
    padding-left: 25px;
}


/* Indicateur pour les éléments avec sous-menu */

.main-navigation ul li.menu-item-has-children>a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.main-navigation ul li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}


/* Pour les sous-sous-menus (si vous en avez) */

.main-navigation ul li .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 5px;
}

.main-navigation ul li .sub-menu li:hover>.sub-menu {
    display: block;
}


/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    /*border: 1px solid var(--primary-blue);*/
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #1a2f9a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 65, 203, 0.3);
}

.btn-secondary {
    background: #1a1a1a;
    color: var(--text-light);
    border: 1px solid #1a1a1a;
}

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

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--text-light);
    border-radius: 50%;
}

/* Blue button */

.btn-demo {
    background: #1f4cff;
    color: #fff;
}

.btn-demo:hover {
    background: #183ad9;
}


/* Green button */

.btn-try {
    background: #0f2d23;
    color: white;
}

.btn-try {
    background: #1E1E1E;
    color: white !important;
}

.btn-try:hover {
    background: #134033;
}


/* Icon circle */

.btn .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}


/* Specific icon colors */

.btn-demo .icon {
    background: #fff;
    color: #1f4cff;
}

.btn-try .icon {
    background: white;
    color: #333;
}


/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    background: var(--gradient-bg);
    padding: 180px 40px 100px;
    text-align: center;
    margin-top: 70px;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-mockup {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}


/* ===================================
   FEATURES SECTION
   =================================== */

.features-section {
    padding: 100px 40px;
    background: #ffffff;
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-card .features-section {
    padding: 20px 0px 0px 0px;
}

.main-dashboard {
    /*padding: 80px 140px 140px 80px;*/
    padding: 80px;
    background: #f7efff;
}

.feature-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(50, 216, 81, 0.05) 0%, rgba(67, 60, 136, 0.05) 100%);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}


/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background: #0a0a0a;
    color: var(--text-light);
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
}

.footer-copyright {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-green);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-icon {
    color: var(--primary-green);
    font-size: 18px;
}

.footer-cta {
    margin-top: 30px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}


/* ================= UTILITIES ================= */

.container {
    /*max-width: 1200px;*/
    margin: auto;
    /*padding: 24px;*/
    padding-bottom: 0px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn--primary {
    background: #2563eb;
    color: #fff;
}

.btn--dark {
    background: #0f172a;
    color: #fff;
}

.btn--ghost {
    color: #0f172a;
}


/* ================= HERO ================= */

.section_cta_container {
    text-align: center;
    gap: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.section__cta a.btn-try {
    margin-top: 40px;
}

.hero {
    /*background: linear-gradient(135deg, #eef2ff, #ecfeff, #f0fdf4);*/
    padding: 10px 0;
    padding-bottom: 0px;
}

.hero__inner {
    text-align: center;
}

.text--green {
    color: #22c55e;
}

.text--blue {
    color: #2563eb;
}

.text--purple {
    color: #7c3aed;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #e0e7ff;
    color: #2541CB;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid #2541CB;
    font-weight: 700;
}

.hero-content h1 {
    text-align: left;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero__subtitle {
    max-width: 700px;
    font-weight: bold;
    margin: auto;
    color: #475569;
    margin-bottom: 36px;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero__mockups {
    display: flex;
    justify-content: center;
    gap: 24px;
}


/* ================= FEATURES ================= */

.features {
    background: #f7efff;
}

#primary {
    padding: 0px !important;
}

.features h4 {
    text-align: center;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.section__subtitle {
    text-align: center;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 20px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.wp-theme-lyncha-theme article.type-page,
#post-210,
#post-211 {
    max-width: 100% !important;
}

.feature-card {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card__image {
    margin-bottom: 24px;
}

.feature-card__image img {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: #64748b;
}


/* ================= FOOTER ================= */

.footer {
    padding: 40px 0;
    text-align: center;
    color: #64748b;
}

.faq-section,
.pricing-section,
.hero-section-2,
.features {
    /*padding: 80px 140px 140px 80px;*/
    padding: 80px;
}


/*HERO 2*/


/* HERO SECTION 2 */


/* FEATURES HERO 2 */

.features-hero-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-hero-2-item {
    background: #1e40af;
    color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: #3ad64b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -44px;
    margin-bottom: 16px;
}

.hero-section-2 .btn-try {
    margin: 30px 0px;
}

.hero-section-2 .btn-try .icon {
    background: #1cb554;
    color: #333;
}

.hero {
    padding: 80px 20px;
    padding-bottom: 0px;
}

.hero-section-2 {
    background: #ffffff;
}

.hero-section-2 .container {
    /* max-width: 1200px; */
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    /*align-items: center;*/
}


/* Image */

.hero-section-2 .hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /*background: linear-gradient(135deg, #0fb9b1, #1e90ff);*/
    height: 790px;
}

.hero-section-2 .hero-image img {
    width: 100%;
    display: block;
}

.brand {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
}


/* Content */

.hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #2563eb;
}

.hero-content .btn-essayer {
    margin-top: 20px;
}

.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}


/* Steps */

.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.step {
    background: #f7efff;
    padding: 14px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step p {
    font-weight: 600;
}

.step p strong {
    color: #163ac4;
}

.step-number {
    /*background: #22c55e;*/
    color: #22c55e;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tags span {
    background: #ffffff;
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}


/*HERO section */


/* =========================
   HERO SECTION 3
========================= */

.hero-section-3 {
    padding: 80px 20px;
    background: #f7f4ff;
}

.hero-3-container {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #7c6ee6, #6a5acd);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}


/* LEFT CONTENT */

.hero-3-content h2 {
    font-size: 36px;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-3-subtitle {
    color: #e5e2ff;
    font-size: 16px;
    margin-bottom: 28px;
}


/* LIST */

.hero-3-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-3-item {
    background: #ffffff;
    border-radius: 999px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.hero-3-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #4f46e5;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}


/* FOOTER TEXT */

.hero-3-footer {
    color: #e5e2ff;
    font-size: 14px;
    margin-bottom: 28px;
}


/* CTA */

.hero-3-cta {
    background: #0b0b0b;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}

.hero-3-cta:hover {
    background: #111827;
}


/*Test CArd*/

.card {
    background: white;
    border: 3px solid #4A90E2;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
}


/* IMAGE */

.hero-3-image {
    text-align: right;
}

.hero-3-image img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}


/* Dashboard Section */

.dashboard-section {
    max-width: 1700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #7C6CF1 0%, #6B5DD3 100%);
    border-radius: 28px;
    padding: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 30px 60px rgba(124, 108, 241, 0.3);
}

.dashboard-content h2 {
    font-size: 36px;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.dashboard-subtitle {
    color: white;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.dashboard-item {
    background: #ffffff;
    border-radius: 50px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    transition: transform 0.2s ease;
}

.dashboard-item:hover {
    transform: translateX(5px);
}

.dashboard-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #7C6CF1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.dashboard-footer {
    color: white;
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.5;
    font-weight: 600;
}

.btn-essayer {
    background: #1E1E1E;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-essayer:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-icon-circle {
    width: 22px;
    height: 22px;
    background: #32D851;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-image {
    position: relative;
}

.dashboard-phone {
    width: 100%;
    /* max-width: 400px; */
    margin-left: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.dashboard-phone:hover {
    transform: perspective(1000px) rotateY(0deg);
}


/* Pricing Section */

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.pricing-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.pricing-toggle {
    display: inline-flex;
    background: white;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.toggle-btn {
    padding: 10px 28px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.toggle-btn.active {
    background: #2563EB;
    color: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-section {
    background: #f7efff;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon-start {
    background: #22C55E;
}

.icon-pro {
    background: #8B5CF6;
}

.icon-enterprise {
    background: #2563EB;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.plan-name.start {
    color: #22C55E;
}

.plan-name.pro {
    color: #8B5CF6;
}

.plan-name.enterprise {
    color: #2563EB;
}

.price {
    font-size: 35px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.price-period {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.platform-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
}

.platform-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
    background: #2563EB;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cta-button {
    width: 100%;
    padding: 14px 24px;
    background: #1E1E1E;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 24px;
}

.cta-button:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.btn-icon {
    width: 22px;
    height: 22px;
    background: #32D851;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-section {
    padding-top: 24px;
    border-top: 1px solid #000000;
}

.features-title {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.enterprise-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}


/* ===================================
           FAQ SECTION
        =================================== */

.faq-section {
    /*max-width: 1200px;*/
    margin: 0 auto;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 16px;
    color: #666;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon.open {
    background: #32D851;
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
    margin-top: 16px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}


/* ===================================
           CTA SECTION
        =================================== */

.cta-section {
    /*background: linear-gradient(135deg, #22C55E 0%, #2563EB 100%);*/
    background: url(/wp-content/uploads/2026/02/bbc_svg.png);
    padding: 100px 40px;
    /* position: relative;
    overflow: hidden;*/
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.whatsapp-icon-bg {
    position: absolute;
    font-size: 400px;
    color: white;
    opacity: 0.05;
}

.whatsapp-left {
    top: -100px;
    left: -100px;
}

.linkedin-right {
    bottom: -150px;
    right: -100px;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.cta-logo svg {
    width: 24px;
    height: 24px;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 40px;
}

.cta-content .highlight {
    color: #182799;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-demo {
    background: #2563EB;
    color: white;
}

.btn-demo:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-try {
    background: #1E1E1E;
    color: white;
}

.btn-try:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-icon-circle {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-try .btn-icon-circle {
    background: #32D851;
}


/* ================= WHATSAPP BENEFITS SECTION ================= */

.whatsapp-benefits {
    background: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.whatsapp-benefits h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
}

.benefits-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 150px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-circle.purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.icon-circle.green {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
}

.icon-circle.blue {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.icon-circle.black {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.icon-circle.light-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.benefit-icon-item p {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.4;
}

.benefits-cta {
    margin-top: 40px;
}


/* ================= WHY WHATSAPP MARKETING SECTION ================= */

.why-whatsapp {
    background: linear-gradient(135deg, #f0f4ff 0%, #e5f3ff 100%);
    padding: 100px 40px;
    text-align: center;
}

.why-whatsapp h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

.comparison-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 0 0 auto;
}

.comparison-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.comparison-circle:hover {
    transform: scale(1.05);
}

.blue-circle {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.green-circle {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
}

.stat-text {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.stat-text strong {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-top: 8px;
}

.result-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 60px;
}

.phone-mockup {
    max-width: 600px;
    margin: 0 auto;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

#main-page-whatsapp {
    max-width: 100% !important;
}


/* ================= WHO CAN USE SECTION ================= */

.who-can-use {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%), url('/wp-content/uploads/2026/01/whatsappbg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    text-align: center;
    color: white;
    position: relative;
}

.who-can-use::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    pointer-events: none;
}

.who-can-use .container {
    position: relative;
    z-index: 1;
}

.who-can-use h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.who-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1330px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.use-case-icon {
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    /*margin-bottom: 12px;*/
}

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

.use-case-list {
    list-style: none;
    padding-left: 0;
}

.use-case-list li {
    font-size: 14px;
    color: #555;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.use-case-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #252826;
    font-weight: 700;
}


/* ================= HOW TO LAUNCH SECTION ================= */

.how-to-launch {
    background: #ffffff;
    padding: 100px 40px;
}

.how-to-launch h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.launch-steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.launch-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.launch-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    /*color: white;*/
    flex-shrink: 0;
}


/*
.step-number.purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}
*/

.step-number.blue {
    background: #7669EE;
    color: #FFFF;
}

.step-number.green {
    /*background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);*/
    background: #32D851;
    color: black;
}


/*
.step-number.dark-blue {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
}*/

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-details {
    list-style: none;
    padding-left: 0;
}

.step-details li {
    font-size: 15px;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.5;
}

.step-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: 700;
}

.sub-list {
    list-style: none;
    margin-top: 8px;
    margin-left: 20px;
}

.sub-list li::before {
    content: '◦';
}


/* Campaign Preview */

.campaign-preview {
    position: sticky;
    top: 100px;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    border-radius: 24px;
    padding: 24px;
    /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);*/
}

.preview-badge {
    background: linear-gradient(135deg, #EC4899 0%, #F43F5E 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.preview-screen {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.preview-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-btn {
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.preview-btn.create {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: white;
}

.preview-btn.create:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.preview-btn.launch {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: white;
}

.preview-btn.launch:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}


/* ================= FINAL CTA SECTION ================= */

.final-cta {
    /*background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);*/
    background: url(/wp-content/uploads/2026/02/bbc_svg.png);
    padding: 120px 40px;
    /* position: relative;  
    overflow: hidden;*/
    text-align: center;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.whatsapp-bg-logo {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 600px;
    height: 600px;
    opacity: 0.08;
    transform: rotate(-15deg);
}

.whatsapp-bg-logo svg {
    width: 100%;
    height: 100%;
}

.linkedin-logo {
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 400px;
    height: 400px;
    opacity: 0.15;
}

.linkedin-logo svg {
    width: 100%;
    height: 100%;
}

.final-cta .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-final:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-cta-final.black {
    background: #1E1E1E;
    color: white;
}

.btn-cta-final.black:hover {
    background: #2a2a2a;
}

.btn-cta-final.purple {
    background: #8B5CF6;
    color: white;
}

.btn-cta-final.purple:hover {
    background: #7C3AED;
}


/* Add sparkle animation to purple button */

.btn-cta-final.purple {
    position: relative;
    overflow: hidden;
}

.btn-cta-final.purple::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}


/* Optional: Add subtle floating animation */

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(-15deg);
    }
    50% {
        transform: translateY(-20px) rotate(-15deg);
    }
}

.whatsapp-bg-logo {
    animation: float 6s ease-in-out infinite;
}

@keyframes floatLinkedIn {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(15px);
    }
}

.linkedin-logo {
    animation: floatLinkedIn 5s ease-in-out infinite;
}

#landing-page-linkedin .subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 100%;
    text-align: center;
}

#landing-page-linkedin .final-cta {
    background: url(/wp-content/uploads/2026/02/bbc_svg.png);
}

#landing-page-linkedin .step-number.blue {
    background: #7669EE;
    color: white;
}

#landing-page-linkedin .hero__subtitle {
    max-width: 700px;
    font-weight: normal;
    margin: auto;
    color: #475569;
    margin-bottom: 36px;
}


/* ===================================
   RESPONSIVE MEDIA QUERIES
   =================================== */

/* RESPONSIVE MOBILE - 1024px */
@media (max-width: 1024px) {
    
    /* Container header */
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
    }

    /* Afficher le bouton hamburger */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        gap: 0;
    }

    /* Lignes du hamburger */
    .menu-icon {
        width: 28px;
        height: 3px;
        background: #1a1a1a;
        position: relative;
        transition: all 0.3s ease;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
        position: absolute;
        width: 28px;
        height: 3px;
        background: #1a1a1a;
        left: 0;
        transition: all 0.3s ease;
    }

    .menu-icon::before {
        top: -8px;
    }

    .menu-icon::after {
        top: 8px;
    }

    /* Animation du hamburger en X */
    .mobile-menu-toggle.active .menu-icon {
        background: transparent;
    }

    .mobile-menu-toggle.active .menu-icon::before {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .menu-icon::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* ================================
       MENU NAVIGATION - CACHÉ PAR DÉFAUT
       ================================ */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%; /* CACHÉ à droite par défaut */
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #d3d4e2;
        padding: 80px 0 40px;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    /* Menu ouvert - Glisse depuis la droite */
    .main-navigation.is-open {
        right: 0;
    }

    /* Overlay sombre */
    .main-navigation::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /*background: rgba(0, 0, 0, 0.5);*/
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
        pointer-events: none;
    }

    .main-navigation.is-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Bouton de fermeture X */
    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1002;
        color: #1a1a1a;
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover {
        transform: rotate(90deg);
        color: var(--primary-blue);
    }

    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
    }

    /* Liste du menu */
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0 20px;
        list-style: none;
    }

    .main-navigation ul li {
        border-bottom: 1px solid #f0f0f0;
        position: relative;
    }

    .main-navigation ul li a {
        display: block;
        padding: 16px 10px;
        font-size: 16px;
        color: var(--text-dark);
        text-decoration: none;
    }

    /* Sous-menus */
    .main-navigation ul li .sub-menu {
        position: static;
        box-shadow: none;
        background: #f8f8f8;
        border-radius: 0;
        padding: 0;
        margin: 0;
        display: none;
        opacity: 1; /* Toujours opaque en mobile */
        visibility: visible; /* Toujours visible en mobile (quand display: block) */
    }

    .main-navigation ul li.submenu-open > .sub-menu {
        display: block;
    }

    .main-navigation ul li .sub-menu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .main-navigation ul li .sub-menu a {
        padding-left: 30px;
        font-size: 15px;
    }

    /* Cacher la flèche desktop */
    .main-navigation ul li.menu-item-has-children > a::after {
        display: none;
    }

    /* Actions du header (boutons) */
    .header-actions {
        margin: 30px 20px 0;
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }

    .header-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Empêcher le scroll du body quand menu ouvert */
    body.menu-open {
        overflow: hidden;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    h1,
    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .faq-section,
    .pricing-section,
    .hero-section-2,
    .features {
        padding: 30px;
    }
    
    .hero-section-2 .container {
        flex-direction: column;
        display: flex;
        gap: 60px;
    }
    
    .pricing-cards {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        margin-top: 40px;
        flex-direction: column;
    }
    
    .hero__mockups img {
        width: 800px;
    }

    .launch-steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .campaign-preview {
        position: relative;
        top: 0;
    }
}

/* RESPONSIVE - 991px */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-icon {
        width: 30px;
        height: 2px;
        background: #000;
        position: relative;
        display: block;
    }
    
    .menu-icon::before,
    .menu-icon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background: #000;
        left: 0;
    }
    
    .menu-icon::before {
        top: -8px;
    }
    
    .menu-icon::after {
        top: 8px;
    }

    /* Show menu */
    .main-navigation.is-open {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-actions {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
    }
}

/* RESPONSIVE - 900px */
@media (max-width: 900px) {
    .features-hero-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-3-container {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .hero-3-image {
        text-align: center;
    }
    
    .hero-3-content h2 {
        font-size: 30px;
    }

    .dashboard-section {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }
    
    .dashboard-content h2 {
        font-size: 28px;
    }
    
    .dashboard-phone {
        margin: 0 auto;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-header h2 {
        font-size: 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2,
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }

    .whatsapp-benefits h2,
    .why-whatsapp h2 {
        font-size: 32px;
    }
    
    .benefits-icons {
        gap: 30px;
    }
    
    .comparison-circle {
        width: 280px;
        height: 280px;
        padding: 30px;
    }
    
    .comparison-circles {
        gap: 30px;
    }

    .who-can-use h2,
    .how-to-launch h2 {
        font-size: 32px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 80px 40px;
    }
    
    .final-cta-content h2 {
        font-size: 36px;
        margin-bottom: 36px;
    }
    
    .whatsapp-bg-logo {
        width: 400px;
        height: 400px;
        top: -50px;
        left: -100px;
    }
    
    .linkedin-logo {
        width: 300px;
        height: 300px;
        bottom: -50px;
        right: -30px;
    }

    .faq-section,
    .pricing-section,
    .hero-section-2,
    .features {
        padding: 10px;
    }
    
    .hero-section-2 .container {
        flex-direction: column;
        display: flex;
        gap: 60px;
    }
    
    .pricing-cards {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        margin-top: 40px;
        flex-direction: column;
    }
    
    .hero__mockups img {
        width: 800px;
    }
}

#calendly-header {
    background: white;
}
	
#calendly-header h2 {
	font-size: 42px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 16px;
	text-align: center;
    
}

#calendly-header p {
	text-align: center;
    
}

/* RESPONSIVE - 768px */
@media (max-width: 768px) {
    .header-container {
        padding: 20px;
    }
    
    .main-navigation ul {
        gap: 20px;
    }
    
    .hero-section {
        padding: 140px 20px 60px;
    }
    
    h1,
    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    #main-hero-one .hero h1 {
        font-size: 30px;
    }
    
    #main-hero-one .features h2 {
        font-size: 24px;
    }
    
    #main-hero-one .hero-content h1 {
        font-size: 30px;
        text-align: center;
    }
    
    #main-hero-one .flex-number {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-lyncha {
        text-align: center;
    }
    
    #main-hero-one .step-cln {
        flex-direction: column;
    }
    
    #main-hero-one .features-hero-2 {
        padding: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    #main-hero-one .features-title {
        text-align: center;
    }

    .faq-section,
    .hero-section-2,
    .features,
    .main-dashboard {
        padding: 50px 15px 50px 15px;
    }
    
    .pricing-section {
        padding: 50px 90px 50px 90px;
    }
    
    .hero-section-2 .container {
        flex-direction: column;
        display: flex;
        gap: 60px;
    }
    
    .hero__mockups img {
        max-width: 100%;
    }
    
    .hero__cta {
        display: flex;
        flex-direction: row;
    }
    
    .dashboard-content h2,
    .dashboard-content p {
        text-align: center;
    }
}

/* RESPONSIVE - 600px */
@media (max-width: 600px) {
    .dashboard-section {
        padding: 30px 20px;
    }
    
    .dashboard-content h2 {
        font-size: 24px;
    }
    
    .dashboard-item {
        padding: 14px 18px;
        font-size: 14px;
    }

    .pricing-card {
        padding: 32px 24px;
    }
    
    .price {
        font-size: 40px;
    }

    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta {
        justify-content: center;
    }

    .whatsapp-benefits,
    .why-whatsapp {
        padding: 60px 20px;
    }
    
    .whatsapp-benefits h2,
    .why-whatsapp h2 {
        font-size: 28px;
    }
    
    .benefits-icons {
        gap: 20px;
    }
    
    .comparison-circle {
        width: 250px;
        height: 250px;
    }
    
    .stat-text {
        font-size: 16px;
    }
    
    .result-text {
        flex-direction: column;
        font-size: 16px;
    }

    .who-can-use {
        padding: 60px 60px;
    }
    
    .how-to-launch {
        padding: 60px 20px;
    }
    
    .who-can-use h2,
    .how-to-launch h2 {
        font-size: 28px;
    }
    
    .use-case-card {
        padding: 24px 20px;
    }
    
    .launch-step {
        gap: 16px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .final-cta {
        padding: 60px 20px;
    }
    
    .final-cta-content h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-final {
        justify-content: center;
        width: 100%;
    }
    
    .whatsapp-bg-logo {
        width: 300px;
        height: 300px;
        top: -30px;
        left: -80px;
    }
    
    .linkedin-logo {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -20px;
    }    .main-navigation::before {

}

/* RESPONSIVE - 480px */
@media (max-width: 480px) {
    .faq-section,
    .pricing-section,
    .hero-section-2,
    .features {
        padding: 50px 15px 50px 15px;
    }
    
    .hero-section-2 .hero-image {
        height: auto;
    }
    
    #landing-page-linkedin .hero-section-2 {
        padding: 50px;
    }
    
    .main-dashboard {
        padding: 50px 15px 50px 15px;
    }
    
    .hero-section-2 .container {
        flex-direction: column;
        display: flex;
        gap: 60px;
    }
    
    .hero__mockups img {
        width: 350px;
    }
    
    .hero__cta {
        display: flex;
        flex-direction: column;
    }
    
    .dashboard-content h2,
    .dashboard-content p {
        text-align: center;
    }
}

/* Pricing Tab Toggle */
.pricing-tab-content {
    display: none;
}

.pricing-tab-content.active {
    display: block;
}

/* Smooth transition */
.pricing-tab-content {
    animation: fadeIn 0.3s ease-in;
}

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

#landing-page-linkedin .sp-testimonial-free-wrapper-336 {
       padding: 100px 40px;
}

#sp-testimonial-free-wrapper-336 {
       padding: 100px 40px;
}