/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img, svg, video, table {
    max-width: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    color: #191919;
    background: #fff;
    padding-top: 58px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img, svg {
    display: block;
}

ul, ol {
    list-style: none;
}

/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
    --bg: #fff;
    --bg-subtle: #f1f3f6;
    --border: #e9e9e7;
    --border-strong: #d4d4d2;
    --text: #191919;
    --text-2: #6b6b6b;
    --text-3: #a3a3a3;
    --accent: #007fff;
    --accent-bg: rgba(0, 127, 255, 0.07);
    --accent-hover: #0066cc;
    --green: #16a34a;
    --amber: #d97706;
    --card-radius: 14px;
    --trans: 140ms ease;
    --font-mono: 'DM Mono', monospace;
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ═══════════════════════════════════════
   REVEAL (scroll animations)
═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #3399ff;
    transition: background var(--trans);
    white-space: nowrap;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-lg {
    font-size: 16px;
    padding: 14px 32px;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: none;
}

.navbar--dark {
    background: rgba(255, 255, 255, 0.95);
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    padding: 0 28px;
}

.navbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 58px;
}

.navbar__brand {
    justify-self: start;
}

.navbar__links {
    justify-self: center;
}

.navbar__actions {
    justify-self: end;
    margin-left: 0;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-decoration: none;
}

.navbar__logo {
    height: 36px;
    width: auto;
    display: block;
}

.navbar__name {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.3px;
}

.navbar__con {
    color: #111111;
}

.navbar__flua {
    color: #007FFF;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.navbar__links a {
    padding: 5px 11px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    transition: background var(--trans), color var(--trans);
    text-decoration: none;
}

.navbar__links a:hover {
    background: var(--bg-subtle);
    color: var(--text);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
}

/* ─── Navbar CTA button ─── */
.lp-nav-btn {
    display: inline-flex;
    align-items: center;
    background: #007FFF;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    border: 2px solid #3399ff;
    transition: background 140ms ease;
    white-space: nowrap;
}

.lp-nav-btn:hover {
    background: #0066cc;
}

/* ─── Hamburger button ─── */
.navbar__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background .15s;
}

.navbar__burger:hover {
    background: var(--bg-subtle);
}

.navbar__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
    transform-origin: center;
}

.navbar__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile drawer ─── */
@keyframes drawer-item-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar__drawer {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    transition: transform .15s ease, opacity .12s ease;
}

.navbar__drawer.is-open {
    transform: translateY(0);
    opacity: 1;
}

.navbar__drawer-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar__drawer-links a {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: background .15s;
    opacity: 0;
}

.navbar__drawer.is-open .navbar__drawer-links a {
    animation: drawer-item-in .12s ease forwards;
}

.navbar__drawer.is-open .navbar__drawer-links a:nth-child(1) {
    animation-delay: .02s;
}

.navbar__drawer.is-open .navbar__drawer-links a:nth-child(2) {
    animation-delay: .04s;
}

.navbar__drawer.is-open .navbar__drawer-links a:nth-child(3) {
    animation-delay: .06s;
}

.navbar__drawer.is-open .navbar__drawer-links a:nth-child(4) {
    animation-delay: .08s;
}

.navbar__drawer.is-open .navbar__drawer-links a:nth-child(5) {
    animation-delay: .10s;
}

.navbar__drawer-links a:hover {
    background: var(--bg-subtle);
}

.navbar__drawer-cta {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    opacity: 0;
}

