/* ==========================================================================
   PROJECT151 — PAGE D'ACCUEIL 2026
   --------------------------------------------------------------------------
   Feuille AUTONOME de la page d'accueil (`resources/views/index.blade.php`).
   Elle n'est chargee que par cette page (via @section('styles')), donc elle
   n'alourdit aucune autre vue du site vitrine.

   PRINCIPES
   ---------
   1. Tout est prefixe `.h-` et vit sous le wrapper `.p151-home-2026`. Aucune
      classe du theme Artistic n'est reprise ni surchargee : les deux systemes
      cohabitent sans se marcher dessus (le header et le footer du layout
      restent ceux du theme).
   2. Theme SOMBRE, identite Project151 : gradient #f747f2 -> #a855f7.
   3. Zero image decorative : les fonds, les cadres et les maquettes d'interface
      sont faits en CSS. Les seules images sont les vraies captures du produit
      et les vignettes YouTube.
   4. Aucune dependance JS pour la mise en page (le JS ne fait qu'animer).
      L'accordeon FAQ est en <details>/<summary> natif : il fonctionne meme si
      le JS ne charge pas.

   /!\ Le fond du <body> est defini par le theme (image + var(--dark-color)).
   On le neutralise via `body:has(.p151-home-2026)` : le layout ne permet pas
   d'ajouter une classe au <body>, et sans ca l'image de fond du theme
   transparait derriere le header (qui est en position:absolute au-dessus de
   notre wrapper).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Jetons
   -------------------------------------------------------------------------- */
.p151-home-2026 {
    --h-bg: #0b0b0f;
    --h-bg-alt: #101016;
    --h-surface: #16161d;
    --h-surface-2: #1d1d26;
    --h-border: #26262f;
    --h-border-strong: #383843;
    --h-text: #f4f4f7;
    --h-muted: #9c9cad;
    --h-dim: #70707f;
    --h-pink: #f747f2;
    --h-purple: #a855f7;
    --h-grad: linear-gradient(135deg, #f747f2 0%, #a855f7 100%);
    --h-green: #34d399;
    --h-red: #f87171;
    --h-amber: #fbbf24;
    --h-radius: 16px;
    --h-radius-sm: 10px;

    background: var(--h-bg);
    color: var(--h-text);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    z-index: 1;
}

body:has(.p151-home-2026) {
    background-image: none;
    background-color: #0b0b0f;
}

/* --------------------------------------------------------------------------
   2. Primitives de mise en page
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.p151-home-2026 .h-container--narrow {
    max-width: 880px;
}

.p151-home-2026 .h-section {
    padding: 96px 0;
    position: relative;
}

.p151-home-2026 .h-section--alt {
    background: var(--h-bg-alt);
    border-top: 1px solid var(--h-border);
    border-bottom: 1px solid var(--h-border);
}

.p151-home-2026 .h-section--tight {
    padding: 64px 0;
}

.p151-home-2026 .h-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.p151-home-2026 .h-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--h-muted);
    margin-bottom: 20px;
}

.p151-home-2026 .h-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--h-grad);
    flex: 0 0 auto;
}

.p151-home-2026 .h-eyebrow--danger { color: #f9a8a8; }
.p151-home-2026 .h-eyebrow--danger::before { background: var(--h-red); }
.p151-home-2026 .h-eyebrow--ok { color: #86efac; }
.p151-home-2026 .h-eyebrow--ok::before { background: var(--h-green); }

.p151-home-2026 .h-h2 {
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--h-text);
    margin: 0 0 18px;
}

.p151-home-2026 .h-h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--h-text);
    margin: 0 0 10px;
}

.p151-home-2026 .h-grad-text {
    background: var(--h-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.p151-home-2026 .h-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--h-muted);
    margin: 0;
}

.p151-home-2026 .h-sub--small {
    font-size: 15px;
}

/* Boutons ---------------------------------------------------------------- */
.p151-home-2026 .h-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}

.p151-home-2026 .h-btn--primary {
    background: var(--h-grad);
    color: #fff;
    box-shadow: 0 10px 30px -12px rgba(247, 71, 242, 0.65);
}

.p151-home-2026 .h-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px -12px rgba(247, 71, 242, 0.8);
}

.p151-home-2026 .h-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--h-border-strong);
    color: var(--h-text);
}

.p151-home-2026 .h-btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: #4a4a58;
    transform: translateY(-2px);
}

