/* ========================================
   LIMBO - Landing Page Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #0f0f0f;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    padding-top: 1rem;
}

/* Container principal pour les sections */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   Variables / Colors (basées sur home.jpg)
   ======================================== */
:root {
    --green-dark: #1B5E3B;
    --green-logo: #1B5E3B;
    --orange-accent: #E74C3C;
    --orange-dot: #E74C3C;

    /* Section backgrounds - couleurs exactes de la maquette */
    --bg-hero: #e6e4cf;
    --bg-features: #7bb88c;
    --bg-benefits: #d4c6e0;
    --bg-difference: #6dc7df;
    --bg-testimonials: #7bb88c;
    --bg-pricing: #f2d2c3;

    /* Button colors */
    --btn-green: #2E7D4A;
    --btn-green-hover: #256339;
    --btn-orange: #E74C3C;

    /* Card colors */
    --card-green: #7CB97A;
    --card-orange: #E07B5B;
    --card-yellow: #F4C542;
    --card-pink: #D4A5A5;
    --card-blue: #7EC8E3;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
}

.text-green {
    color: var(--green-dark);
}

.text-orange {
    color: var(--orange-accent);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.7rem 3rem 0.7rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.btn-primary {
    background: #0f0f0f;
    color: #fff;
}

.btn-primary:hover {
    background: #2a2a2a;
    transform: translateY(-0.125rem);
}

.btn-outline {
    background: transparent;
    border: 0.125rem solid #1B5E3B;
    color: #1B5E3B;
}

.btn-outline:hover {
    background: #1B5E3B;
    color: #fff;
}

.btn .icon-arrow {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    background: #7bb88c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0f0f;
    flex-shrink: 0;
    position: absolute;
    right: 0.4rem;
}

/* ========================================
   Header / Navigation
   ======================================== */
.header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: var(--container-max-width);
    z-index: 1000;
    padding: 0.9rem clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e6e4cf;
    border-radius: 2rem 2rem 0 0;
    border-bottom: 2px solid #0f0f0f;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
    border-radius: 2rem;
    border-bottom: none;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}

.header .btn-primary {
    background: #7bb88c;
}

.header .btn-primary:hover {
    background: #6aa87c;
}

.header.dark-bg .logo img {
    filter: brightness(0) invert(1);
}

.header.dark-bg .nav-links a {
    color: #fff;
}

.header.dark-bg .nav-links .btn-primary {
    background: #fff;
    color: #0f0f0f;
}

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

.logo img {
    height: 32px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--green-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange-accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #0f0f0f;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    gap: 0.35rem;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.95);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #7bb88c;
}

.mobile-nav .btn-primary {
    background: #7bb88c;
    color: #0f0f0f;
    padding: 1rem 2rem 1rem 1.5rem;
    font-size: 1rem;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close::before,
.mobile-nav-close::after {
    content: '';
    position: absolute;
    width: 1.25rem;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.mobile-nav-close::before {
    transform: rotate(45deg);
}

.mobile-nav-close::after {
    transform: rotate(-45deg);
}

/* ========================================
   Boxed Layout - Container system like Bootstrap
   ======================================== */
:root {
    --container-max-width: 1320px;
    --container-padding: 1rem;
    --section-gap: 0.75rem;
    --section-radius: 2rem;
}

.boxed-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    border-radius: 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto 0.75rem auto;
}

section.hero {
    margin-top: 0;
    border-radius: 2rem !important;
}

/* ========================================
   Section 1: Hero
   ======================================== */
.hero {
    background: var(--bg-hero);
    padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 8vw, 7rem);
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 2rem !important;
    margin-top: 5rem;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--section-gap);
}