.navbar__drawer.is-open .navbar__drawer-cta {
    animation: drawer-item-in .12s ease .12s forwards;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    padding: 120px 0 0;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* SVG flux lines */
.hd-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hd-path {
    fill: none;
    stroke-width: 1.4;
    stroke-dasharray: 5 11;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    opacity: 0.4;
}

.hd-path--1 {
    stroke: #66B3FF;
    animation: hd-flow 5.5s linear infinite;
}

.hd-path--2 {
    stroke: #007FFF;
    animation: hd-flow 6.5s linear infinite 0.6s;
}

.hd-path--3 {
    stroke: #0051A8;
    animation: hd-flow 6s linear infinite 1.2s;
}

.hd-path--4 {
    stroke: #66B3FF;
    animation: hd-flow 7s linear infinite 1.8s;
}

.hd-path--5 {
    stroke: #007FFF;
    animation: hd-flow 5.8s linear infinite 0.3s;
}

.hd-path--6 {
    stroke: #0051A8;
    animation: hd-flow 6.8s linear infinite 0.9s;
}

.hd-path--7 {
    stroke: #66B3FF;
    animation: hd-flow 6.2s linear infinite 1.5s;
}

.hd-path--8 {
    stroke: #007FFF;
    animation: hd-flow 7.2s linear infinite 2.1s;
}

@keyframes hd-flow {
    to {
        stroke-dashoffset: -36;
    }
}

.hd-particle {
    filter: drop-shadow(0 0 4px rgba(0, 127, 255, .85));
}

.hd-particle--1 {
    fill: #66B3FF;
}

.hd-particle--2 {
    fill: #007FFF;
}

.hd-particle--3 {
    fill: #0051A8;
}

.hd-particle--4 {
    fill: #66B3FF;
}

.hd-particle--5 {
    fill: #007FFF;
}

.hd-particle--6 {
    fill: #0051A8;
}

.hd-particle--7 {
    fill: #66B3FF;
}

.hd-particle--8 {
    fill: #007FFF;
}

@media (prefers-reduced-motion: reduce) {
    .hd-path {
        animation: none;
    }

    .hd-particle {
        display: none;
    }
}

@media (max-width: 1300px) {
    .hero__deco {
        display: none;
    }
}

.hero__center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 0;
}

.hero__title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #0f172a;
    margin: 0 auto 32px;
    width: fit-content;
}

.hero__accent {
    color: #007fff;
    display: block;
}

.hero__sub {
    font-size: 16px;
    color: #475569;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero__cta-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 22px;
}

.hero__pills {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    padding: 28px 0 96px;
}

.hero__pills li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Browser mockup */
.hero__mockup {
    max-width: 100%;
    margin: 0 auto;
    transform: perspective(1400px) rotateX(8deg) scale(0.98);
    transform-origin: center bottom;
}

.hero__mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 6px solid rgba(0, 127, 255, 0.18);
    box-shadow: 0 0 32px 8px rgba(0, 127, 255, 0.15), 0 8px 40px rgba(0, 80, 200, 0.09);
}

/* ═══════════════════════════════════════
   SECTIONS — shared
═══════════════════════════════════════ */
.lp-sec {
    padding: 96px 0;
    background: #fff;
}

.lp-sec--grey {
    background: #f8f9fb;
}

.lp-hdr {
    text-align: center;
    margin-bottom: 64px;
}

.lp-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #007FFF;
    border: 1.5px solid rgba(0, 127, 255, 0.45);
    border-radius: 99px;
    padding: 4px 16px;
    margin-bottom: 20px;
}

.lp-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    line-height: 1.1;
    margin-bottom: 16px;
}

.lp-sub {
    font-size: 15px;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ═══════════════════════════════════════
   PROBLÈME — comparison cards
═══════════════════════════════════════ */
.compare-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto repeat(5, auto);
    column-gap: 0;
    row-gap: 0;
}

.compare-card {
    display: grid;
    grid-row: 1 / -1;
    grid-template-rows: subgrid;
    border-radius: 0;
    padding: 40px 36px;
}

.compare-card--before {
    background: #f5f5f7;
    border-radius: 20px 0 0 20px;
    position: relative;
    z-index: 0;
}

.compare-card--after {
    background: #fff;
    border: 2px solid #007FFF;
    box-shadow: 0 0 0 5px rgba(0, 127, 255, 0.07), -8px 0 32px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-left: -32px;
    margin-top: -12px;
    margin-bottom: -12px;
    padding: 44px 40px;
}

.compare-card-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 32px;
}

.compare-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.compare-list {
    display: contents;
}

.compare-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.45;
    padding: 8px 0;
}

.compare-card--before .compare-list li {
    color: #6b7280;
}

.compare-icon--x {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compare-icon--check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #007FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   BÉNÉFICES — bento 2×2
═══════════════════════════════════════ */
.feat-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feat-bento-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.feat-bento-visual {
    height: 220px;
    background: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    overflow: hidden;
}

/* Feature visual widgets */
.fv-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.fv-widget-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.fv-widget-title {
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.fv-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.fv-dot--green {
    background: #16a34a;
}

.fv-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
}

.fv-item:last-child {
    border-bottom: none;
}

.fv-av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fv-nm {
    font-size: 11.5px;
    font-weight: 600;
    color: #111;
    flex: 1;
}

.fv-file {
    font-size: 10.5px;
    color: #9ca3af;
}

.fv-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 99px;
    flex-shrink: 0;
}