.p151-home-2026 .h-btn__arrow {
    transition: transform 0.18s ease;
}

.p151-home-2026 .h-btn:hover .h-btn__arrow {
    transform: translateX(4px);
}

.p151-home-2026 .h-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.p151-home-2026 .h-btn-row--spaced { margin-top: 34px; }

.p151-home-2026 .h-center { text-align: center; }

/* Reveal au scroll ------------------------------------------------------- */
.p151-home-2026 .h-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.p151-home-2026 .h-reveal.is-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .p151-home-2026 .h-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --------------------------------------------------------------------------
   3. Hero
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-hero {
    position: relative;
    padding: 168px 0 88px;
    overflow: hidden;
    text-align: center;
}

/* Halo + quadrillage : remplacent la video de fond de l'ancienne accueil
   (5 Mo de MP4 decodes en boucle sur chaque visite). Cout ici : 0 requete. */
.p151-home-2026 .h-hero::before {
    content: '';
    position: absolute;
    inset: -20% 0 auto;
    height: 780px;
    background:
        radial-gradient(60% 55% at 50% 0%, rgba(168, 85, 247, 0.22) 0%, rgba(11, 11, 15, 0) 70%),
        radial-gradient(40% 40% at 78% 12%, rgba(247, 71, 242, 0.16) 0%, rgba(11, 11, 15, 0) 70%);
    pointer-events: none;
}

.p151-home-2026 .h-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 62px 62px;
    -webkit-mask-image: radial-gradient(70% 55% at 50% 25%, #000 0%, transparent 100%);
    mask-image: radial-gradient(70% 55% at 50% 25%, #000 0%, transparent 100%);
    pointer-events: none;
}

.p151-home-2026 .h-hero > .h-container {
    position: relative;
    z-index: 2;
}

.p151-home-2026 .h-typed {
    font-size: 15px;
    color: var(--h-muted);
    margin: 0 0 22px;
    min-height: 24px;
}

.p151-home-2026 .h-typed b {
    color: var(--h-text);
    font-weight: 700;
    border-bottom: 2px solid var(--h-pink);
    padding-bottom: 1px;
}

.p151-home-2026 .h-typed .h-caret {
    display: inline-block;
    width: 2px;
    height: 15px;
    background: var(--h-pink);
    margin-left: 2px;
    vertical-align: -2px;
    animation: h-blink 1s steps(1) infinite;
}

@keyframes h-blink { 50% { opacity: 0; } }

.p151-home-2026 .h-hero-title {
    font-size: clamp(36px, 6vw, 70px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 auto 26px;
    max-width: 15ch;
}

.p151-home-2026 .h-hero-lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--h-muted);
    max-width: 620px;
    margin: 0 auto 34px;
}

.p151-home-2026 .h-hero-micro {
    font-size: 13px;
    color: var(--h-dim);
    margin: 18px 0 0;
}

/* Ligne « fonctionne sur » ------------------------------------------------ */
.p151-home-2026 .h-platforms {
    margin: 52px 0 0;
}

.p151-home-2026 .h-platforms__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--h-dim);
    margin: 0 0 18px;
}

.p151-home-2026 .h-platforms__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p151-home-2026 .h-platforms__list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--h-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--h-muted);
    background: rgba(255, 255, 255, 0.02);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.p151-home-2026 .h-platforms__list li:hover {
    color: var(--h-text);
    border-color: var(--h-border-strong);
}

.p151-home-2026 .h-platforms__list svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    opacity: 0.75;
}

/* Bandeau de preuve ------------------------------------------------------ */
.p151-home-2026 .h-hero-proof {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 40px auto 0;
    padding: 14px 8px;
    border: 1px solid var(--h-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.p151-home-2026 .h-hero-proof__item {
    padding: 2px 22px;
    text-align: center;
}

.p151-home-2026 .h-hero-proof__item + .h-hero-proof__item {
    border-left: 1px solid var(--h-border);
}

.p151-home-2026 .h-hero-proof__num {
    display: block;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--h-text);
}

.p151-home-2026 .h-hero-proof__label {
    display: block;
    font-size: 12px;
    color: var(--h-dim);
    margin-top: 3px;
}

/* --------------------------------------------------------------------------
   4. Cadre de capture (fenetre de navigateur)
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-shot {
    border: 1px solid var(--h-border-strong);
    border-radius: var(--h-radius);
    overflow: hidden;
    background: var(--h-surface);
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.p151-home-2026 .h-shot--hero {
    margin-top: 64px;
    position: relative;
}

/* Le bas de la capture du hero se fond dans le fond : on montre le produit
   sans donner l'impression d'une image tronquee. */
.p151-home-2026 .h-shot--hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(11, 11, 15, 0) 0%, var(--h-bg) 92%);
    pointer-events: none;
}