.hero-container {
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.hero-content {
    z-index: 2;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.hero h1 {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.15;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #c45a3a;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.hero-steps {
    margin-bottom: 1.25rem;
}

.hero-steps p {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 200;
    color: #0f0f0f;
    margin-bottom: 0.125rem;
    line-height: 1;
}

.hero-platform {
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    color: #0f0f0f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-platform strong {
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.hero-note {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    color: #0f0f0f;
    font-style: italic;
    padding-left: 0;
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: min(100%, 28rem);
    z-index: 2;
}

.hero-image-caption {
    margin-top: 1rem;
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    color: #c45a3a;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* ========================================
   Section 2: Features (Gagne du temps)
   ======================================== */
.features {
    background: var(--bg-features);
    padding: clamp(0.5rem, 1.25vw, 1.25rem) clamp(2rem, 8vw, 4rem);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

.features-deco-bottom {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: clamp(4rem, 8vw, 8rem);
}

.features-container {
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.features-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    padding-left: clamp(2rem, 4vw, 4rem);
}

.features-image img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.features-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #0f0f0f;
    margin-bottom: 0;
    line-height: 1.15;
}

.features-content h2 span {
    display: block;
}

.features-content .subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: #0f0f0f;
    margin-bottom: 1.75rem;
}

.features-list {
    margin-bottom: 1.75rem;
}

.features-list h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: #0f0f0f;
    margin-bottom: 1rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 200;
    color: #0f0f0f;
    margin-bottom: 0.125rem;
    line-height: 1;
}

.features-list li i {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 3;
}

.features-cta {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-start;
}

/* ========================================
   Section 3: Benefits (Juste l'essentiel)
   ======================================== */
.benefits {
    background: var(--bg-benefits);
    padding: clamp(1.5rem, 3.75vw, 3.75rem) clamp(2rem, 8vw, 4rem);
    border-radius: 2rem;
}

.benefits-container {
    max-width: 75rem;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.benefits-header h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    color: #0f0f0f;
    margin-bottom: 0;
}

.benefits-header p {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 200;
    color: #0f0f0f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: end;
}

.benefits-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.benefits-visual img {
    max-width: min(100%, 22rem);
}

.benefits-text-left {
    text-align: center;
    width: 100%;
    background: #b194c2;
    border-radius: 1.25rem;
    padding: clamp(1rem, 2vw, 1.5rem);
}

.benefits-text-left h4 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.benefits-text-left p {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
}

.benefits-right {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08);
}

.benefits-right h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: #0f0f0f;
    margin-bottom: 1.5rem;
}

.benefits-right ul {
    list-style: none;
}

.benefits-right li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    color: #0f0f0f;
    margin-bottom: 0.875rem;
    line-height: 1.5;
}

.benefits-right li::before {
    content: "•";
    color: #0f0f0f;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}

.benefits-bottom {
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benefits-bottom-text h4 {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: #0f0f0f;
    margin-bottom: 0.25rem;
}

.benefits-bottom-text p {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #0f0f0f;
}

/* ========================================
   Section 4: Difference (Pourquoi LIMBO)
   ======================================== */
.difference {
    background: var(--bg-difference);
    padding: clamp(1.5rem, 3.75vw, 3.75rem) clamp(2rem, 8vw, 4rem);
    border-radius: 2rem;
}

.difference-container {
    max-width: 62.5rem;
    margin: 0 auto;
}

.difference-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.difference-header h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    color: #0f0f0f;
}

.difference-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2.5rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    text-align: center;
}

.comparison-card h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: #0f0f0f;
    margin-bottom: 1.25rem;
}

.comparison-content {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.comparison-card img {
    height: clamp(6rem, 10vw, 8rem);
    object-fit: contain;
}

.comparison-card.others img {
    height: clamp(8rem, 14vw, 12rem);
}

.comparison-card ul {
    list-style: none;
    text-align: left;
}

.comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.comparison-card.others ul li i {
    color: #c44;
    width: 1rem;
    height: 1rem;
    stroke-width: 3;
}

.comparison-card.limbo ul li i {
    color: #0f0f0f;
    width: 1rem;
    height: 1rem;
    stroke-width: 3;
}

.comparison-card.limbo {
    background: #7bb88c;
    border: none;
}

.comparison-card.limbo h3 {
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    font-weight: 800;
}

.difference-summary {
    text-align: center;
    margin-bottom: 1.875rem;
}

.difference-summary h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.difference-summary p {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.difference-targets {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #0f0f0f;
}

.difference-cta {
    text-align: center;
}

/* ========================================
   Section 5: Testimonials
   ======================================== */
.testimonials {
    background: var(--bg-testimonials);
    padding: clamp(0.5rem, 1.25vw, 1.25rem) clamp(2rem, 8vw, 4rem);
    border-radius: 2rem;
}

.testimonials-container {
    max-width: 68.75rem;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials-header h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.25rem);
    color: #0f0f0f;
    margin-bottom: 0;
}

.testimonials-header p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 200;
    color: #0f0f0f;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.875rem;
}