.fv-tag--ok {
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
}

.fv-tag--warn {
    background: rgba(245, 158, 11, .1);
    color: #d97706;
}

.fv-tag--blue {
    background: rgba(0, 127, 255, .1);
    color: #007FFF;
}

/* Card 2 — Drive */
.fv-drive-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.fv-doc-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fv-doc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    color: #6366f1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.fv-arrow {
    font-size: 20px;
    color: #007FFF;
    font-weight: 300;
}

.fv-drive-target {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fv-drive-label {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
}

.fv-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 10.5px;
    color: #15803d;
    font-weight: 500;
}

/* Card 4 — Log */
.fv-log-hdr {
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.fv-log-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

.fv-log-item:last-child {
    border-bottom: none;
}

.fv-log-time {
    font-size: 10px;
    color: #9ca3af;
    font-family: 'DM Mono', monospace;
    flex-shrink: 0;
    width: 34px;
}

.fv-log-text {
    font-size: 11px;
    color: #374151;
    flex: 1;
}

/* Steps visual */
.fv-input {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    padding: 6px 10px;
    font-size: 11px;
    color: #374151;
    width: 100%;
    margin-bottom: 8px;
}

.fv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.fv-chip {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 99px;
}

.fv-chip--ok {
    background: rgba(0, 127, 255, .1);
    color: #007FFF;
}

.fv-chip--add {
    background: #f3f4f6;
    color: #9ca3af;
    border: 1px dashed #d1d5db;
}

.fv-btn-full {
    width: 100%;
    background: #007FFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.fv-path {
    font-size: 10px;
    font-family: 'DM Mono', monospace;
    color: #6366f1;
    background: rgba(99, 102, 241, .08);
    border-radius: 6px;
    padding: 4px 8px;
    margin-bottom: 6px;
}

.fv-ocr-row {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 11px;
}

.fv-ocr-row:last-child {
    border-bottom: none;
}

.fv-progress-bar {
    background: #e5e7eb;
    border-radius: 99px;
    height: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.fv-progress-fill {
    background: #007FFF;
    height: 100%;
    border-radius: 99px;
}

.feat-bento-body {
    padding: 28px 32px 36px;
}

.feat-bento-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.feat-bento-desc {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
}

/* ═══════════════════════════════════════
   COMMENT ÇA MARCHE — 3 colonnes
═══════════════════════════════════════ */
.steps-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.steps-bento-col {
    padding: 40px 36px 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.steps-bento-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.steps-bento-desc {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 32px;
}

.steps-bento-visual {
    height: 200px;
    background: #f0f5ff;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    overflow: hidden;
}

/* ═══════════════════════════════════════
   TARIFS
═══════════════════════════════════════ */
.pricing-toggle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.pricing-toggle-hint {
    width: 100%;
    text-align: center;
    margin: 4px 0 0;
}

.pricing-toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #9ca3af;
    transition: color .2s;
}

.pricing-toggle-label--active {
    color: #0a0a0a;
}

.pricing-toggle-save {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
    border-radius: 20px;
    padding: 4px 12px;
    transition: background .2s, color .2s;
}

.pricing-toggle-save--muted {
    background: rgba(0, 0, 0, .06);
    color: #9ca3af;
}

.pricing-toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    border-radius: 999px;
    background: #007FFF;
    border: none;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}

.pricing-toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    transition: transform .2s;
}

.pricing-toggle-switch[aria-checked="true"] .pricing-toggle-knob {
    transform: translateX(26px);
}

.pricing2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing2-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
}

.pricing2-card--featured {
    border: 2px solid #007FFF;
    box-shadow: 0 0 0 5px rgba(0, 127, 255, 0.07);
}

.pricing2-slider {
    width: 100%;
}

.pricing2-dots {
    display: none;
}

.pricing2-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #007FFF;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 99px;
    white-space: nowrap;
}

.pricing2-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 4px;
}

.pricing2-plan-sub {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 24px;
}