.p151-home-2026 .h-shot__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    height: 40px;
    background: var(--h-surface-2);
    border-bottom: 1px solid var(--h-border);
}

.p151-home-2026 .h-shot__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3d3d49;
    flex: 0 0 auto;
}

.p151-home-2026 .h-shot__url {
    flex: 1;
    margin-left: 8px;
    height: 24px;
    border-radius: 999px;
    background: #101016;
    border: 1px solid var(--h-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--h-dim);
    letter-spacing: 0.02em;
}

.p151-home-2026 .h-shot img {
    display: block;
    width: 100%;
    height: auto;
}

/* --------------------------------------------------------------------------
   5. Probleme / solution
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-switch {
    display: inline-flex;
    padding: 5px;
    gap: 4px;
    border-radius: 999px;
    background: var(--h-surface);
    border: 1px solid var(--h-border);
    margin: 0 auto 40px;
}

.p151-home-2026 .h-switch__btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--h-muted);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.p151-home-2026 .h-switch__btn[aria-selected="true"] {
    color: #fff;
    background: var(--h-grad);
}

.p151-home-2026 .h-compare {
    max-width: 560px;
    margin: 0 auto;
}

.p151-home-2026 .h-pane[hidden] { display: none; }

/* Fausse annonce marketplace (maquette 100 % CSS) ------------------------ */
.p151-home-2026 .h-listing {
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius);
    background: var(--h-surface);
    overflow: hidden;
}

.p151-home-2026 .h-listing__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--h-border);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--h-dim);
}

.p151-home-2026 .h-listing__body {
    display: flex;
    gap: 16px;
    padding: 18px 16px;
}

.p151-home-2026 .h-listing__thumb {
    width: 84px;
    height: 116px;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid var(--h-border-strong);
    /* Le degrade reste EN FOND, derriere l'image : si le visuel TCGdex venait a
       manquer (404), la vignette garde une apparence de carte au lieu d'afficher
       une icone d'image cassee. Meme principe pour .h-scanres__card et
       .h-mrow__card ci-dessous. */
    background:
        radial-gradient(120% 80% at 50% 20%, rgba(247, 71, 242, 0.28), rgba(0, 0, 0, 0) 60%),
        linear-gradient(160deg, #2a2438 0%, #171722 100%);
    overflow: hidden;
}

.p151-home-2026 .h-listing__info { flex: 1; min-width: 0; }

.p151-home-2026 .h-listing__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
}

.p151-home-2026 .h-listing__seller {
    font-size: 12px;
    color: var(--h-dim);
    margin: 0 0 12px;
}

.p151-home-2026 .h-listing__price {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.p151-home-2026 .h-verdict {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid var(--h-border);
    font-size: 14px;
    font-weight: 600;
}

.p151-home-2026 .h-verdict--bad { background: rgba(248, 113, 113, 0.08); color: #fca5a5; }
.p151-home-2026 .h-verdict--good { background: rgba(52, 211, 153, 0.08); color: #6ee7b7; }

.p151-home-2026 .h-verdict__amount {
    font-size: 18px;
    font-weight: 800;
}

/* Encart injecte par l'extension (maquette) ------------------------------ */
.p151-home-2026 .h-badge-ext {
    margin: 14px 16px 0;
    border: 1px solid rgba(168, 85, 247, 0.45);
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.07);
    padding: 12px 14px;
}

.p151-home-2026 .h-badge-ext__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d8b4fe;
    margin: 0 0 10px;
}

.p151-home-2026 .h-badge-ext__title svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.p151-home-2026 .h-quote-rows {
    display: grid;
    gap: 7px;
}

.p151-home-2026 .h-quote-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--h-muted);
}

.p151-home-2026 .h-quote-row b {
    color: var(--h-text);
    font-weight: 700;
}

.p151-home-2026 .h-compare__note {
    text-align: center;
    font-size: 13px;
    color: var(--h-dim);
    margin: 22px 0 0;
}

