/* WiseBled — Page Fonctionnalités (design pro) */

.page-features {
    --feat-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --feat-glass: rgba(255, 255, 255, 0.72);
    background: #f1f5f9;
}

/* —— Boutons —— */
.page-features .btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4f46e5, #6366f1 45%, #7c3aed);
    box-shadow: 0 10px 32px -8px rgba(79, 70, 229, 0.5);
    transition: transform 0.35s var(--feat-ease), box-shadow 0.35s ease;
}
.page-features .btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.28) 50%, transparent 62%);
    transform: translateX(-100%);
    transition: transform 0.65s ease;
}
.page-features .btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -10px rgba(79, 70, 229, 0.55);
}
.page-features .btn-glow:hover::before { transform: translateX(100%); }
.page-features .btn-ghost {
    background: var(--feat-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px -6px rgba(15, 23, 42, 0.08);
    transition: border-color 0.3s ease, transform 0.35s var(--feat-ease), box-shadow 0.35s ease;
}
.page-features .btn-ghost:hover {
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(99, 102, 241, 0.2);
}

/* —— Hero —— */
.page-features .feat-mesh-wrap {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 10% -10%, rgba(99, 102, 241, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 20%, rgba(139, 92, 246, 0.12), transparent 50%),
        linear-gradient(165deg, #f8fafc 0%, #eef2ff 45%, #f1f5f9 100%);
}
.page-features .feat-mesh-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(99, 102, 241, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(99, 102, 241, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, #000 20%, transparent 75%);
    pointer-events: none;
}
.page-features .feat-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: featOrbFloat 14s ease-in-out infinite;
}
.page-features .feat-orb-1 {
    width: 420px; height: 420px;
    top: -120px; right: -80px;
    background: rgba(99, 102, 241, 0.22);
}
.page-features .feat-orb-2 {
    width: 280px; height: 280px;
    bottom: 10%; left: -60px;
    background: rgba(16, 185, 129, 0.14);
    animation-delay: -5s;
}
@keyframes featOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-12px, 18px) scale(1.04); }
}

.page-features .features-hero {
    position: relative;
    padding: 5rem 0 4rem;
    z-index: 1;
}
.page-features .feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4f46e5;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 4px 24px -8px rgba(99, 102, 241, 0.2);
    margin-bottom: 1.5rem;
}
.page-features .feat-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: featPulse 2s ease-in-out infinite;
}
@keyframes featPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.page-features .feat-hero-visual {
    position: relative;
}
.page-features .feat-hero-panel {
    position: relative;
    padding: 1.75rem;
    border-radius: 1.75rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.65));
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 6px -2px rgba(15, 23, 42, 0.04),
        0 24px 64px -24px rgba(79, 70, 229, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}