.pricing2-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.pricing2-price {
    font-size: 44px;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.03em;
}

.pricing2-period {
    font-size: 14px;
    color: #9ca3af;
}

.pricing2-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: background 140ms ease, color 140ms ease;
}

.pricing2-btn--primary {
    background: #007FFF;
    color: #fff;
    border: 2px solid #3399ff;
}

.pricing2-btn--primary:hover {
    background: #0066cc;
}

.pricing2-btn--outline {
    background: transparent;
    color: #007FFF;
    border: 2px solid #3399ff;
}

.pricing2-btn--outline:hover {
    background: rgba(0, 127, 255, 0.06);
}

.pricing2-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 28px 0;
}

.pricing2-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing2-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.pricing2-list svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FAQ — onglets
═══════════════════════════════════════ */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.faq-tab {
    padding: 7px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
    white-space: nowrap;
    font-family: inherit;
}

.faq-tab:hover {
    color: #374151;
    background: #e5e7eb;
}

.faq-tab--active {
    color: #007FFF;
    background: rgba(0, 127, 255, 0.07);
    border-color: rgba(0, 127, 255, 0.3);
}

.faq-panel {
    display: none;
}

.faq-panel--active {
    display: block;
}

/* ═══════════════════════════════════════
   FAQ — accordéon
═══════════════════════════════════════ */
.faq2-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq2-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    padding: 24px 0 4px;
}

.faq2-category:first-child {
    padding-top: 0;
}

.faq2-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.faq2-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
    text-align: left;
    gap: 16px;
}

.faq2-icon {
    font-size: 22px;
    font-weight: 300;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 200ms ease;
    line-height: 1;
}

.faq2-item--open {
    border: 2px solid #007FFF;
    box-shadow: 0 0 0 5px rgba(0, 127, 255, 0.07);
}

.faq2-item--open .faq2-icon {
    transform: rotate(45deg);
    color: #007FFF;
}

.faq2-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 28px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.65;
    transition: max-height 320ms ease, opacity 220ms ease, padding 320ms ease;
}

.faq2-item--open .faq2-a {
    max-height: 300px;
    opacity: 1;
    padding: 0 28px 22px;
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.lp-cta-sec {
    background: #fff;
    padding: 96px 0 192px;
}

.lp-cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    pointer-events: none;
    z-index: 0;
}

.lp-cta-inner {
    text-align: center;
    background: #fff;
    border: 6px solid rgba(0, 127, 255, 0.18);
    box-shadow: 0 0 32px 8px rgba(0, 127, 255, 0.15), 0 8px 40px rgba(0, 80, 200, 0.09);
    border-radius: 24px;
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

.lp-cta-inner > *:not(.lp-cta-wave) {
    position: relative;
    z-index: 1;
}

.lp-cta-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.lp-cta-sub {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.65;
}

.lp-cta-btn {
    display: inline-block;
    background: #007FFF;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 10px;
    border: 2px solid #3399ff;
    transition: background 140ms ease;
}

.lp-cta-btn:hover {
    background: #0066cc;
}

.lp-cta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.lp-cta-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 99px;
    padding: 5px 12px;
}

.lp-cta-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    background: #fff;
}

.footer__inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    padding-bottom: 52px;
}

.footer__brand {
    flex: 1.4;
}

.footer__tagline {
    font-size: 13.5px;
    color: #6b7280;
    margin-top: 12px;
    line-height: 1.65;
    max-width: 260px;
}

.footer__links {
    display: flex;
    gap: 56px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 6px;
}

.footer__col a {
    font-size: 14px;
    color: #6b7280;
    transition: color 140ms ease;
    text-decoration: none;
}

.footer__col a:hover {
    color: #007FFF;
}

.footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer__logo-img {
    height: 26px;
    width: auto;
    display: block;
}