/* --------------------------------------------------------------------------
   6. Carrousel YouTube
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-yt {
    position: relative;
}

.p151-home-2026 .h-yt-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 24px 24px;
    margin: 0 -24px;
    scrollbar-width: none;
}

.p151-home-2026 .h-yt-track::-webkit-scrollbar { display: none; }

.p151-home-2026 .h-yt-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius);
    background: var(--h-surface);
    overflow: hidden;
    text-align: left;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.p151-home-2026 .h-yt-card:hover {
    transform: translateY(-4px);
    border-color: var(--h-border-strong);
    box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.95);
}

/* Les enfants de la carte sont des <span> (elle est un <button>, donc elle ne
   peut pas contenir de <div>) : il faut leur rendre un rendu bloc. */
.p151-home-2026 .h-yt-card__thumb,
.p151-home-2026 .h-yt-card__body {
    display: block;
}

.p151-home-2026 .h-yt-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.p151-home-2026 .h-yt-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.p151-home-2026 .h-yt-card:hover .h-yt-card__thumb img {
    transform: scale(1.05);
    opacity: 0.85;
}

.p151-home-2026 .h-yt-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.p151-home-2026 .h-yt-card__play span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--h-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.8);
    transition: transform 0.22s ease;
}

.p151-home-2026 .h-yt-card:hover .h-yt-card__play span { transform: scale(1.1); }

.p151-home-2026 .h-yt-card__play svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
    fill: #fff;
}

.p151-home-2026 .h-yt-card__body { padding: 16px 18px 18px; }

.p151-home-2026 .h-yt-card__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d8b4fe;
    background: rgba(168, 85, 247, 0.14);
    border-radius: 5px;
    padding: 4px 8px;
    margin-bottom: 10px;
}

