:root {
    --primary: #2c4c3b;
    /* Vert Foncé de la carte */
    --primary-light: #3e6651;
    --secondary: #9bf0c6;
    /* Vert Clair de la carte */
    --accent: #25D366;
    /* Vert type WhatsApp pour action */
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --radius: 16px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Force le masquage de tout ce qui dépasse */
    width: 100%;
    max-width: 100vw;
    /* Double sécurité */
    position: relative;
    word-wrap: break-word;
    /* Evite qu'un mot long casse tout */
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* --- Navbar --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 60px;
    /* Ajustement hauteur logo */
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-cta-nav {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: transform 0.3s;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    background-color: var(--primary-light);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    background: var(--light);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.badge {
    display: inline-block;
    background-color: rgba(155, 240, 198, 0.3);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero .highlight {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--secondary);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(44, 76, 59, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(44, 76, 59, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid rgba(44, 76, 59, 0.1);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(44, 76, 59, 0.05);
}

.trust-indicators {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
}

.trust-indicators i {
    color: var(--primary);
    margin-right: 5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-card-floating {
    position: relative;
    width: 380px;
    height: 450px;
    background: white;
    /* Fond blanc pour se fondre avec la photo */
    border-radius: 30px;
    overflow: hidden;
    /* Important pour masquer les parties zoomées */
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Affiche toute l'image sans couper */
    object-position: center bottom;
    /* Focus visage */
    border-radius: 30px;
    border: 4px solid white;
    box-shadow: var(--shadow);
    transform: none;
    /* Image entière sans zoom */
}


.floating-badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.badge-exp {
    top: 40px;
    right: -30px;
    color: #F59E0B;
}

.badge-secu {
    bottom: 40px;
    left: -30px;
    color: var(--primary);
}

.custom-shape-divider-bottom-1681283999 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1681283999 svg {
    position: relative;
    display: block;
    width: 100%;
    /* On enlève le calc() qui ajoute 1.3px et risque de dépasser */
    height: 60px;
    transform: scale(1.02);
    /* Alternative pour éviter les gaps sans changer la largeur */
}

.custom-shape-divider-bottom-1681283999 .shape-fill {
    fill: #FFFFFF;
}

/* --- Services --- */
.section {
    padding: 100px 0;
    scroll-margin-top: 100px;
    /* Offset pour navbar fixe */
}

.bg-light {
    background-color: var(--light);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(155, 240, 198, 0.4);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* --- Process --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: step;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px white;
}

.step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.step p {
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    overflow-wrap: break-word;
    /* Évite les débordements de texte */
}

/* --- CTA --- */
.bg-secondary-light {
    background-color: rgba(155, 240, 198, 0.2);
    /* Version très claire du vert secondaire pour ne pas agresser */
    border-top: 1px solid rgba(155, 240, 198, 0.5);
    border-bottom: 1px solid rgba(155, 240, 198, 0.5);
}

.cta-title {
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-btn {
    font-size: 1.1rem;
    padding: 18px 40px;
    /* Plus grand que les boutons standards */
    box-shadow: 0 10px 25px rgba(44, 76, 59, 0.25);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(44, 76, 59, 0.35);
}

/* --- Tableau Comparatif --- */
.comparison-wrapper {
    overflow-x: auto;
    /* Pour le mobile */
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    /* Force le scroll sur petit écran */
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #f8fafc;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.col-independent {
    background-color: var(--primary) !important;
    color: white !important;
    border-radius: 12px 12px 0 0;
}

.col-employee {
    color: var(--gray) !important;
}

.criteria {
    font-weight: 700;
    color: var(--primary);
    width: 25%;
}

.criteria i {
    margin-right: 8px;
    color: var(--secondary);
}

.highlight-cell {
    background-color: rgba(155, 240, 198, 0.15);
    font-weight: 600;
    color: var(--primary);
    border-left: 2px solid var(--secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* --- Tarifs --- */
.bg-green {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    color: var(--dark);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pricing-info {
    padding: 10px;
}

.pricing-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pricing-info p,
.pricing-info ul li {
    font-size: 0.95rem;
}

.badge-best {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.3rem;
    /* Reduced from 1.5rem */
    text-align: center;
    margin-bottom: 15px;
    /* Reduced from 20px */
}

.price {
    font-size: 3rem;
    /* Reduced from 4rem */
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.currency {
    font-size: 1.2rem;
    /* Reduced from 1.5rem */
    color: var(--gray);
    font-weight: 600;
}

.period {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list i {
    color: var(--accent);
}

/* Vert soutenu check */
.features-list strong {
    font-weight: 700;
    color: var(--primary);
}

.btn-white {
    background: var(--primary);
    color: white;
    margin-top: 20px;
}

.btn-white:hover {
    background: var(--primary-light);
    color: white;
}

.vat-note {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 15px;
}

.pricing-info {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-info h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.pricing-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.pricing-info ul li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.pricing-info i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* --- Agenda / Calendrier --- */
.calendar-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header h3 {
    color: var(--primary);
    margin: 0;
    text-transform: capitalize;
}

.btn-cal {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}

.btn-cal:hover {
    color: var(--secondary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.cal-day-header {
    text-align: center;
    font-weight: 700;
    color: var(--gray);
    font-size: 0.9rem;
    padding-bottom: 10px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.cal-day:hover:not(.empty):not(.disabled) {
    background-color: rgba(44, 76, 59, 0.05);
    border-color: var(--primary);
}

.cal-day.selected {
    background-color: var(--primary);
    color: white;
}

.cal-day.today {
    color: var(--primary);
    font-weight: 800;
    border: 1px solid var(--secondary);
}

.cal-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.time-slots {
    border-top: 1px solid #eee;
    padding-top: 20px;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-slots h4 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.1rem;
}

.slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.time-slot-btn {
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.time-slot-btn:hover {
    background: var(--primary);
    color: white;
}

.time-slot-btn.booked {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slot-btn.booked:hover {
    background: #e2e8f0;
    color: #94a3b8;
    transform: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
}

.note-modal {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin: 15px 0 25px;
}

/* --- Contact Panel Droite (Form + Calendar) --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 60px 50px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info>p {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.contact-info h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-info .info-item p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    /* Alignement en haut pour éviter le décalage sur les textes longs */
    margin-bottom: 25px;
}

.contact-info .info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
    margin-top: 5px;
    /* Petit décalage pour s'aligner avec le titre */
    flex-shrink: 0;
    /* Empêche l'icône de s'écraser */
}

.contact-info .info-item:hover i {
    background: white;
    color: var(--primary);
}

.contact-info .social-links {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    gap: 15px;
}

.contact-info .social-links a {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-info .social-links a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.contact-right-panel {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-mini-form h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.divider-or {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.divider-or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.divider-or span {
    background: white;
    padding: 0 15px;
    color: var(--gray);
    font-weight: 700;
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

/* --- Calendrier Compact Integration --- */
.calendar-compact-wrapper {
    background: #f8fafc;
    /* Fond très léger pour distinguer de la carte blanche */
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    max-width: 380px;
    margin: 0 auto;
}

.calendar-header.small-header {
    margin-bottom: 15px;
}

.calendar-header.small-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
    text-transform: capitalize;
}

.calendar-grid.small-grid {
    gap: 3px;
    margin-bottom: 10px;
}

.calendar-grid.small-grid .cal-day {
    font-size: 0.85rem;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.calendar-grid.small-grid .cal-day-header {
    font-size: 0.75rem;
    padding-bottom: 5px;
}

.slots-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.slots-container.small-container {
    gap: 8px;
    justify-content: center;
}

.time-slot-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* --- Radio Button Visio/Tel Style --- */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-option {
    flex: 1;
    cursor: pointer;
}

.radio-option input {
    display: none;
}

.radio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.3s;
}

.radio-option input:checked+.radio-box {
    border-color: var(--primary);
    background-color: rgba(44, 76, 59, 0.05);
    color: var(--primary);
}

.modal-title {
    color: var(--primary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 25px;
}

/* Suppression des anciens styles calendar-wrapper si besoin, mais je les laisse pour compatibilité au cas où ou je les écrase ci-dessus par les classes spécifiques */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fcfdfd;
}

.btn-full {
    width: 100%;
}

/* --- Footer --- */
.footer {
    padding: 40px 0;
    background: #111;
    color: #888;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

/* --- LinkedIn Button Style --- */
.linkedin-container {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: #0077b5;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-linkedin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

.btn-linkedin i {
    font-size: 1.2rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .section {
        padding: 40px 0;
        /* Un peu plus d'air */
    }

    .container {
        padding: 0 20px;
        /* Force le padding latéral de sécurité */
        width: 100%;
        max-width: 100%;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        width: 100%;
        /* Force pleine largeur */
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin: 0 auto 25px;
        line-height: 1.5;
        max-width: 100%;
        /* Evite débordement */
    }

    .section-header h2 {
        font-size: 1.6rem;
        /* Reduced from 2.5rem */
        word-break: normal;
        hyphens: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
        box-sizing: border-box;
        /* Important pour pas dépasser avec padding */
    }

    .hero-visual {
        margin-top: 30px;
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .profile-card-floating {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        border-radius: 20px;
        left: auto;
        /* Reset positionnement */
        right: auto;
    }

    /* Badges */
    .floating-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
        z-index: 10;
        /* S'assure qu'ils sont au dessus */
    }

    .badge-exp {
        top: 20px;
        right: 0;
        /* Collé au bord de la carte, pas dehors */
    }

    .badge-secu {
        bottom: 20px;
        left: 0;
        /* Collé au bord de la carte */
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .pricing-card[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 30px !important;
    }

    .pricing-card[style*="display: flex"]>div:first-child {
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0;
        padding-right: 0 !important;
        padding-bottom: 30px;
    }

    .pricing-card[style*="display: flex"]>div:last-child {
        padding-left: 0 !important;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        overflow-x: hidden;
        /* Sécurité */
    }

    .contact-right-panel {
        padding: 25px 15px;
        /* Réduction du padding pour gagner de la place */
        width: 100%;
        box-sizing: border-box;
    }

    .calendar-compact-wrapper {
        max-width: 100%;
        /* S'adapte à l'écran */
        padding: 10px;
        box-sizing: border-box;
    }

    .contact-info {
        padding: 30px 20px;
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        /* Centre le titre et la description */
    }

    .contact-info .info-item {
        /* On garde les items alignés à gauche mais centrés dans le bloc si on veut, 
           mais ici on va surtout permettre au texte de revenir à gauche ou centré selon préférence.
           Pour l'instant, on laisse flex-start (gauche) pour la lisibilité des icônes.
        */
        text-align: left;
    }

    /* On aligne le bloc d'items au centre pour faire joli */
    .contact-info .info-item {
        justify-content: flex-start;
        /* ou center si on veut tout centrer */
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 80px);
        /* Prend toute la hauteur disponible */
        padding: 20px 0;
        transition: transform 0.3s ease-in-out, visibility 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transform: translateX(-100%);
        visibility: hidden;
        /* Masqué pour de bon */
        overflow-y: auto;
        /* Scroll si menu trop long */
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .hamburger {
        display: block;
    }

    .step::after {
        display: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-3 {
        gap: 20px;
    }

    .comparison-wrapper {
        margin: 0;
        /* Reset marge négative qui cassait l'alignement */
        width: 100%;
        border-radius: 10px;
        padding: 0;
        overflow-x: auto;
        /* Scroll horizontal propre */
    }

    .comparison-table {
        min-width: 600px;
        /* Force scroll si trop petit */
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
}

/* --- Boutons Spéciaux (Contractualisation) --- */
.btn-urgent {
    background-color: #ef4444;
    /* Rouge vif */
    color: white !important;
    /* Force white text over specific settings */
    font-weight: 700;
    border: 2px solid #ef4444;
}

.btn-urgent:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.btn-link-secondary {
    transition: color 0.3s;
}

.btn-link-secondary:hover {
    color: var(--primary) !important;
}