.footer__logo-name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer__bottom {
    padding: 22px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #9ca3af;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── 1300px : hero deco ── */
@media (max-width: 1300px) {
    .hero__deco {
        display: none;
    }
}

/* ── 900px : mockup hero ── */
@media (max-width: 900px) {
    .hero__mockup {
        transform: none !important;
    }
}

/* ── 860px : tablette ── */
@media (max-width: 860px) {
    .steps-bento {
        grid-template-columns: 1fr;
    }

    .feat-bento {
        grid-template-columns: 1fr;
    }

    .pricing2-slider {
        overflow: hidden;
        padding-top: 22px;
        margin-top: -22px;
        padding-bottom: 6px;
        margin-bottom: -6px;
    }

    .pricing2-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        max-width: none;
        margin-inline: 0;
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
    }

    .pricing2-card {
        flex: 0 0 calc(100% - 52px);
        margin-right: 20px;
    }

    .pricing2-card--featured {
        box-shadow: none;
    }

    .pricing2-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }

    .pricing2-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-strong);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .pricing2-dot--active {
        background: var(--accent);
        transform: scale(1.4);
    }

    .steps-bento-visual {
        border-radius: 12px;
        margin-bottom: 40px;
    }
}

/* ── 768px : mobile/tablette ── */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        padding: 0 20px;
    }

    /* Navbar → burger */
    .navbar__inner {
        grid-template-columns: 1fr auto;
    }

    .navbar__links {
        display: none;
    }

    .navbar__actions {
        display: none;
    }

    .navbar__burger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 48px 0 0;
    }

    .hero__title {
        font-size: clamp(34px, 9vw, 46px);
    }

    .hero__sub {
        font-size: 15px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__cta .btn-primary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 15px;
    }

    .hero__pills {
        gap: 20px;
        padding: 20px 0 60px;
        flex-wrap: wrap;
    }

    .hero__cta-note {
        justify-content: center;
    }

    /* Sections */
    .lp-sec {
        padding: 64px 0;
    }

    .lp-title {
        font-size: 26px;
    }

    /* Problème : stack — reset subgrid */
    .compare-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .compare-card {
        display: flex;
        flex-direction: column;
        grid-row: auto;
    }

    .compare-list {
        display: flex;
        flex-direction: column;
    }

    .compare-card--before {
        border-radius: 20px 20px 0 0;
    }

    .compare-card--after {
        border-radius: 0 0 20px 20px;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        padding: 36px 28px;
        border: none;
        box-shadow: inset 0 0 0 2px #007FFF, 0 4px 16px rgba(0, 127, 255, 0.10);
    }

    /* FAQ */
    .faq-tabs {
        justify-content: center;
    }

    .faq2-q {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq2-a {
        padding: 0 20px;
    }

    .faq2-item--open .faq2-a {
        padding: 0 20px 18px;
    }

    /* CTA final */
    .lp-cta-sec {
        padding: 64px 0 96px;
    }

    .lp-cta-inner {
        padding: 40px 24px;
    }

    .lp-cta-btn {
        width: 100%;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer */
    .footer__inner {
        flex-direction: column;
        gap: 28px;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ── 480px : petit mobile ── */
@media (max-width: 480px) {
    /* Navbar */
    .navbar__logo {
        height: 28px;
    }

    .navbar__name {
        font-size: 18px;
    }

    .navbar__drawer {
        padding: 12px 20px 24px;
    }

    /* Hero */
    .hero {
        padding: 32px 0 0;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__sub {
        font-size: 14px;
    }

    .hero__pills {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 16px 0 48px;
    }

    /* Sections */
    .lp-sec {
        padding: 48px 0;
    }

    .lp-title {
        font-size: 22px;
    }

    .lp-sub {
        font-size: 14px;
    }

    /* Boutons min 48px touch */
    .btn-primary, .btn-lg {
        min-height: 48px;
    }

    .lp-nav-btn {
        min-height: 44px;
    }

    /* Compare */
    .compare-card, .compare-card--after {
        padding: 28px 20px;
    }

    /* Bénéfices */
    .feat-bento-visual {
        height: 180px;
    }

    /* Tarifs */
    .pricing2-card {
        padding: 28px 20px 24px;
    }

    .pricing-toggle {
        gap: 10px;
        margin-bottom: 32px;
    }

    /* FAQ */
    .faq2-q {
        padding: 16px;
    }

    .faq2-a {
        padding: 0 16px;
    }

    .faq2-item--open .faq2-a {
        padding: 0 16px 16px;
    }

    /* CTA */
    .lp-cta-inner {
        padding: 32px 20px;
        border-width: 3px;
    }

    .lp-cta-chips {
        gap: 6px;
    }

    /* Footer */
    .footer__links {
        flex-direction: column;
        gap: 28px;
    }
}
