/* ===========================================================
   ===== HOME 2026 — refonte premium, effets 3D, leads ====
   =========================================================== */

/* Floating CTA bottom-right (apparaît au scroll) */
.float-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--c-accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 12px 32px rgba(255, 138, 0, .42), 0 4px 12px rgba(11, 31, 58, .18);
    opacity: 0;
    transform: translateY(20px) scale(.94);
    transition: all .4s var(--easing);
    pointer-events: none;
    backdrop-filter: blur(8px);
}
.float-cta.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.float-cta:hover {
    background: var(--c-accent-strong);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 40px rgba(255, 138, 0, .55), 0 6px 16px rgba(11, 31, 58, .22);
}
.float-cta svg { width: 18px; height: 18px; }

/* ===== HERO IMMERSIF 2026 ===== */
.hero-2026 {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--c-deep);
    color: #fff;
    display: flex;
    align-items: center;
    padding: var(--header-h) 0 80px;
}
.hero-2026::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255, 138, 0, .25), transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 90%, rgba(255, 196, 0, .18), transparent 55%),
        url('../img/storytelling-fabrication.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    z-index: 0;
}
.hero-2026::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 31, 58, .92) 0%, rgba(22, 59, 92, .82) 50%, rgba(11, 31, 58, .65) 100%);
    z-index: 0;
}
.hero-2026 .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-2026-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-2026 .pre-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 26px;
    font-family: 'JetBrains Mono', monospace;
}
.hero-2026 .pre-title .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-yellow);
    box-shadow: 0 0 10px var(--c-yellow);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}
.hero-2026 h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(44px, 6vw, 84px);
    line-height: .98;
    letter-spacing: -.035em;
    color: #fff;
    margin-bottom: 28px;
}
.hero-2026 h1 .stroke {
    -webkit-text-stroke: 2px var(--c-yellow);
    color: transparent;
    font-style: italic;
    font-weight: 500;
}
.hero-2026 h1 .accent {
    background: linear-gradient(90deg, var(--c-accent), var(--c-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 500;
}
.hero-2026 .hero-lead {
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-2026 .hero-lead strong { color: #fff; font-weight: 600; }
.hero-2026 .hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-2026 .btn-mega {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 999px;
    background: var(--c-accent);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 32px rgba(255, 138, 0, .4);
    transition: all .3s var(--easing);
}
.hero-2026 .btn-mega:hover {
    background: var(--c-accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 14px 42px rgba(255, 138, 0, .55);
}
.hero-2026 .btn-mega svg { width: 18px; height: 18px; }
.hero-2026 .btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: all .3s var(--easing);
}
.hero-2026 .btn-glass:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .3);
}

.hero-2026-meta {
    display: flex;
    gap: 38px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero-2026-meta-item .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--c-yellow);
    letter-spacing: -.02em;
    line-height: 1;
}
.hero-2026-meta-item .lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, .66);
    letter-spacing: .04em;
    margin-top: 6px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

/* Hero — vitrine produit clean (layout stable, pas d'absolute chaotique) */
.hero-showcase {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-showcase-main {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 30px 80px rgba(11, 31, 58, .55), 0 12px 24px rgba(0, 0, 0, .25);
    background: var(--c-deep);
}
.hero-showcase-main > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-showcase-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(11, 31, 58, .9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 196, 0, .3);
    padding: 10px 14px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}