.testimonial-card {
    background: #0f0f0f;
    border-radius: 1rem;
    padding: 0.75rem;
}

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

.testimonial-stars img {
    width: 6.25rem;
}

.testimonial-content {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-card p {
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #7bb88c;
    font-style: italic;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    border-radius: 50%;
    background: #7bb88c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.testimonials-cta {
    text-align: center;
}

.testimonials-note {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #0f0f0f;
    margin-bottom: 0.75rem;
    font-style: italic;
}

/* ========================================
   Section 6: Pricing
   ======================================== */
.pricing {
    background: var(--bg-pricing);
    padding: clamp(0.5rem, 1.25vw, 1.25rem) clamp(2rem, 8vw, 4rem);
    border-radius: 2rem;
}

.pricing-container {
    max-width: 75rem;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 6rem;
}

.pricing-header .badge {
    display: inline-block;
    background: #0f0f0f;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: clamp(0.65rem, 0.9vw, 0.75rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #0f0f0f;
    margin-bottom: 0;
}

.pricing-header p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 200;
    color: #0f0f0f;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pricing-card {
    background: #fff;
    border-radius: 1rem;
    padding: clamp(1.25rem, 2vw, 1.75rem) clamp(0.5rem, 0.8vw, 0.75rem);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.card-start {
    background: #daeef7;
}

.pricing-card.card-essentiel {
    background: #ecbfaa;
}

.pricing-card.card-pro {
    background: #b0d1b6;
}

.pricing-card.card-team {
    background: #e4dbec;
}

.pricing-card.card-entreprise {
    background: #fcf2f0;
}

.pricing-card.card-start .price {
    background: #6dc7df;
}

.pricing-card.card-essentiel .price {
    background: #cf6042;
}

.pricing-card.card-pro .price {
    background: #68af80;
}

.pricing-card.card-team .price {
    background: #b398c3;
}

.pricing-card.card-entreprise .price {
    background: #e2c424;
}

.pricing-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 0.1875rem solid var(--green-dark);
}

.pricing-deco {
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: auto;
    z-index: 10;
}

.pricing-card .plan-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #0f0f0f;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 1.25rem;
    font-size: clamp(0.6rem, 0.85vw, 0.7rem);
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    color: #0f0f0f;
    margin-bottom: 0.25rem;
}

.pricing-card .plan-subtitle {
    display: block;
    width: 100%;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 200;
    color: #0f0f0f;
    margin-bottom: 1rem;
    min-height: 4rem;
}

