:root {
    --dark: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --white: #ffffff;

    --teal: #00b8a9;
    --teal-dark: #008f86;

    --orange: #ff7a1a;
    --orange-dark: #e8660c;

    --violet: #4c1d95;
    --violet-soft: #ede9fe;

    --green: #25d366;

    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.08);

    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark);
    background:
        radial-gradient(circle at top left, rgba(0, 184, 169, 0.13), transparent 34rem),
        radial-gradient(circle at top right, rgba(255, 122, 26, 0.11), transparent 32rem),
        #ffffff;
    line-height: 1.6;
}

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

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.logo-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--teal), var(--violet));
    color: #fff;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(0, 184, 169, 0.24);
}

.logo strong {
    display: block;
    line-height: 1.1;
    font-size: 1.02rem;
}

.logo small {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #334155;
    font-weight: 750;
    font-size: 0.94rem;
}

.nav-links a {
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--teal-dark);
}

.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

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

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    border: 0;
    font-weight: 950;
    cursor: pointer;
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    box-shadow: 0 18px 38px rgba(255, 122, 26, 0.32);
}

.btn-soft {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.20);
}

.btn-light {
    background: #fff;
    color: var(--dark);
}

/* =========================================================
   MOBILE STICKY CTA
========================================================= */

.mobile-sticky-cta {
    display: none;
}

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

.hero {
    padding: 72px 0 56px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 54px;
}

.eyebrow,
.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(0, 184, 169, 0.10);
    color: var(--teal-dark);
    font-weight: 950;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.35rem, 6vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero-text {
    max-width: 620px;
    font-size: 1.13rem;
    color: #475569;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions.center {
    justify-content: center;
}

.trust-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-row span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(226, 232, 240, 0.85);
    color: #334155;
    font-size: 0.88rem;
    font-weight: 750;
}

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

.hero-visual {
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
}

.phone-card {
    width: min(345px, 78vw);
    border-radius: 42px;
    padding: 13px;
    background: #111827;
    box-shadow: var(--shadow);
    transform: rotate(3deg);
    position: relative;
    z-index: 2;
}

.phone-card img {
    border-radius: 30px;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top;
    background: #fff;
}

.phone-top {
    width: 88px;
    height: 7px;
    background: #334155;
    border-radius: 99px;
    margin: 0 auto 10px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    width: 210px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-soft);
}

.floating-card strong {
    display: block;
    font-weight: 950;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.card-top {
    top: 72px;
    right: 0;
}

.card-bottom {
    bottom: 80px;
    left: 0;
}

/* =========================================================
   SHARED SECTION
========================================================= */

.section-heading {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 42px;
}

.section-heading h2,
.solution-grid h2,
.dashboard-copy h2,
.needed-card h2,
.final-card h2,
.whatsapp-order-card h2 {
    margin: 14px 0 10px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.section-heading p,
.solution-grid p,
.dashboard-copy p,
.needed-card p,
.final-card p {
    color: var(--muted);
    font-size: 1.04rem;
}

.pain-section,
.solution-section,
.examples-section,
.dashboard-section,
.offers-section,
.process-section,
.needed-section,
.faq-section,
.final-cta,
.whatsapp-order-section {
    padding: 70px 0;
}

/* =========================================================
   PAIN
========================================================= */

.pain-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pain-card,
.step-card,
.offer-card,
.example-card,
.solution-card,
.dashboard-mockup,
.needed-card,
details {
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.86);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.pain-card {
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.icon-bubble {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    background: linear-gradient(135deg, rgba(0, 184, 169, 0.13), rgba(76, 29, 149, 0.10));
    font-size: 1.4rem;
}

.pain-card h3 {
    margin: 18px 0 8px;
    font-size: 1.22rem;
    line-height: 1.2;
}

.pain-card p {
    margin: 0;
    color: var(--muted);
}

/* =========================================================
   SOLUTION
========================================================= */

.solution-grid,
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 38px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.benefit-list div {
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
}

.benefit-list strong {
    display: block;
    font-size: 1rem;
}

.benefit-list span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 4px;
}

.solution-card {
    padding: 26px;
}

.solution-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--dark), var(--violet));
    color: #fff;
    margin-bottom: 18px;
}

.solution-card-header span {
    color: rgba(255, 255, 255, 0.72);
}