.page-features .feat-hero-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99,102,241,0.35), transparent 40%, rgba(139,92,246,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.page-features .feat-hero-panel .lottie-wrap {
    min-height: 220px;
    position: relative;
    z-index: 1;
}
.page-features .feat-hero-float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #334155;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.15);
    animation: featFloatCard 5s ease-in-out infinite;
}
.page-features .feat-hero-float-1 { top: 12%; left: -4%; animation-delay: 0s; }
.page-features .feat-hero-float-2 { bottom: 28%; right: -6%; animation-delay: -2s; }
.page-features .feat-hero-float-3 { bottom: 8%; left: 8%; animation-delay: -3.5s; }
@keyframes featFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.page-features .feat-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
}
@media (min-width: 640px) {
    .page-features .feat-stats-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
}
.page-features .feat-stat {
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.65));
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px -8px rgba(79, 70, 229, 0.12);
    backdrop-filter: blur(12px);
    transition: transform 0.35s var(--feat-ease), box-shadow 0.35s ease;
}
.page-features .feat-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -12px rgba(79, 70, 229, 0.18);
}
.page-features .feat-stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.page-features .feat-stat span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* —— Overview bento —— */
.page-features .feat-overview {
    position: relative;
    padding: 3rem 0 2rem;
    margin-top: -1rem;
    z-index: 2;
}
.page-features .feat-overview-title {
    text-align: center;
    margin-bottom: 2rem;
}
.page-features .feat-overview-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}
.page-features .feat-overview-title p {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.35rem;
}
.page-features .feat-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .page-features .feat-bento { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1280px) {
    .page-features .feat-bento { grid-template-columns: repeat(6, 1fr); }
}
.page-features .feat-bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.1rem 1rem;
    border-radius: 1.15rem;
    background: var(--feat-glass);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s var(--feat-ease), box-shadow 0.4s ease, border-color 0.3s ease;
    overflow: hidden;
}
.page-features .feat-bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bento-accent, rgba(99,102,241,0.08)), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.page-features .feat-bento-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 20px 40px -16px rgba(79, 70, 229, 0.22);
}
.page-features .feat-bento-card:hover::after { opacity: 1; }
.page-features .feat-bento-icon {
    position: relative;
    z-index: 1;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: var(--bento-accent, rgba(99, 102, 241, 0.12));
    color: var(--bento-icon, #4f46e5);
}
.page-features .feat-bento-card span.feat-bento-label {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.3;
}
.page-features .feat-bento-count {
    position: relative;
    z-index: 1;
    font-size: 0.625rem;
    font-weight: 600;
    color: #94a3b8;
}

/* —— Layout + TOC —— */
.page-features .features-body {
    padding: 2rem 0 5rem;
}
.page-features .features-layout {
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 1024px) {
    .page-features .features-layout {
        grid-template-columns: 260px 1fr;
        align-items: start;
    }
}
.page-features .features-toc {
    position: sticky;
    top: 6.25rem;
    z-index: 10;
}
.page-features .features-toc-inner {
    background: var(--feat-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.35rem;
    padding: 1.35rem 1rem;
    box-shadow: 0 12px 40px -16px rgba(15, 23, 42, 0.1);
}
.page-features .features-toc-progress {
    height: 3px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    margin-bottom: 1rem;
    overflow: hidden;
}
.page-features .features-toc-progress-bar {
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transition: width 0.15s ease-out;
}
.page-features .features-toc a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s var(--feat-ease);
    border: 1px solid transparent;
}
.page-features .features-toc a .toc-num {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    font-size: 0.625rem;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.05);
    color: #94a3b8;
    transition: inherit;
}
.page-features .features-toc a:hover,
.page-features .features-toc a.is-active {
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    border-color: rgba(99, 102, 241, 0.12);
}
.page-features .features-toc a.is-active .toc-num {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
}

.page-features .features-toc-mobile-wrap {
    position: sticky;
    top: 4rem;
    z-index: 40;
    padding: 0.65rem 0;
    background: rgba(248, 250, 252, 0.88);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.12);
}
.page-features .features-toc-mobile-wrap::before,
.page-features .features-toc-mobile-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.5rem;
    z-index: 2;
    pointer-events: none;
}
.page-features .features-toc-mobile-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248,250,252,0.95), transparent);
}
.page-features .features-toc-mobile-wrap::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248,250,252,0.95), transparent);
}
.page-features .features-toc-mobile {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 1rem 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.page-features .features-toc-mobile::-webkit-scrollbar { display: none; }
.page-features .features-toc-mobile a {
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.1);
    color: #475569;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px -6px rgba(15, 23, 42, 0.08);
}
.page-features .features-toc-mobile a.is-active,
.page-features .features-toc-mobile a:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #7c3aed 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px -8px rgba(79, 70, 229, 0.55);
}
@media (min-width: 1024px) {
    .page-features .features-toc-mobile-wrap { display: none; }
}
@media (max-width: 1023px) {
    .page-features .features-toc { display: none; }
}