.p151-home-2026 .h-yt-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p151-home-2026 .h-yt-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.p151-home-2026 .h-yt-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--h-border-strong);
    background: var(--h-surface);
    color: var(--h-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.p151-home-2026 .h-yt-nav button:hover {
    color: #fff;
    background: var(--h-surface-2);
    border-color: #4a4a58;
}

.p151-home-2026 .h-yt-nav button svg { width: 17px; height: 17px; }

/* Modale video ----------------------------------------------------------- */
.h-vmodal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 4, 8, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.h-vmodal[hidden] { display: none; }

.h-vmodal__inner {
    width: 100%;
    max-width: 980px;
    position: relative;
}

.h-vmodal__frame {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    border: 1px solid #2c2c36;
}

.h-vmodal__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.h-vmodal__close {
    position: absolute;
    top: -46px;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #3a3a46;
    background: #16161d;
    color: #d5d5e0;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-vmodal__close:hover { background: #22222c; color: #fff; }

/* --------------------------------------------------------------------------
   7. Bento des fonctionnalites
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.p151-home-2026 .h-bento__item {
    grid-column: span 2;
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius);
    background: var(--h-surface);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.p151-home-2026 .h-bento__item:hover {
    border-color: var(--h-border-strong);
    transform: translateY(-3px);
}

.p151-home-2026 .h-bento__item--wide { grid-column: span 4; }
.p151-home-2026 .h-bento__item--half { grid-column: span 3; }

.p151-home-2026 .h-bento__visual {
    flex: 1;
    min-height: 190px;
    padding: 26px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(90% 120% at 50% 0%, rgba(168, 85, 247, 0.08) 0%, rgba(0, 0, 0, 0) 65%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 14px);
    border-bottom: 1px solid var(--h-border);
}

.p151-home-2026 .h-bento__body { padding: 20px 24px 24px; }

.p151-home-2026 .h-bento__body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--h-muted);
    margin: 0;
}

/* Maquettes d'interface reutilisables ------------------------------------ */
.p151-home-2026 .h-mock {
    width: 100%;
    max-width: 340px;
    border: 1px solid var(--h-border-strong);
    border-radius: 12px;
    background: #101016;
    box-shadow: 0 20px 40px -28px rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.p151-home-2026 .h-mock--wide { max-width: 460px; }

.p151-home-2026 .h-mock__head {
    padding: 10px 14px;
    border-bottom: 1px solid var(--h-border);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--h-dim);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.p151-home-2026 .h-mock__body { padding: 14px; }

.p151-home-2026 .h-mrow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 13px;
}

.p151-home-2026 .h-mrow + .h-mrow { border-top: 1px solid var(--h-border); }

.p151-home-2026 .h-mrow__card {
    width: 26px;
    height: 36px;
    border-radius: 4px;
    flex: 0 0 auto;
    background: linear-gradient(160deg, #3b2f55 0%, #1b1b26 100%);
    border: 1px solid #3a3a48;
    overflow: hidden;
}

/* Visuels TCGdex des maquettes. Les cartes Pokemon font un ratio de ~0,72 et
   les trois cadres ci-dessus aussi (26/36, 62/86, 84/116) : `cover` ne rogne
   donc quasiment rien. */
.p151-home-2026 .h-listing__thumb img,
.p151-home-2026 .h-scanres__card img,
.p151-home-2026 .h-mrow__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p151-home-2026 .h-mrow__name { flex: 1; min-width: 0; }
.p151-home-2026 .h-mrow__name b { display: block; font-weight: 700; font-size: 13px; }
.p151-home-2026 .h-mrow__name span { display: block; font-size: 11px; color: var(--h-dim); margin-top: 2px; }

.p151-home-2026 .h-tag-down,
.p151-home-2026 .h-tag-up {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.p151-home-2026 .h-tag-down { background: rgba(248, 113, 113, 0.14); color: #fca5a5; }
.p151-home-2026 .h-tag-up { background: rgba(52, 211, 153, 0.14); color: #6ee7b7; }

.p151-home-2026 .h-spark { display: block; width: 100%; height: 54px; }

/* Maquette « resultat de scan » ----------------------------------------- */
.p151-home-2026 .h-scanres {
    display: flex;
    gap: 14px;
    align-items: center;
}

.p151-home-2026 .h-scanres__price {
    text-align: right;
    flex: 0 0 auto;
}

.p151-home-2026 .h-scanres__card {
    width: 62px;
    height: 86px;
    border-radius: 6px;
    flex: 0 0 auto;
    background:
        radial-gradient(120% 80% at 50% 15%, rgba(247, 71, 242, 0.35), rgba(0, 0, 0, 0) 62%),
        linear-gradient(160deg, #33284a 0%, #15151f 100%);
    border: 1px solid #45354f;
    overflow: hidden;
}

/* `span.h-chip` et non `.h-chip` : sinon la regle `.h-mrow__name span
   { display:block }` definie plus haut l'emporte et la pastille prend
   toute la largeur. */
.p151-home-2026 span.h-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.14);
    color: #6ee7b7;
    margin-top: 8px;
}

/* Doit rester APRES `span.h-chip` : meme specificite (0,2,1), c'est l'ordre
   d'ecriture qui tranche. Place avant, le vert l'emporterait. */
.p151-home-2026 span.h-chip--no {
    background: rgba(248, 113, 113, 0.14);
    color: #fca5a5;
}

/* Maquette « alerte mail sniper » --------------------------------------- */
.p151-home-2026 .h-mail__from {
    font-size: 11px;
    color: var(--h-dim);
    margin: 0 0 6px;
}

.p151-home-2026 .h-mail__subject {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
}

.p151-home-2026 .h-mail__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.p151-home-2026 .h-mail__old {
    font-size: 14px;
    color: var(--h-dim);
    text-decoration: line-through;
}

.p151-home-2026 .h-mail__new {
    font-size: 26px;
    font-weight: 800;
    color: #6ee7b7;
}

.p151-home-2026 .h-mail__cta {
    display: block;
    text-align: center;
    padding: 9px;
    border-radius: 8px;
    background: var(--h-grad);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

/* Maquette « barre d'extension » ---------------------------------------- */
.p151-home-2026 .h-extbar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.p151-home-2026 .h-extbar span {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    background: var(--h-surface-2);
    border: 1px solid var(--h-border-strong);
    color: var(--h-muted);
}

.p151-home-2026 .h-extbar span.is-p151 {
    background: var(--h-grad);
    border-color: transparent;
    color: #fff;
}

/* Maquette « progression de serie » ------------------------------------- */
.p151-home-2026 .h-progress {
    height: 8px;
    border-radius: 999px;
    background: var(--h-surface-2);
    overflow: hidden;
    margin: 10px 0 8px;
}

.p151-home-2026 .h-progress__bar {
    height: 100%;
    border-radius: 999px;
    background: var(--h-grad);
}

/* Largeur de la maquette « serie 151 » (142/165). Une classe plutot qu'un
   style inline : le projet interdit le CSS dans les vues. */
.p151-home-2026 .h-progress__bar--86 { width: 86%; }

.p151-home-2026 .h-dotgrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5px;
    margin-top: 12px;
}

.p151-home-2026 .h-dotgrid i {
    aspect-ratio: 1;
    border-radius: 3px;
    background: var(--h-surface-2);
    border: 1px solid var(--h-border);
}

.p151-home-2026 .h-dotgrid i.is-owned {
    background: var(--h-grad);
    border-color: transparent;
}

/* Maquette « repartition comptable » ------------------------------------ */
.p151-home-2026 .h-splitrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
}

.p151-home-2026 .h-splitrow + .h-splitrow { border-top: 1px solid var(--h-border); }
.p151-home-2026 .h-splitrow b { font-weight: 700; }
.p151-home-2026 .h-splitrow .h-pos { color: #6ee7b7; font-weight: 800; }

/* --------------------------------------------------------------------------
   8. Comment ca marche / etapes
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.p151-home-2026 .h-split--reverse .h-split__media { order: -1; }

.p151-home-2026 .h-split__text .h-h2 { font-size: clamp(28px, 3.4vw, 42px); }

.p151-home-2026 .h-featlist {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 18px;
}

.p151-home-2026 .h-featlist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.p151-home-2026 .h-featlist__ico {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 9px;
    background: rgba(168, 85, 247, 0.13);
    border: 1px solid rgba(168, 85, 247, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8b4fe;
}

.p151-home-2026 .h-featlist__ico svg { width: 17px; height: 17px; }

.p151-home-2026 .h-featlist b {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.p151-home-2026 .h-featlist p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--h-muted);
    margin: 0;
}

/* Etapes 01 / 02 / 03 ---------------------------------------------------- */
.p151-home-2026 .h-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.p151-home-2026 .h-step__no {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--h-dim);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--h-border);
    margin-bottom: 18px;
    position: relative;
}

.p151-home-2026 .h-step__no::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 34px;
    height: 2px;
    background: var(--h-grad);
}

.p151-home-2026 .h-step p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--h-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   9. Tableau comparatif
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-vs-wrap {
    max-width: 760px;
    margin: 0 auto;
    overflow-x: auto;
}

.p151-home-2026 .h-vs {
    width: 100%;
    min-width: 520px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius);
    overflow: hidden;
    background: var(--h-surface);
}

.p151-home-2026 .h-vs th,
.p151-home-2026 .h-vs td {
    padding: 17px 20px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid var(--h-border);
}

.p151-home-2026 .h-vs tr:last-child th,
.p151-home-2026 .h-vs tr:last-child td { border-bottom: 0; }

.p151-home-2026 .h-vs thead th {
    font-size: 13px;
    font-weight: 700;
    color: var(--h-muted);
    background: var(--h-bg-alt);
}

.p151-home-2026 .h-vs tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--h-muted);
}