.mini-product {
    display: grid;
    grid-template-columns: 52px 1fr 26px;
    gap: 14px;
    align-items: center;
    padding: 15px;
    background: var(--soft);
    border-radius: 18px;
    margin-top: 12px;
}

.product-img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--teal), #d1fae5);
}

.product-img.second {
    background: linear-gradient(135deg, var(--orange), #fed7aa);
}

.product-img.third {
    background: linear-gradient(135deg, var(--violet), #ddd6fe);
}

.mini-product strong,
.mini-product small {
    display: block;
}

.mini-product small {
    color: var(--muted);
}

.mini-product b {
    color: var(--teal-dark);
}

/* =========================================================
   EXAMPLES
========================================================= */

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

.example-card {
    padding: 20px;
    display: grid;
    grid-template-columns: 0.92fr 1fr;
    align-items: center;
    gap: 22px;
}

.phone-frame {
    border-radius: 34px;
    padding: 10px;
    background: #111827;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
}

.phone-frame img {
    border-radius: 25px;
    height: 460px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.example-info span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0, 184, 169, 0.1);
    color: var(--teal-dark);
    font-size: 0.82rem;
    font-weight: 950;
}

.example-info h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    margin: 16px 0 8px;
}

.example-info p {
    color: var(--muted);
}

/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-section {
    background: linear-gradient(135deg, #0f172a, #24134f);
    color: #fff;
}

.dashboard-section .mini-title {
    background: rgba(255, 255, 255, 0.1);
    color: #a7f3d0;
}

.dashboard-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.dashboard-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.dashboard-points span {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    font-weight: 750;
}

.dashboard-mockup {
    background: #fff;
    color: var(--dark);
    padding: 22px;
}

.mockup-top {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-top span {
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background: #cbd5e1;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-stats div {
    padding: 16px;
    border-radius: 18px;
    background: var(--soft);
}

.mockup-stats small {
    color: var(--muted);
    display: block;
}

.mockup-stats strong {
    font-size: 1.8rem;
}

.mockup-list {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.mockup-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
}

.mockup-list b {
    color: var(--teal-dark);
}

/* =========================================================
   OFFERS
========================================================= */

.offers-section {
    background: #f8fafc;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
    gap: 22px;
}

.offer-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
}

.offer-card.featured {
    border: 2px solid rgba(255, 122, 26, 0.55);
    transform: scale(1.03);
    background:
        radial-gradient(circle at top right, rgba(255, 122, 26, 0.12), transparent 18rem),
        #fff;
}

.recommended-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 950;
    font-size: 0.78rem;
}

.offer-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(76, 29, 149, 0.08);
    color: var(--violet);
    font-weight: 950;
    font-size: 0.8rem;
}

.offer-card.featured .offer-badge {
    background: rgba(255, 122, 26, 0.12);
    color: var(--orange-dark);
}

.offer-card h3 {
    margin: 18px 0 8px;
    font-size: 1.65rem;
}

.offer-card p {
    color: var(--muted);
}

.price-box {
    margin: 24px 0;
}

.old-price {
    display: block;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 850;
}

.price-box strong {
    display: block;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 12px;
}

.offer-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334155;
}

.offer-card li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 22px;
    border-radius: 999px;
    background: rgba(0, 184, 169, 0.12);
    color: var(--teal-dark);
    font-weight: 950;
    font-size: 0.82rem;
    margin-top: 1px;
}

.offer-card .btn {
    width: 100%;
}

.offer-note {
    display: block;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
}

.guarantee-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 30px auto 0;
}

.guarantee-row div {
    padding: 15px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    text-align: center;
    font-weight: 850;
}

/* =========================================================
   WHATSAPP ORDER SECTION
========================================================= */

.whatsapp-order-section {
    background:
        radial-gradient(circle at top left, rgba(0, 184, 169, 0.10), transparent 24rem),
        #ffffff;
}

.whatsapp-order-card {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: center;
    padding: 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(37, 211, 102, 0.16), transparent 16rem),
        linear-gradient(135deg, #0f172a, #14532d);
    color: #fff;
    box-shadow: var(--shadow);
}

.whatsapp-order-card h2 {
    color: #fff;
}

.whatsapp-order-card p {
    color: rgba(255, 255, 255, 0.74);
    max-width: 720px;
}