.pricing-card .price {
    display: block;
    width: 100%;
    font-size: clamp(1.2rem, 1.9vw, 1.6rem);
    font-weight: 600;
    color: #fff;
    background: #0f0f0f;
    padding: 0.15rem 0.5rem;
    border-radius: 3rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.pricing-card .price-period {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 1.25rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: clamp(0.7rem, 0.95vw, 0.8rem);
    color: #0f0f0f;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.pricing-card ul li svg {
    width: 0.6rem;
    height: 0.6rem;
    min-width: 0.6rem;
    stroke-width: 3;
}

.pricing-card .btn {
    width: 100%;
    padding: 0.4rem 2rem 0.4rem 0.8rem;
    font-size: clamp(0.65rem, 0.85vw, 0.75rem);
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .plan-note {
    width: 100%;
    font-size: clamp(0.7rem, 0.95vw, 0.8rem);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pricing-card .plan-footer {
    font-size: clamp(0.65rem, 0.85vw, 0.75rem);
    color: #0f0f0f;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.pricing-card.card-start .btn .icon-arrow {
    background: #6dc7df;
}

.pricing-card.card-essentiel .btn .icon-arrow {
    background: #cf6042;
}

.pricing-card.card-pro .btn .icon-arrow {
    background: #68af80;
}

.pricing-card.card-team .btn .icon-arrow {
    background: #b398c3;
}

.pricing-card.card-entreprise .btn .icon-arrow {
    background: #e2c424;
}

.pricing-footer {
    text-align: center;
    font-size: clamp(0.8rem, 1.1vw, 0.875rem);
    color: #0f0f0f;
}

.pricing-footer strong {
    color: #0f0f0f;
}

/* ========================================
   Section 7: Final CTA
   ======================================== */
.final-cta {
    padding: clamp(1.5rem, 3.75vw, 3.75rem) clamp(2rem, 8vw, 4rem);
    text-align: center;
    background: #0f0f0f;
    border-radius: 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto 0.75rem auto;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #fff;
    margin-bottom: 0;
}

.final-cta h2 span {
    color: var(--orange-accent);
}

.final-cta .subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #0f0f0f;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(2rem, 4vw, 4rem);
    border-radius: 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto 1rem auto;
}

.footer-container {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 1.75rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 1.875rem;
    font-size: clamp(0.8rem, 1.1vw, 0.875rem);
    color: #999;
}

.footer-links a:hover {
    color: #fff;
}

/* ========================================
   Decorative Elements
   ======================================== */
.deco-shapes {
    position: absolute;
    pointer-events: none;
}

.deco-shapes img {
    width: 9.375rem;
    opacity: 0.5;
}

/* ========================================
   Responsive - Breakpoints Bootstrap
   ======================================== */

/* XXL - >= 1400px */
@media (min-width: 1400px) {
    :root {
        --container-max-width: 1320px;
        --container-padding: 2rem;
    }
}

/* XL - >= 1200px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    :root {
        --container-max-width: 1140px;
        --container-padding: 1.5rem;
    }
}

/* LG - >= 992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    :root {
        --container-max-width: 960px;
        --container-padding: 1.25rem;
    }
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MD - >= 768px */
@media (min-width: 768px) and (max-width: 991.98px) {
    :root {
        --container-max-width: 720px;
        --container-padding: 1rem;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-container,
    .features-container,
    .benefits-grid,
    .difference-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-image {
        order: -1;
    }
}

/* SM - >= 576px */
@media (min-width: 576px) and (max-width: 767.98px) {
    :root {
        --container-max-width: 540px;
        --container-padding: 0.75rem;
        --section-radius: 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-nav {
        display: flex;
    }

    section {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        width: calc(100% - 1.5rem);
    }

    .header {
        width: calc(100% - 1.5rem);
    }

    .footer {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        width: calc(100% - 1.5rem);
    }
    .hero-container,
    .features-container,
    .benefits-grid,
    .difference-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-image {
        order: -1;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* XS - < 576px */
@media (max-width: 575.98px) {
    :root {
        --container-max-width: 100%;
        --container-padding: 0.5rem;
        --section-radius: 1rem;
        --section-gap: 0.5rem;
    }

    section {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        width: calc(100% - 1.5rem);
    }

    .header {
        padding: 0.75rem 1rem;
        width: calc(100% - 1.5rem);
        left: 50%;
        transform: translateX(-50%);
    }
    .hero {
        margin-top: 4rem;
        padding: 2rem 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-nav {
        display: flex;
    }

    .footer {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        width: calc(100% - 1.5rem);
    }
    .hero-container,
    .features-container,
    .benefits-grid,
    .difference-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-image {
        order: -1;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer {
        padding: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-content h2,
    .benefits-header h2,
    .difference-header h2,
    .pricing-header h2,
    .final-cta h2 {
        font-size: 28px;
    }
}