.p151-home-2026 .h-vs .h-vs__old { color: var(--h-dim); }

.p151-home-2026 .h-vs .h-vs__col {
    background: rgba(168, 85, 247, 0.06);
    color: var(--h-text);
    font-weight: 800;
    border-left: 1px solid var(--h-border);
    border-right: 1px solid var(--h-border);
}

.p151-home-2026 .h-vs thead .h-vs__col {
    color: #fff;
    box-shadow: inset 0 3px 0 0 var(--h-pink);
    background: rgba(168, 85, 247, 0.12);
}

/* --------------------------------------------------------------------------
   10. Calculateur de marge
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-roi {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
    border: 1px solid var(--h-border);
    border-radius: 20px;
    background: var(--h-surface);
    padding: 36px;
}

.p151-home-2026 .h-field + .h-field { margin-top: 22px; }

.p151-home-2026 .h-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--h-dim);
    margin-bottom: 9px;
}

.p151-home-2026 .h-field input[type="range"] {
    width: 100%;
    accent-color: var(--h-pink);
    background: transparent;
}

.p151-home-2026 .h-field__val {
    font-size: 24px;
    font-weight: 800;
    color: var(--h-text);
    margin-bottom: 8px;
}

.p151-home-2026 .h-roi__out {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.p151-home-2026 .h-roi__cell {
    border: 1px solid var(--h-border);
    border-radius: 14px;
    background: var(--h-bg-alt);
    padding: 20px;
}

.p151-home-2026 .h-roi__cell--main {
    grid-column: 1 / -1;
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
}

.p151-home-2026 .h-roi__num {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.1;
}

.p151-home-2026 .h-roi__cell--main .h-roi__num {
    background: var(--h-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p151-home-2026 .h-roi__lbl {
    font-size: 12px;
    color: var(--h-dim);
    margin-top: 6px;
}

.p151-home-2026 .h-roi__disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: var(--h-dim);
    margin: 22px auto 0;
    max-width: 720px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   11. Integrations
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-int {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius);
    overflow: hidden;
    background: var(--h-surface);
    max-width: 860px;
    margin: 0 auto;
}

.p151-home-2026 .h-int__cell {
    padding: 26px 14px;
    text-align: center;
    border-right: 1px solid var(--h-border);
    border-bottom: 1px solid var(--h-border);
    transition: background 0.2s ease;
}

.p151-home-2026 .h-int__cell:hover { background: var(--h-bg-alt); }

.p151-home-2026 .h-int__cell svg {
    width: 26px;
    height: 26px;
    color: var(--h-muted);
    margin-bottom: 10px;
}

.p151-home-2026 .h-int__cell span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--h-muted);
}

.p151-home-2026 .h-int__note {
    text-align: center;
    font-size: 13px;
    color: var(--h-dim);
    margin: 22px 0 0;
}

/* --------------------------------------------------------------------------
   12. Statistiques en direct
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--h-border);
    border-radius: var(--h-radius);
    background: var(--h-surface);
    overflow: hidden;
}

.p151-home-2026 .h-stat {
    padding: 30px 18px;
    text-align: center;
    border-right: 1px solid var(--h-border);
}

.p151-home-2026 .h-stat:last-child { border-right: 0; }

.p151-home-2026 .h-stat__num {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.1;
    background: var(--h-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}

.p151-home-2026 .h-stat__lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--h-dim);
    margin-top: 9px;
}

/* --------------------------------------------------------------------------
   13. Terminal MCP
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-term {
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid var(--h-border-strong);
    border-radius: 14px;
    background: #0a0a0e;
    overflow: hidden;
    box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 1);
}

.p151-home-2026 .h-term__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--h-border);
    background: #101016;
    font-size: 12px;
    color: var(--h-dim);
}

.p151-home-2026 .h-term__bar b { color: var(--h-muted); font-weight: 600; }

.p151-home-2026 .h-term__body {
    padding: 20px 18px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    line-height: 1.55;
}

.p151-home-2026 .h-term__line { display: flex; gap: 9px; }
.p151-home-2026 .h-term__line + .h-term__line { margin-top: 4px; }
.p151-home-2026 .h-term__line--q { color: var(--h-text); font-weight: 600; }
.p151-home-2026 .h-term__line--a { color: #7f7f92; margin-bottom: 14px; }
.p151-home-2026 .h-term__sig { color: var(--h-pink); flex: 0 0 auto; }
.p151-home-2026 .h-term__ok { color: var(--h-green); flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   14. Tarifs
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-pricing {
    display: flex;
    justify-content: center;
}

.p151-home-2026 .h-plan {
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 20px;
    background: var(--h-surface);
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.p151-home-2026 .h-plan::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--h-grad);
}

.p151-home-2026 .h-plan__name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d8b4fe;
    margin: 0 0 14px;
}

.p151-home-2026 .h-plan__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.p151-home-2026 .h-plan__amount { font-size: 48px; font-weight: 800; line-height: 1; }
.p151-home-2026 .h-plan__per { font-size: 15px; color: var(--h-muted); }

.p151-home-2026 .h-plan__yearly {
    font-size: 13px;
    color: var(--h-dim);
    margin: 0 0 24px;
}

.p151-home-2026 .h-plan__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}

.p151-home-2026 .h-plan__list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    color: var(--h-muted);
}

.p151-home-2026 .h-plan__list svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: #6ee7b7;
}

.p151-home-2026 .h-plan .h-btn { width: 100%; }

.p151-home-2026 .h-plan__reassure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    color: var(--h-dim);
}

/* --------------------------------------------------------------------------
   15. FAQ (accordeon natif, sans JS)
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-faq {
    max-width: 780px;
    margin: 0 auto;
    border-top: 1px solid var(--h-border);
}

.p151-home-2026 .h-faq details {
    border-bottom: 1px solid var(--h-border);
}

.p151-home-2026 .h-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 44px 22px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--h-text);
    position: relative;
    transition: color 0.2s ease;
}

.p151-home-2026 .h-faq summary::-webkit-details-marker { display: none; }
.p151-home-2026 .h-faq summary:hover { color: #fff; }

.p151-home-2026 .h-faq summary::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    width: 11px;
    height: 11px;
    margin-top: -7px;
    border-right: 2px solid var(--h-muted);
    border-bottom: 2px solid var(--h-muted);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.p151-home-2026 .h-faq details[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.p151-home-2026 .h-faq__answer {
    padding: 0 44px 24px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--h-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   16. CTA final
   -------------------------------------------------------------------------- */