.hero-badge-icon {
    color: var(--c-yellow);
    font-size: 22px;
    line-height: 1;
}
.hero-badge-rating {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.1;
}
.hero-badge-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .06em;
}
.hero-showcase-spec {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(11, 31, 58, .85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 170px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}
.hero-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
}
.hero-spec-label { color: rgba(255, 255, 255, .55); letter-spacing: .04em; }
.hero-spec-value { color: var(--c-yellow); font-weight: 600; }
.hero-showcase-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(11, 31, 58, .92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.hero-showcase-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.2;
}
.hero-showcase-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .04em;
    margin-top: 4px;
}
.hero-showcase-price {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    text-align: right;
    line-height: 1.2;
    flex-shrink: 0;
}
.hero-showcase-price strong {
    display: block;
    color: var(--c-yellow);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-top: 2px;
}
.hero-showcase-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.hero-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: transform .3s var(--easing), border-color .3s ease;
}
.hero-thumb:hover {
    transform: translateY(-3px);
    border-color: var(--c-yellow);
}
.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-thumb span {
    position: absolute;
    inset: auto 0 0 0;
    padding: 6px 10px;
    background: linear-gradient(180deg, transparent, rgba(11, 31, 58, .85));
    color: #fff;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .04em;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--c-deep);
    color: #fff;
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee-scroll 36s linear infinite;
    white-space: nowrap;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: rgba(255, 255, 255, .9);
}
.marquee-item .icon { color: var(--c-accent); font-size: 26px; }
.marquee-item .yellow {
    color: var(--c-yellow);
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== BENTO CATEGORIES ===== */
.bento-section {
    padding: 100px 0;
    background: var(--c-bg);
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}
.bento-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--c-deep);
    color: #fff;
    text-decoration: none;
    transition: all .5s var(--easing);
    cursor: pointer;
    isolation: isolate;
}
.bento-card .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s var(--easing), filter .5s ease;
    z-index: 0;
}
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 58, .25) 0%, rgba(11, 31, 58, .85) 100%);
    z-index: 1;
}
.bento-card .bg-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bento-card .b-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 196, 0, .18);
    border: 1px solid rgba(255, 196, 0, .35);
    color: var(--c-yellow);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.bento-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.bento-card .b-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.5;
}
.bento-card .b-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    transition: all .4s var(--easing);
    z-index: 3;
}
.bento-card:hover .bg { transform: scale(1.08); }
.bento-card:hover .b-arrow {
    background: var(--c-accent);
    transform: rotate(-45deg);
}

.bento-card.size-xl { grid-column: span 2; grid-row: span 2; }
.bento-card.size-l { grid-column: span 2; }
.bento-card.size-m { grid-column: span 1; grid-row: span 1; }
.bento-card.size-tall { grid-column: span 1; grid-row: span 2; }

.bento-card.size-xl h3 { font-size: 38px; }
.bento-card.size-l h3, .bento-card.size-tall h3 { font-size: 24px; }
.bento-card.size-m h3 { font-size: 20px; }

.bento-card.b-volume::before {
    content: attr(data-volume);
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--c-yellow);
    background: rgba(11, 31, 58, .7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 196, 0, .25);
    padding: 6px 10px;
    border-radius: 6px;
    letter-spacing: .04em;
}

/* ===== PROCESS STEPPER ===== */
.process-section {
    padding: 100px 0;
    background: #fff;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--c-line) 0%, var(--c-accent) 25%, var(--c-accent) 75%, var(--c-line) 100%);
    z-index: 0;
}
.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.process-step .number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--c-deep);
    color: var(--c-deep);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 28px;
    margin: 0 auto 24px;
    transition: all .4s var(--easing);
    box-shadow: 0 6px 20px rgba(11, 31, 58, .12);
}
.process-step:hover .number {
    background: var(--c-deep);
    color: var(--c-yellow);
    transform: scale(1.08);
}
.process-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--c-deep);
    margin-bottom: 10px;
}
.process-step p {
    font-size: 15px;
    color: var(--c-ink-soft);
    line-height: 1.55;
    max-width: 240px;
    margin: 0 auto;
}

/* ===== STORY ATELIER ===== */
.story-section {
    background: var(--c-deep);
    color: #fff;
    padding: 0;
    overflow: hidden;
}
.story-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    min-height: 580px;
}
.story-image {
    position: relative;
    background-size: cover;
    background-position: center;
}
.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(11, 31, 58, .6));
}
.story-image .stamp {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(11, 31, 58, .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 196, 0, .35);
    color: var(--c-yellow);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: .06em;
}
.story-image .stamp .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-yellow); }
.story-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.story-content .eyebrow {
    color: var(--c-yellow);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.story-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -.02em;
}
.story-content h2 em { color: var(--c-yellow); font-style: italic; font-weight: 500; }
.story-content p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 18px;
}
.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.story-stat .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--c-yellow);
    line-height: 1;
    letter-spacing: -.02em;
}
.story-stat .lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .66);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 8px;
}