/* —— Section panels —— */
.page-features .feat-section {
    scroll-margin-top: 7.5rem;
    margin-bottom: 3rem;
}
.page-features .feat-section-panel {
    position: relative;
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 1.75rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 20px 50px -24px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}
@media (min-width: 640px) {
    .page-features .feat-section-panel { padding: 2.25rem 2rem 2rem; }
}
.page-features .feat-section-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--section-accent, linear-gradient(90deg, #4f46e5, #7c3aed));
}
.page-features .feat-section-panel::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--section-glow, rgba(99, 102, 241, 0.06));
    pointer-events: none;
}
.page-features .feat-section-header {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .page-features .feat-section-header {
        grid-template-columns: auto 1fr auto;
        align-items: start;
    }
}
.page-features .feat-section-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(99, 102, 241, 0.2);
    background: linear-gradient(180deg, var(--section-num, rgba(99,102,241,0.15)), transparent);
    -webkit-background-clip: text;
    background-clip: text;
}
.page-features .feat-section-icon {
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.15rem;
    background: var(--section-icon-bg, linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.08)));
    color: var(--section-icon-color, #4f46e5);
    box-shadow: 0 8px 24px -8px var(--section-shadow, rgba(99, 102, 241, 0.3));
}
.page-features .feat-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--section-badge-bg, rgba(99, 102, 241, 0.1));
    color: var(--section-badge-color, #4f46e5);
    margin-bottom: 0.5rem;
}
.page-features .feat-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
@media (min-width: 640px) {
    .page-features .feat-section-header h2 { font-size: 1.75rem; }
}
.page-features .feat-section-header .feat-intro {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    margin-top: 0.5rem;
    max-width: 42rem;
}
.page-features .feat-section-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 4.5rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: var(--section-badge-bg, rgba(99, 102, 241, 0.08));
    border: 1px solid var(--section-border, rgba(99, 102, 241, 0.12));
}
.page-features .feat-section-count strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--section-icon-color, #4f46e5);
    line-height: 1;
}
.page-features .feat-section-count span {
    font-size: 0.625rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}