.p151-home-2026 .h-final {
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 24px;
    padding: 64px 32px;
    background:
        radial-gradient(80% 130% at 50% 0%, rgba(168, 85, 247, 0.16) 0%, rgba(0, 0, 0, 0) 70%),
        var(--h-surface);
}

.p151-home-2026 .h-final .h-h2 { margin-bottom: 14px; }

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .p151-home-2026 .h-bento { grid-template-columns: repeat(4, 1fr); }
    .p151-home-2026 .h-bento__item,
    .p151-home-2026 .h-bento__item--half { grid-column: span 2; }
    .p151-home-2026 .h-bento__item--wide { grid-column: span 4; }

    .p151-home-2026 .h-split { grid-template-columns: 1fr; gap: 40px; }
    .p151-home-2026 .h-split--reverse .h-split__media { order: 0; }

    .p151-home-2026 .h-roi { grid-template-columns: 1fr; padding: 28px; }
    .p151-home-2026 .h-stats { grid-template-columns: repeat(3, 1fr); }
    .p151-home-2026 .h-stat:nth-child(3) { border-right: 0; }
}

@media (max-width: 767px) {
    .p151-home-2026 .h-section { padding: 68px 0; }
    .p151-home-2026 .h-hero { padding: 132px 0 64px; }
    .p151-home-2026 .h-head { margin-bottom: 40px; }

    .p151-home-2026 .h-hero-proof {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 0;
    }

    .p151-home-2026 .h-hero-proof__item {
        padding: 12px 8px;
        border-left: 0 !important;
    }

    .p151-home-2026 .h-hero-proof__item:nth-child(2n) { border-left: 1px solid var(--h-border) !important; }
    .p151-home-2026 .h-hero-proof__item:nth-child(n + 3) { border-top: 1px solid var(--h-border); }

    .p151-home-2026 .h-bento { grid-template-columns: 1fr; gap: 16px; }
    .p151-home-2026 .h-bento__item,
    .p151-home-2026 .h-bento__item--wide,
    .p151-home-2026 .h-bento__item--half { grid-column: span 1; }

    .p151-home-2026 .h-steps { grid-template-columns: 1fr; gap: 28px; }
    .p151-home-2026 .h-int { grid-template-columns: repeat(2, 1fr); }

    .p151-home-2026 .h-stats { grid-template-columns: repeat(2, 1fr); }
    .p151-home-2026 .h-stat { border-right: 1px solid var(--h-border) !important; border-bottom: 1px solid var(--h-border); }
    .p151-home-2026 .h-stat:nth-child(2n) { border-right: 0 !important; }
    .p151-home-2026 .h-stat:last-child { grid-column: 1 / -1; border-right: 0 !important; border-bottom: 0; }

    .p151-home-2026 .h-yt-card { flex: 0 0 82%; }
    .p151-home-2026 .h-roi__out { grid-template-columns: 1fr; }
    .p151-home-2026 .h-plan { padding: 26px; }
    .p151-home-2026 .h-final { padding: 44px 22px; }
    .p151-home-2026 .h-shot--hero { margin-top: 44px; }
    .p151-home-2026 .h-shot__bar { height: 32px; }
    .p151-home-2026 .h-btn { width: 100%; }
    .p151-home-2026 .h-btn-row { flex-direction: column; }
    .h-vmodal { padding: 16px; }
    .h-vmodal__close { top: auto; bottom: -50px; right: 50%; transform: translateX(50%); }
}