/* ===== FEATURED CAROUSEL ===== */
.featured-section {
    padding: 100px 0;
    background: var(--c-bg);
}
.featured-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px 0 32px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: thin;
}
.featured-scroll::-webkit-scrollbar { height: 6px; }
.featured-scroll::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 3px; }
.featured-scroll::-webkit-scrollbar-track { background: rgba(11, 31, 58, .08); border-radius: 3px; }
.featured-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all .4s var(--easing);
    text-decoration: none;
    color: inherit;
}
.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.featured-card .f-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--c-bg);
    position: relative;
}
.featured-card .f-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--easing);
}
.featured-card:hover .f-media img { transform: scale(1.06); }
.featured-card .f-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--c-deep);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: .04em;
}
.featured-card .f-info { padding: 22px 22px 24px; }
.featured-card .f-cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--c-accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.featured-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--c-deep);
    line-height: 1.25;
    margin-bottom: 14px;
}
.featured-card .f-foot {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid var(--c-line);
    padding-top: 16px;
    margin-top: 14px;
}
.featured-card .f-foot .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--c-deep);
}
.featured-card .f-foot .price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--c-ink-soft);
    margin-left: 4px;
}
.featured-card .f-foot .arrow-link {
    color: var(--c-accent);
    font-weight: 600;
    font-size: 14px;
}

/* ===== BIG STATS ===== */
.big-stats {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255, 138, 0, .12), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 196, 0, .1), transparent 50%),
        var(--c-deep);
    color: #fff;
}
.big-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.big-stat .digit {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 5.5vw, 84px);
    font-weight: 600;
    background: linear-gradient(135deg, var(--c-yellow), var(--c-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    letter-spacing: -.04em;
}
.big-stat .lbl {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .76);
    letter-spacing: .04em;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
}

/* ===== REVIEWS RICH ===== */
.reviews-2026 {
    padding: 100px 0;
    background: #fff;
}
.reviews-2026-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}
.review-2026 {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 18px;
    padding: 28px 26px;
    position: relative;
    transition: all .4s var(--easing);
}
.review-2026:hover {
    transform: translateY(-4px);
    border-color: var(--c-accent);
    box-shadow: 0 16px 40px rgba(255, 138, 0, .14);
}
.review-2026 .stars { color: var(--c-yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-2026 q {
    display: block;
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-ink);
    margin-bottom: 22px;
    font-style: normal;
}
.review-2026 .author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--c-line);
}
.review-2026 .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-deep), var(--c-steel));
    display: grid;
    place-items: center;
    color: var(--c-yellow);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
}
.review-2026 .author-meta strong {
    display: block;
    font-size: 14px;
    color: var(--c-deep);
    font-weight: 600;
}
.review-2026 .author-meta span {
    font-size: 12px;
    color: var(--c-ink-soft);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .02em;
}
.review-2026 .verif {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--c-success);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
}

/* ===== LEAD MAGNET ===== */
.lead-magnet {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(255, 138, 0, .12), transparent 50%),
        var(--c-bg);
    overflow: hidden;
}
.lead-magnet-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.lead-magnet h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.1;
    color: var(--c-deep);
    margin-bottom: 24px;
    letter-spacing: -.02em;
}
.lead-magnet h2 em { color: var(--c-accent); font-style: italic; font-weight: 500; }
.lead-magnet .l-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--c-ink-soft);
    margin-bottom: 28px;
    max-width: 480px;
}
.lead-magnet .checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.lead-magnet .checklist li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--c-ink);
}
.lead-magnet .checklist svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    background: var(--c-accent);
    border-radius: 50%;
    padding: 4px;
    color: #fff;
}
.lead-form {
    display: flex;
    gap: 8px;
    background: #fff;
    border-radius: 999px;
    padding: 6px;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    max-width: 480px;
}
.lead-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 22px;
    font-size: 15px;
    background: transparent;
    color: var(--c-ink);
    border-radius: 999px;
}
.lead-form input::placeholder { color: var(--c-ink-soft); }
.lead-form button {
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--c-deep);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s var(--easing);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lead-form button:hover { background: var(--c-accent); }
.lead-magnet .privacy-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--c-ink-soft);
    font-family: 'JetBrains Mono', monospace;
}