.whatsapp-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.whatsapp-steps span {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 850;
}

.whatsapp-box {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.whatsapp-box strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
}

.whatsapp-box span {
    display: block;
    margin: 10px 0 20px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 850;
}

.whatsapp-box .btn {
    width: 100%;
}

/* =========================================================
   PROCESS
========================================================= */

.process-grid {
    grid-template-columns: repeat(3, 1fr);
}

.step-card {
    padding: 28px;
    text-align: center;
}

.step-card span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--teal), var(--violet));
    color: #fff;
    font-weight: 950;
}

.step-card h3 {
    margin: 0 0 8px;
    line-height: 1.18;
}

.step-card p {
    margin: 0;
    color: var(--muted);
}

/* =========================================================
   NEEDED
========================================================= */

.needed-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: center;
    padding: 36px;
}

.needed-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.needed-list span {
    padding: 14px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    font-weight: 800;
}

.needed-list span::before {
    content: "✓ ";
    color: var(--teal-dark);
}

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

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

details {
    padding: 20px 22px;
}

summary {
    cursor: pointer;
    font-weight: 950;
    font-size: 1.06rem;
}

details p {
    color: var(--muted);
    margin-bottom: 0;
}

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

.final-card {
    text-align: center;
    padding: 48px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 26, 0.24), transparent 18rem),
        linear-gradient(135deg, var(--dark), var(--violet));
    color: #fff;
    box-shadow: var(--shadow);
}

.final-card p {
    color: rgba(255, 255, 255, 0.76);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer {
    padding: 32px 0 90px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-inner a {
    margin-left: 16px;
    color: var(--dark);
    font-weight: 800;
}

/* =========================================================
   ANIMATION
========================================================= */

.section-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.section-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   CHECK LIST
========================================================= */

.clean-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 13px;
}

.clean-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
    font-weight: 750;
}