/* —— Module screenshot showcase —— */
.page-features .feat-showcase-duo {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.page-features .feat-showcase-duo--pair {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 1024px) {
    .page-features .feat-showcase-duo--pair {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }
}
.page-features .feat-showcase-duo .feat-showcase {
    margin-bottom: 0;
    height: 100%;
}
.page-features .feat-showcase-duo .feat-showcase-shell {
    height: 100%;
}
.page-features .feat-showcase--app .feat-showcase-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.75rem 0.5rem;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
}
.page-features .feat-showcase-phonebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.page-features .feat-showcase-phonebar-notch {
    width: 3rem;
    height: 0.35rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.12);
}
.page-features .feat-showcase-phonebar-label {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}
.page-features .feat-showcase--app .feat-showcase-frame {
    width: min(100%, 220px);
    aspect-ratio: 9 / 16;
    border-radius: 1.15rem;
    box-shadow: 0 20px 48px -20px rgba(79, 70, 229, 0.4);
    overflow: hidden;
}
.page-features .feat-showcase--app .feat-showcase-img {
    object-fit: cover;
    object-position: top center;
}
.page-features .feat-showcase {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.page-features .feat-showcase-shell {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 1.35rem;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.94) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 60px -32px rgba(79, 70, 229, 0.28);
    transition: transform 0.5s var(--feat-ease), box-shadow 0.5s ease, border-color 0.4s ease;
}
.page-features .feat-showcase:hover .feat-showcase-shell {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 32px 72px -28px rgba(79, 70, 229, 0.38);
}
.page-features .feat-showcase-head {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.06);
    background: linear-gradient(180deg, rgba(238,242,255,0.45), transparent);
}
.page-features .feat-showcase-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem 0.3rem 0.55rem;
    border-radius: 9999px;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--section-badge-color, #4338ca);
    background: var(--section-badge-bg, rgba(99, 102, 241, 0.1));
    border: 1px solid var(--section-border, rgba(99, 102, 241, 0.12));
    margin-bottom: 0.75rem;
}
.page-features .feat-showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.3;
    margin: 0;
}
@media (min-width: 640px) {
    .page-features .feat-showcase-title { font-size: 1.35rem; }
}
.page-features .feat-showcase-visual {
    position: relative;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.page-features .feat-showcase-browser {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.page-features .feat-showcase-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.page-features .feat-showcase-dot--r { background: #f87171; }
.page-features .feat-showcase-dot--y { background: #fbbf24; }
.page-features .feat-showcase-dot--g { background: #34d399; }
.page-features .feat-showcase-url {
    margin-left: auto;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #94a3b8;
    padding: 0.2rem 0.55rem;
    border-radius: 0.35rem;
    background: rgba(15, 23, 42, 0.04);
    max-width: 55%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-features .feat-showcase-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}
.page-features .feat-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.page-features .feat-showcase-copy {
    min-width: 0;
    padding: 1.15rem 1.25rem 1.35rem;
    margin: 0;
}
.page-features .feat-showcase-lead {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #334155;
    font-weight: 500;
    margin-bottom: 0.65rem;
}
.page-features .feat-showcase-detail {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1rem;
}
.page-features .feat-showcase-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}
@media (min-width: 480px) {
    .page-features .feat-showcase-bullets { grid-template-columns: repeat(2, 1fr); gap: 0.55rem 1rem; }
}
.page-features .feat-showcase-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #334155;
    padding: 0.55rem 0.65rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.05);
}
.page-features .feat-showcase-bullets li svg {
    color: var(--section-icon-color, #4f46e5);
    margin-top: 0.05rem;
    flex-shrink: 0;
}
.page-features .feat-showcase--mobile .feat-showcase-visual {
    display: flex;
    justify-content: center;
    padding: 1rem 1rem 0.5rem;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
}
.page-features .feat-showcase--mobile .feat-showcase-frame {
    width: min(100%, 240px);
    aspect-ratio: 9 / 16;
    border-radius: 1.25rem;
    box-shadow: 0 20px 48px -20px rgba(79, 70, 229, 0.4);
}
.page-features .feat-showcase--mobile .feat-showcase-img {
    object-fit: cover;
    border-radius: 1.25rem;
}
@media (min-width: 1024px) {
    .page-features .feat-showcase-duo--pair .feat-showcase-shell {
        display: flex;
        flex-direction: column;
    }
    .page-features .feat-showcase-duo--pair .feat-showcase--web .feat-showcase-shell,
    .page-features .feat-showcase-duo--pair .feat-showcase--app .feat-showcase-shell {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        grid-template-rows: unset;
    }
    .page-features .feat-showcase-duo--pair .feat-showcase-head,
    .page-features .feat-showcase-duo--pair .feat-showcase-visual,
    .page-features .feat-showcase-duo--pair .feat-showcase-copy {
        grid-column: auto;
        grid-row: auto;
        border: none;
    }
    .page-features .feat-showcase-shell {
        display: grid;
        grid-template-columns: 1.12fr 1fr;
        grid-template-rows: auto 1fr;
        gap: 0;
        border-radius: 1.5rem;
    }
    .page-features .feat-showcase-head {
        grid-column: 2;
        grid-row: 1;
        padding: 1.75rem 1.75rem 1rem;
        border-bottom: none;
        border-left: 1px solid rgba(99, 102, 241, 0.06);
        align-self: end;
    }
    .page-features .feat-showcase-visual {
        grid-column: 1;
        grid-row: 1 / 3;
        border-bottom: none;
        border-right: 1px solid rgba(15, 23, 42, 0.05);
    }
    .page-features .feat-showcase-copy {
        grid-column: 2;
        grid-row: 2;
        padding: 0 1.75rem 1.75rem;
        align-self: start;
    }
    .page-features .feat-showcase--reverse .feat-showcase-visual {
        grid-column: 2;
        border-right: none;
        border-left: 1px solid rgba(15, 23, 42, 0.05);
    }
    .page-features .feat-showcase--reverse .feat-showcase-head,
    .page-features .feat-showcase--reverse .feat-showcase-copy {
        grid-column: 1;
        border-left: none;
        border-right: 1px solid rgba(99, 102, 241, 0.06);
    }
    .page-features .feat-showcase-frame { aspect-ratio: 16 / 11; min-height: 100%; }
}

/* Accent themes */
.page-features [data-accent="indigo"] { --section-accent: linear-gradient(90deg, #4f46e5, #6366f1); --section-glow: rgba(79,70,229,0.08); --section-icon-bg: linear-gradient(135deg,rgba(79,70,229,0.15),rgba(99,102,241,0.06)); --section-icon-color: #4f46e5; --section-badge-bg: rgba(79,70,229,0.1); --section-badge-color: #4338ca; --section-border: rgba(79,70,229,0.15); --section-shadow: rgba(79,70,229,0.25); --section-num: rgba(79,70,229,0.2); --bento-accent: rgba(79,70,229,0.12); --bento-icon: #4f46e5; --card-accent: #4f46e5; }
.page-features [data-accent="emerald"] { --section-accent: linear-gradient(90deg, #059669, #10b981); --section-glow: rgba(16,185,129,0.08); --section-icon-bg: linear-gradient(135deg,rgba(16,185,129,0.15),rgba(5,150,105,0.06)); --section-icon-color: #059669; --section-badge-bg: rgba(16,185,129,0.1); --section-badge-color: #047857; --section-border: rgba(16,185,129,0.15); --section-shadow: rgba(16,185,129,0.25); --section-num: rgba(16,185,129,0.2); --bento-accent: rgba(16,185,129,0.12); --bento-icon: #059669; --card-accent: #059669; }
.page-features [data-accent="violet"] { --section-accent: linear-gradient(90deg, #7c3aed, #8b5cf6); --section-glow: rgba(124,58,237,0.08); --section-icon-bg: linear-gradient(135deg,rgba(124,58,237,0.15),rgba(139,92,246,0.06)); --section-icon-color: #7c3aed; --section-badge-bg: rgba(124,58,237,0.1); --section-badge-color: #6d28d9; --section-border: rgba(124,58,237,0.15); --section-shadow: rgba(124,58,237,0.25); --section-num: rgba(124,58,237,0.2); --bento-accent: rgba(124,58,237,0.12); --bento-icon: #7c3aed; --card-accent: #7c3aed; }
.page-features [data-accent="sky"] { --section-accent: linear-gradient(90deg, #0284c7, #0ea5e9); --section-glow: rgba(14,165,233,0.08); --section-icon-bg: linear-gradient(135deg,rgba(14,165,233,0.15),rgba(2,132,199,0.06)); --section-icon-color: #0284c7; --section-badge-bg: rgba(14,165,233,0.1); --section-badge-color: #0369a1; --section-border: rgba(14,165,233,0.15); --section-shadow: rgba(14,165,233,0.25); --section-num: rgba(14,165,233,0.2); --bento-accent: rgba(14,165,233,0.12); --bento-icon: #0284c7; --card-accent: #0284c7; }
.page-features [data-accent="amber"] { --section-accent: linear-gradient(90deg, #d97706, #f59e0b); --section-glow: rgba(245,158,11,0.08); --section-icon-bg: linear-gradient(135deg,rgba(245,158,11,0.15),rgba(217,119,6,0.06)); --section-icon-color: #d97706; --section-badge-bg: rgba(245,158,11,0.12); --section-badge-color: #b45309; --section-border: rgba(245,158,11,0.15); --section-shadow: rgba(245,158,11,0.25); --section-num: rgba(245,158,11,0.2); --bento-accent: rgba(245,158,11,0.12); --bento-icon: #d97706; --card-accent: #d97706; }
.page-features [data-accent="rose"] { --section-accent: linear-gradient(90deg, #e11d48, #f43f5e); --section-glow: rgba(244,63,94,0.08); --section-icon-bg: linear-gradient(135deg,rgba(244,63,94,0.15),rgba(225,29,72,0.06)); --section-icon-color: #e11d48; --section-badge-bg: rgba(244,63,94,0.1); --section-badge-color: #be123c; --section-border: rgba(244,63,94,0.15); --section-shadow: rgba(244,63,94,0.25); --section-num: rgba(244,63,94,0.2); --bento-accent: rgba(244,63,94,0.12); --bento-icon: #e11d48; --card-accent: #e11d48; }
.page-features [data-accent="cyan"] { --section-accent: linear-gradient(90deg, #0891b2, #06b6d4); --section-glow: rgba(6,182,212,0.08); --section-icon-bg: linear-gradient(135deg,rgba(6,182,212,0.15),rgba(8,145,178,0.06)); --section-icon-color: #0891b2; --section-badge-bg: rgba(6,182,212,0.1); --section-badge-color: #0e7490; --section-border: rgba(6,182,212,0.15); --section-shadow: rgba(6,182,212,0.25); --section-num: rgba(6,182,212,0.2); --bento-accent: rgba(6,182,212,0.12); --bento-icon: #0891b2; --card-accent: #0891b2; }
.page-features [data-accent="slate"] { --section-accent: linear-gradient(90deg, #475569, #64748b); --section-glow: rgba(100,116,139,0.08); --section-icon-bg: linear-gradient(135deg,rgba(71,85,105,0.12),rgba(100,116,139,0.06)); --section-icon-color: #475569; --section-badge-bg: rgba(71,85,105,0.1); --section-badge-color: #334155; --section-border: rgba(71,85,105,0.12); --section-shadow: rgba(71,85,105,0.2); --section-num: rgba(71,85,105,0.15); --bento-accent: rgba(71,85,105,0.1); --bento-icon: #475569; --card-accent: #475569; }
.page-features [data-accent="blue"] { --section-accent: linear-gradient(90deg, #2563eb, #3b82f6); --section-glow: rgba(59,130,246,0.08); --section-icon-bg: linear-gradient(135deg,rgba(59,130,246,0.15),rgba(37,99,235,0.06)); --section-icon-color: #2563eb; --section-badge-bg: rgba(59,130,246,0.1); --section-badge-color: #1d4ed8; --section-border: rgba(59,130,246,0.15); --section-shadow: rgba(59,130,246,0.25); --section-num: rgba(59,130,246,0.2); --bento-accent: rgba(59,130,246,0.12); --bento-icon: #2563eb; --card-accent: #2563eb; }

/* —— Feature cards —— */
.page-features .feat-grid {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 640px) {
    .page-features .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
.page-features .feat-card {
    position: relative;
    padding: 1.35rem 1.4rem 1.35rem 1.25rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 2px 12px -6px rgba(15, 23, 42, 0.06);
    transition: transform 0.45s var(--feat-ease), box-shadow 0.45s ease, border-color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}
.page-features .feat-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--card-accent, #4f46e5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.page-features .feat-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: 0 20px 48px -16px rgba(15, 23, 42, 0.12);
}
.page-features .feat-card:hover::before { opacity: 1; }
.page-features .feat-card-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}
.page-features .feat-card-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: var(--section-badge-bg, rgba(99, 102, 241, 0.1));
    color: var(--card-accent, #4f46e5);
}
.page-features .feat-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    padding-top: 0.15rem;
}
.page-features .feat-card p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #64748b;
    padding-left: 3.1rem;
}
.page-features .is-stagger {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--feat-ease), transform 0.55s var(--feat-ease);
}
.page-features .feat-section.is-visible .is-stagger {
    opacity: 1;
    transform: translateY(0);
}
.page-features .sector-card.is-stagger,
.page-features .why-card.is-stagger {
    transition: opacity 0.55s var(--feat-ease), transform 0.55s var(--feat-ease), box-shadow 0.45s ease;
}

/* —— Secteurs bento —— */
.page-features .sectors-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 640px) {
    .page-features .sectors-bento { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .page-features .sectors-bento { grid-template-columns: repeat(4, 1fr); }
}
.page-features .sector-card {
    position: relative;
    padding: 1.25rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: transform 0.4s var(--feat-ease), box-shadow 0.4s ease;
    overflow: hidden;
}
.page-features .sector-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.page-features .sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -14px rgba(6, 182, 212, 0.25);
}
.page-features .sector-card:hover::before { opacity: 1; }
.page-features .sector-card-icon {
    position: relative;
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(6, 182, 212, 0.12);
    color: #0891b2;
    margin-bottom: 0.75rem;
}
.page-features .sector-card h3 {
    position: relative;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}
.page-features .sector-card p {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    line-height: 1.65;
    color: #64748b;
}
.page-features .sector-card--wide {
    grid-column: span 2;
}
@media (min-width: 1024px) {
    .page-features .sector-card--wide { grid-column: span 2; }
}

/* —— Pourquoi —— */
.page-features .why-grid {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 640px) {
    .page-features .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .page-features .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.page-features .why-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    border-radius: 1.35rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(248,250,252,0.8));
    border: 1px solid rgba(99, 102, 241, 0.1);
    text-align: left;
    transition: transform 0.45s var(--feat-ease), box-shadow 0.45s ease;
    overflow: hidden;
}
.page-features .why-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 70%);
    pointer-events: none;
}
.page-features .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -20px rgba(79, 70, 229, 0.2);
}
.page-features .why-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #4f46e5, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}
.page-features .why-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.page-features .why-card p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: #64748b;
}

/* —— CTA —— */
.page-features .features-cta {
    position: relative;
    margin-top: 1rem;
    padding: 3.5rem 2rem;
    border-radius: 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 35%, #6366f1 65%, #7c3aed 100%);
    box-shadow: 0 32px 80px -24px rgba(49, 46, 129, 0.55);
}
.page-features .features-cta::before,
.page-features .features-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.page-features .features-cta::before {
    width: 300px; height: 300px;
    top: -100px; right: -60px;
    background: rgba(255, 255, 255, 0.08);
}
.page-features .features-cta::after {
    width: 200px; height: 200px;
    bottom: -60px; left: -40px;
    background: rgba(167, 139, 250, 0.2);
}
.page-features .features-cta > * { position: relative; z-index: 1; }
.page-features .features-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.page-features .features-cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

/* —— Reveal —— */
.page-features .feat-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s var(--feat-ease), transform 0.85s var(--feat-ease);
}
.page-features .feat-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-features .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 60;
    background: transparent;
    pointer-events: none;
}
.page-features .scroll-progress::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--scroll-progress, 0%);
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.5);
}

/* —— Hero CTA + mobile preview —— */
.page-features .feat-hero-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    max-width: 24rem;
    margin: 1.25rem auto 0;
}
@media (min-width: 1024px) {
    .page-features .feat-hero-cta-row {
        margin: 1.25rem 0 0;
        max-width: 22rem;
    }
}
.page-features .feat-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    min-height: 2.75rem;
}
.page-features .feat-hero-cta--primary {
    grid-column: 1 / -1;
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
    box-shadow: 0 12px 32px -10px rgba(79, 70, 229, 0.55);
}
@media (min-width: 480px) {
    .page-features .feat-hero-cta-row {
        grid-template-columns: 1.2fr 1fr;
    }
    .page-features .feat-hero-cta--primary {
        grid-column: auto;
    }
}
.page-features .feat-hero-mobile-preview {
    position: relative;
    margin-top: 1.25rem;
    padding: 0;
}
.page-features .feat-hero-mobile-frame {
    position: relative;
    z-index: 1;
    border-radius: 1.15rem;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 28px 56px -24px rgba(79, 70, 229, 0.4);
    background: #fff;
}
.page-features .feat-hero-mobile-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.page-features .feat-hero-mobile-bar span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
}
.page-features .feat-hero-mobile-bar span:nth-child(1) { background: #f87171; }
.page-features .feat-hero-mobile-bar span:nth-child(2) { background: #fbbf24; }
.page-features .feat-hero-mobile-bar span:nth-child(3) { background: #34d399; }
.page-features .feat-hero-mobile-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.page-features .feat-hero-mobile-glow {
    position: absolute;
    inset: 20% 10% -10%;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(99,102,241,0.25), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.page-features .features-hero .wisebled-store-wrap {
    margin-bottom: 0.25rem;
}
.page-features .features-hero .wisebled-store-badges {
    justify-content: center;
    gap: 0.5rem;
}
.page-features .features-hero .wisebled-store-badge {
    flex: 1 1 calc(50% - 0.35rem);
    max-width: none;
    padding: 0.45rem 0.65rem;
    border-radius: 0.75rem;
}
.page-features .features-hero .wisebled-store-badge-name {
    font-size: 0.8125rem;
}
@media (min-width: 1024px) {
    .page-features .features-hero .wisebled-store-badges {
        justify-content: flex-start;
    }
    .page-features .features-hero .wisebled-store-badge {
        flex: 0 1 auto;
        max-width: 11.5rem;
    }
}

/* —— Mobile polish —— */
@media (max-width: 639px) {
    .page-features .features-hero {
        padding: 3.75rem 0 2.5rem;
    }
    .page-features .feat-badge {
        margin-bottom: 1.15rem;
        font-size: 0.625rem;
    }
    .page-features .feat-section {
        scroll-margin-top: 6.5rem;
        margin-bottom: 2rem;
    }
    .page-features .feat-section-panel {
        padding: 1.35rem 1.1rem 1.25rem;
        border-radius: 1.35rem;
    }
    .page-features .feat-section-header {
        margin-bottom: 1.35rem;
        gap: 1rem;
    }
    .page-features .feat-section-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 1rem;
    }
    .page-features .feat-section-header h2 {
        font-size: 1.25rem;
    }
    .page-features .feat-section-count {
        display: none;
    }
    .page-features .feat-showcase-frame {
        aspect-ratio: 16 / 11;
    }
    .page-features .feat-showcase-img {
        object-fit: contain;
        background: #f8fafc;
    }
    .page-features .feat-card {
        padding: 1.15rem 1.1rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(99, 102, 241, 0.08);
        box-shadow: 0 4px 20px -12px rgba(15, 23, 42, 0.08);
    }
    .page-features .feat-grid {
        gap: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-features .feat-reveal,
    .page-features .is-stagger,
    .page-features .feat-orb,
    .page-features .feat-hero-float { animation: none; transition: none; opacity: 1; transform: none; }
    .page-features .feat-showcase:hover .feat-showcase-shell,
    .page-features .feat-stat:hover { transform: none; }
}