.pdf-mockup {
    position: relative;
    perspective: 1500px;
    transform-style: preserve-3d;
}
.pdf-mockup .pdf-card {
    width: 100%;
    aspect-ratio: 8.5 / 11;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 14px;
    background: linear-gradient(140deg, #fff 0%, #f5f7fa 100%);
    box-shadow: 0 30px 80px rgba(11, 31, 58, .35), 0 12px 24px rgba(11, 31, 58, .15);
    transform: perspective(1500px) rotateY(-12deg) rotateX(4deg);
    overflow: hidden;
    border: 1px solid rgba(11, 31, 58, .08);
    transition: transform .8s var(--easing);
    position: relative;
}
.pdf-mockup .pdf-card:hover {
    transform: perspective(1500px) rotateY(-6deg) rotateX(2deg) translateY(-10px);
}
.pdf-mockup .pdf-band {
    background: var(--c-deep);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pdf-mockup .pdf-band .logo-mini {
    background: var(--c-yellow);
    color: var(--c-deep);
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.pdf-mockup .pdf-band .pages-no {
    font-family: 'JetBrains Mono', monospace;
    color: var(--c-yellow);
    font-size: 11px;
    letter-spacing: .06em;
}
.pdf-mockup .pdf-content {
    padding: 22px 24px;
}
.pdf-mockup .pdf-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: var(--c-deep);
    margin-bottom: 14px;
    line-height: 1.2;
}
.pdf-mockup .pdf-line {
    height: 7px;
    background: var(--c-line);
    border-radius: 4px;
    margin-bottom: 8px;
}
.pdf-mockup .pdf-line.short { width: 60%; }
.pdf-mockup .pdf-line.medium { width: 80%; }
.pdf-mockup .pdf-img-block {
    height: 100px;
    background: linear-gradient(135deg, var(--c-deep), var(--c-steel));
    border-radius: 8px;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
}
.pdf-mockup .pdf-img-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, var(--c-accent) 0%, transparent 50%);
    opacity: .6;
}
.pdf-mockup .pdf-stamp {
    position: absolute;
    top: 60px;
    right: -30px;
    background: var(--c-accent);
    color: #fff;
    padding: 8px 22px;
    transform: rotate(15deg);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(255, 138, 0, .4);
    z-index: 2;
}

/* ===== RESPONSIVE — HOME 2026 ===== */
@media (max-width: 1100px) {
    .hero-2026-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-showcase { max-width: 560px; margin: 0 auto; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card.size-xl { grid-column: span 2; grid-row: span 2; }
    .bento-card.size-l { grid-column: span 2; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .story-grid { grid-template-columns: 1fr; }
    .story-image { min-height: 320px; }
    .story-content { padding: 56px 32px; }
    .reviews-2026-grid { grid-template-columns: 1fr; }
    .lead-magnet-grid { grid-template-columns: 1fr; gap: 40px; }
    .big-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 720px) {
    .hero-2026-meta { flex-wrap: wrap; gap: 24px; }
    .marquee-item { font-size: 17px; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .bento-card.size-xl, .bento-card.size-l { grid-column: span 1; }
    .bento-card.size-xl { grid-row: span 2; }
    .bento-card.size-xl h3 { font-size: 28px; }
    .process-grid { grid-template-columns: 1fr; }
    .reviews-2026-grid { gap: 16px; }
    .float-cta { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 14px; }
    .hero-spec-tag { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track,
    .hero-3d-card,
    .float-cta { animation: none !important; }
}