.clean-check-list li::before {
    content: "✓";
    width: 23px;
    height: 23px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 23px;
    border-radius: 99px;
    background: rgba(0, 184, 169, 0.14);
    color: var(--teal-dark);
    font-weight: 950;
    margin-top: 1px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 920px) {
    .nav-links,
    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 44px;
    }

    .hero-grid,
    .solution-grid,
    .dashboard-grid,
    .needed-card,
    .whatsapp-order-card {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .hero-visual {
        min-height: 520px;
    }

    .phone-card img {
        height: 490px;
    }

    .card-top {
        top: 36px;
        right: 4px;
    }

    .card-bottom {
        bottom: 26px;
        left: 4px;
    }

    .pain-grid,
    .offers-grid,
    .process-grid,
    .examples-grid,
    .guarantee-row {
        grid-template-columns: 1fr;
    }

    .offer-card.featured {
        transform: none;
    }

    .example-card {
        grid-template-columns: 1fr;
    }

    .phone-frame img {
        height: 520px;
    }

    .dashboard-points,
    .benefit-list,
    .needed-list,
    .whatsapp-steps {
        grid-template-columns: 1fr;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 80;
        display: block;
    }

    .mobile-sticky-cta a {
        display: flex;
        min-height: 56px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--orange), var(--orange-dark));
        color: #fff;
        font-weight: 950;
        box-shadow: 0 18px 38px rgba(255, 122, 26, 0.42);
        text-align: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1120px);
    }

    .header-inner {
        min-height: 68px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-row span {
        width: 100%;
    }

    .hero-visual {
        min-height: 470px;
    }

    .phone-card {
        width: min(315px, 88vw);
        border-radius: 36px;
    }

    .phone-card img {
        height: 430px;
        border-radius: 26px;
    }

    .floating-card {
        width: 185px;
        padding: 13px;
    }

    .card-top {
        right: -4px;
    }

    .card-bottom {
        left: -4px;
    }

    .pain-section,
    .solution-section,
    .examples-section,
    .dashboard-section,
    .offers-section,
    .process-section,
    .needed-section,
    .faq-section,
    .final-cta,
    .whatsapp-order-section {
        padding: 52px 0;
    }

    .pain-card,
    .offer-card,
    .step-card,
    .needed-card,
    .final-card,
    .whatsapp-order-card {
        padding: 22px;
        border-radius: 24px;
    }

    .phone-frame img {
        height: 455px;
    }

    .mockup-stats {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-inner a {
        margin: 0 14px 0 0;
    }
}
/* =========================================================
   PROSITE - PATCH MOBILE FINAL
   A COLLER TOUT EN BAS DE style.css
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    -webkit-text-size-adjust: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    max-width: 1120px;
}

/* Corrige le logo trop gros */
.logo strong {
    font-size: 1.02rem !important;
    line-height: 1.1 !important;
}

.logo small {
    font-size: 0.76rem !important;
    line-height: 1.2 !important;
}

.logo-mark {
    flex: 0 0 43px;
}

/* Images cassées ou trop grandes */
img {
    max-width: 100%;
    height: auto;
}

/* =========================================================
   TABLETTE / MOBILE
========================================================= */

@media (max-width: 920px) {

    .nav-links,
    .header-cta {
        display: none !important;
    }

    .header-inner {
        min-height: 68px !important;
    }

    .hero-grid,
    .solution-grid,
    .dashboard-grid,
    .examples-grid,
    .offers-grid,
    .process-grid,
    .pain-grid,
    .needed-card,
    .whatsapp-order-card,
    .guarantee-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .benefit-list,
    .dashboard-points,
    .needed-list,
    .whatsapp-steps,
    .mockup-stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .container {
        width: calc(100% - 24px) !important;
    }

    .hero {
        padding: 38px 0 52px !important;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 11vw, 4rem) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.06em !important;
    }

    .hero-text {
        font-size: 1.02rem !important;
    }

    .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .hero-actions .btn {
        width: 100% !important;
    }

    .trust-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .trust-row span {
        width: 100% !important;
    }

    .hero-visual {
        min-height: auto !important;
        padding: 10px 0 0 !important;
    }

    .phone-card {
        width: min(330px, 92vw) !important;
        transform: none !important;
        margin: 0 auto !important;
    }

    .phone-card img {
        height: auto !important;
        max-height: 520px !important;
        object-fit: cover !important;
        object-position: top !important;
    }

    .floating-card {
        position: static !important;
        width: 100% !important;
        margin-top: 12px !important;
    }

    .example-card {
        grid-template-columns: 1fr !important;
        padding: 18px !important;
    }

    .phone-frame img {
        height: auto !important;
        max-height: 560px !important;
        object-fit: cover !important;
        object-position: top !important;
    }

    .pain-section,
    .solution-section,
    .examples-section,
    .dashboard-section,
    .offers-section,
    .process-section,
    .needed-section,
    .faq-section,
    .final-cta,
    .whatsapp-order-section {
        padding: 52px 0 !important;
    }

    .offer-card.featured {
        transform: none !important;
    }

    .needed-list span,
    .dashboard-points span,
    .whatsapp-steps span {
        display: block !important;
    }

    .final-card,
    .needed-card,
    .whatsapp-order-card {
        padding: 24px !important;
        border-radius: 26px !important;
    }

    .footer-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .footer-inner a {
        margin-left: 0 !important;
        margin-right: 14px !important;
    }

    .mobile-sticky-cta {
        position: fixed !important;
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        z-index: 999 !important;
        display: block !important;
    }

    .mobile-sticky-cta a {
        display: flex !important;
        min-height: 56px !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 999px !important;
        background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
        color: #fff !important;
        font-weight: 950 !important;
        text-align: center !important;
        box-shadow: 0 18px 38px rgba(255, 122, 26, 0.42) !important;
    }
}

/* =========================================================
   PETIT MOBILE
========================================================= */

@media (max-width: 560px) {

    .container {
        width: calc(100% - 22px) !important;
    }

    .logo-mark {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
        border-radius: 14px !important;
    }

    .logo strong {
        font-size: 0.98rem !important;
    }

    .logo small {
        font-size: 0.72rem !important;
    }

    .section-heading h2,
    .solution-grid h2,
    .dashboard-copy h2,
    .needed-card h2,
    .final-card h2,
    .whatsapp-order-card h2 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.05em !important;
    }

    .pain-card,
    .offer-card,
    .step-card,
    .solution-card,
    .dashboard-mockup,
    .example-card {
        padding: 22px !important;
        border-radius: 24px !important;
    }

    .price-box strong {
        font-size: 2.4rem !important;
    }

    .btn {
        width: 100% !important;
    }

    .footer {
        padding-bottom: 96px !important;
    }
}