/* ============================================================================
   HOMEPAGE RIVAL - REDESIGN 2025
   Design moderne inspir de MYM/Reveal avec animations spectaculaires
   Target: 18-30 ans - B2C/B2B
   ============================================================================ */

/* ============================================================================
   CSS CUSTOM PROPERTIES
   ============================================================================ */
:root {
    --home-primary: #A981BB;
    --home-primary-dark: #8B6B9F;
    --home-primary-light: #C9A8D8;
    --home-gradient-start: #A981BB;
    --home-gradient-end: #6B4E7D;
    --home-success: #22C55E;
    --home-accent-blue: #3B82F6;
    --home-bg-dark: #0A0A0B;
    --home-bg-card: rgba(0, 0, 0, 0.03);
    --home-border: rgba(0, 0, 0, 0.1);
    --home-text-primary: #1a1a1a;
    --home-text-secondary: rgba(0, 0, 0, 0.7);
    --home-text-muted: rgba(0, 0, 0, 0.5);
}

/* ============================================================================
   BASE STYLES
   ============================================================================ */
.home-page {
    width: 100%;
    overflow-x: hidden;
    background: #fff;
    color: var(--home-text-primary);
}

.header {
    border-bottom: none !important;
    background: #fff;
}

/* Section Container */
.section-container {
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;

}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--home-primary);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(169, 129, 187, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(169, 129, 187, 0.2);
}

.section-title {
    font-size: clamp(32px, 5vw, 43px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--home-text-primary);
}

.section-title-left {
    text-align: left;
}

.section-subtitle {
    font-size: 18px;
    color: var(--home-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================================
   ANIMATIONS KEYFRAMES
   ============================================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes notifSlide {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }

    10% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    30% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    40% {
        opacity: 0;
        transform: translateX(-20px) scale(0.95);
    }

    100% {
        opacity: 0;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(169, 129, 187, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(169, 129, 187, 0.5);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.2s forwards;
}

.animate-slide-in {
    animation: slideIn 0.6s ease-out forwards;
}

.animate-slide-in-delay {
    opacity: 0;
    animation: slideIn 0.6s ease-out 0.3s forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-scale {
    animation: pulseScale 2s ease-in-out infinite;
}

.animate-notif {
    animation: notifSlide 12s ease-in-out infinite;
}

.animate-notif-delay {
    opacity: 0;
    animation: notifSlide 12s ease-in-out 4s infinite;
}

.animate-notif-delay-2 {
    opacity: 0;
    animation: notifSlide 12s ease-in-out 8s infinite;
}

/* ============================================================================
   SECTION 1: HERO - Design moderne et épuré
   ============================================================================ */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
    padding-top: 80px;
    overflow: visible;
}

.hero-background {
    position: absolute;
    inset: 24px;
    top: 80px;
    z-index: 0;
    background: #151517;
    border-radius: 32px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(169, 129, 187, 0.15) 0%, transparent 70%);
    border-radius: 32px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 90px 48px;
}

.hero-content {
    max-width: 540px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(169, 129, 187, 0.15);
    border: 1px solid rgba(169, 129, 187, 0.25);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 500;
    color: var(--home-primary-light);
    margin-bottom: 20px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--home-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--home-primary-light) 0%, #E8D5F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    font-weight: 400;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--home-primary);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(169, 129, 187, 0.25);
}

.btn-primary-glow svg {
    transition: transform 0.2s ease;
}

.btn-primary-glow:hover svg {
    transform: translateX(3px);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 28px;
    align-items: center;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.hero-stat-number.currency::before {
    content: '';
}

.hero-stat-number.currency::after {
    content: '';
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================================================
   EVENT COUNTDOWN SECTION
   ============================================================================ */
.hero-event-section {
    margin-top: 32px;
}

/* Event Countdown Wrapper */
.event-countdown-wrapper {
    text-align: left;
}

.event-countdown-wrapper.event-countdown-compact {
    margin-bottom: 16px;
}

.event-countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Countdown Display */
.event-countdown {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 8px;
}

.event-countdown.event-countdown-small {
    gap: 6px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.event-countdown-small .countdown-unit {
    min-width: 50px;
    padding: 10px 10px;
}

.countdown-value {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.event-countdown-small .countdown-value {
    font-size: 24px;
}

.countdown-unit-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.event-countdown-small .countdown-unit-label {
    font-size: 9px;
    margin-top: 4px;
}

.countdown-separator {
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
}

.event-countdown-small .countdown-separator {
    font-size: 20px;
}

/* Traction Stats (4 columns on single row) */
.hero-traction-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero-traction-stats .hero-stat {
    flex: 0 1 auto;
    min-width: auto;
}

.hero-traction-stats .hero-stat-divider {
    display: block;
}

/* Urgency Phase */
.event-urgency-wrapper {
    text-align: left;
}

.event-urgency-alert {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.3) 100%);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 7px;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

.urgency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    animation: urgencyBlink 1s ease-in-out infinite;
}

.urgency-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-urgency-subtitle {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-urgency-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.btn-urgency-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(239, 68, 68, 0.5);
}

/* Urgency Animations */
@keyframes urgencyPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
    }
}

@keyframes urgencyBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Countdown Urgent State (last hour) */
.countdown-urgent .countdown-value {
    color: #fbbf24;
}

.countdown-urgent .countdown-unit {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.1);
}

/* Responsive Countdown */
@media (max-width: 640px) {
    .countdown-unit {
        min-width: 55px;
        padding: 12px 12px;
    }

    .countdown-value {
        font-size: 23px;
    }

    .countdown-separator {
        font-size: 22px;
    }

    .event-countdown-small .countdown-unit {
        min-width: 45px;
        padding: 8px 8px;
    }

    .event-countdown-small .countdown-value {
        font-size: 20px;
    }

    .hero-traction-stats {
        gap: 8px;
        flex-wrap: wrap;
    }

    .hero-traction-stats .hero-stat {
        flex: 1 1 calc(50% - 20px);
        min-width: 0;
    }

    .hero-traction-stats .hero-stat-divider {
        display: none;
    }

    .urgency-text {
        font-size: 14px;
    }

    .event-urgency-alert {
        padding: 12px 20px;
        gap: 8px;
    }
}

/* Hero Video Showcase */
.hero-video-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 270px;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0a0b;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    border-radius: 24px;
}

/* Hero Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.hero-floating-card-1 {
    top: 15%;
    left: -20px;
}

.hero-floating-card-2 {
    bottom: 20%;
    right: -20px;
}

.floating-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    color: var(--home-success);
    flex-shrink: 0;
}

.floating-card-icon-purple {
    background: rgba(169, 129, 187, 0.1);
    color: var(--home-primary);
}

.floating-card-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.floating-card-label {
    font-size: 12px;
    color: var(--home-text-muted);
    font-weight: 500;
}

.floating-card-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--home-success);
}

/* Animation for floating cards */
@keyframes floatDelay {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float-delay {
    animation: floatDelay 5s ease-in-out 1s infinite;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
    animation: bounce 2s infinite;
}

/* ============================================================================
   SECTION 1.5: SHOWCASE BENTO GRID
   ============================================================================ */
.showcase-section {
    padding: 80px 24px;
    background: #fff;
}

.showcase-header {
    text-align: center;
    margin: auto;
    margin-bottom: 48px;
    max-width: 1200px;
}

.showcase-header h3 {
    font-size: clamp(32px, 5vw, 43px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--home-text-primary);
    margin: 0 auto 20px;
}


.showcase-tagline {
    font-size: 18px;
    color: var(--home-text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 300;
}

.showcase-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-showcase-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-showcase-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-showcase-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--home-text-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid var(--home-border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-showcase-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Bento Grid Layout */
.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
}

.bento-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 280px;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blurred card style */
.bento-card-blurred .bento-image {
    filter: blur(20px);
    transform: scale(1.1);
}

.bento-card-blurred .bento-overlay,
.bento-card-blurred .bento-badge-live,
.bento-card-blurred .bento-play-btn,
.bento-card-blurred .bento-heart-icon,
.bento-card-blurred .bento-icon-arrow,
.bento-card-blurred .bento-bottom-label,
.bento-card-blurred .bento-stat,
.bento-card-blurred .bento-brand,
.bento-card-blurred .bento-product-btn {
    z-index: 2;
}

/* Lock icon for blurred cards - Style identique à .play-icon */
.bento-lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.bento-lock-overlay svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    width: 22px;
    height: 22px;
}

.bento-card-blurred:hover .bento-lock-overlay {
    transform: translate(-50%, -50%) scale(1.05);
    background-color: rgba(169, 129, 187, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Badges container - Style identique à .sale-badges */
.bento-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: row;
    gap: 6px;
}

/* Type badge (exclusive, limited) - Style identique à .type-badge */
.bento-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.bento-type-badge svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.bento-type-badge.exclusive {
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
    color: white;
}

.bento-type-badge.limited {
    background: var(--home-primary-dark);
    color: white;
}

/* Media type badge (video/image) - Style identique à .media-type-badge */
.bento-media-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.bento-media-badge svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.bento-media-badge.video {
    background: var(--home-primary);
}

.bento-media-badge.image {
    background: rgba(0, 0, 0, 0.6);
}

/* Card Widths - flex-grow for proportional sizing */
.bento-card-sm {
    flex: 1;
}

.bento-card-md {
    flex: 1.3;
}

.bento-card-lg {
    flex: 2;
}

.bento-card-wide {
    flex: 2.5;
}

/* Card Overlays & Elements - Style unifié avec feed.css/profile.css */
.bento-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
}

.bento-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--color-white, #fff);
    color: var(--home-primary);
    font-size: 11px;
    font-weight: 500;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--home-primary);
}

.bento-icon-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-icon-arrow svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    width: 18px;
    height: 18px;
}

.bento-card:hover .bento-icon-arrow {
    background-color: rgba(169, 129, 187, 0.85);
    transform: scale(1.05);
}

.bento-bottom-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
    color: white;
    font-size: 11px;
    font-weight: 500;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.bento-bottom-label svg {
    width: 12px;
    height: 12px;
}

.bento-badge-live {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.bento-badge-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Play Button - Style identique à feed.css/profile.css */
.bento-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.bento-play-btn svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    width: 22px;
    height: 22px;
    color: white;
    margin-left: 2px;
}

.bento-card:hover .bento-play-btn {
    transform: translate(-50%, -50%) scale(1.05);
    background-color: rgba(169, 129, 187, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.bento-play-sm {
    width: 40px;
    height: 40px;
}

.bento-play-sm svg {
    width: 18px;
    height: 18px;
}

/* Heart Icon - Style app */
.bento-heart-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-heart-icon svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    width: 18px;
    height: 18px;
}

.bento-card:hover .bento-heart-icon {
    background-color: rgba(239, 68, 68, 0.85);
    transform: scale(1.05);
}

/* Stats Overlay */
.bento-stat {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    text-align: center;
    z-index: 2;
}

.bento-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1;
    margin-bottom: 4px;
}

.bento-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Brand Badge */
.bento-brand {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--color-white, #fff);
    color: var(--home-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--home-primary);
    z-index: 2;
}

.bento-brand svg {
    width: 14px;
    height: 14px;
    color: var(--home-primary);
}

/* Product Button */
.bento-product-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--color-white, #fff);
    color: var(--home-text-primary);
    font-size: 11px;
    font-weight: 500;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.bento-product-btn svg {
    width: 12px;
    height: 12px;
}

.bento-product-btn:hover {
    background: var(--home-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
    .bento-card {
        height: 220px;
    }

    /* Event Countdown Wrapper */
    .event-countdown-wrapper {
        text-align: center;
    }

    .event-countdown {
        justify-content: center;
    }

    .event-urgency-wrapper {
    text-align: center;
}

}

@media (max-width: 768px) {
    .showcase-section {
        padding: 60px 0 80px;
    }

    .bento-grid {
        gap: 12px;
    }

    .bento-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .bento-card {
        height: 180px;
    }

    .bento-card-sm,
    .bento-card-md {
        flex: 1 1 calc(50% - 6px);
    }

    .bento-card-lg,
    .bento-card-wide {
        flex: 1 1 100%;
    }

    .bento-stat-number {
        font-size: 32px;
    }
}

/* ============================================================================
   SECTION 1.6: VIDEO DEMO
   ============================================================================ */
.video-demo-section {
    padding: 80px 24px;
    background: #fff;
}

.video-demo-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f6fa 0%, #f3f0f7 50%, #ece7f1 100%);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(169, 129, 187, 0.1);
}

.video-demo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(169, 129, 187, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.video-demo-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(169, 129, 187, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.video-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-demo-text {
    max-width: 450px;
}

.video-demo-text .section-eyebrow {
    background: rgba(169, 129, 187, 0.15);
    border-color: rgba(169, 129, 187, 0.25);
}

.video-demo-text .section-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.video-demo-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--home-text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.video-demo-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--home-text-secondary);
    margin-bottom: 28px;
}

.video-demo-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Video Visual */
.video-demo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-demo-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #0a0a0b;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.video-demo-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.video-demo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, transparent 30%, rgba(169, 129, 187, 0.3) 100%);
    -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;
    z-index: 2;
}

.video-demo-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Floating decoration elements */
.video-demo-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-light) 100%);
    border-radius: 20px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.video-demo-visual::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--home-primary) 100%);
    border-radius: 16px;
    opacity: 0.08;
    transform: rotate(-10deg);
}

/* Responsive Video Demo */
@media (max-width: 1024px) {
    .video-demo-card {
        padding: 48px 40px;
    }

    .video-demo-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .video-demo-text {
        max-width: 100%;
        text-align: center;
    }

    .video-demo-cta {
        justify-content: center;
    }

    .video-demo-text .section-title {
        text-align: center;
    }

    .video-demo-wrapper {
        transform: none;
        max-width: 280px;
    }

    .video-demo-wrapper:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .video-demo-section {
        padding: 60px 16px;
    }

    .video-demo-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .video-demo-wrapper {
        max-width: 260px;
        border-radius: 16px;
    }

    .video-demo-player {
        border-radius: 16px;
    }

    .video-demo-subtitle {
        font-size: 16px;
    }

    .video-demo-visual::before,
    .video-demo-visual::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .video-demo-card {
        padding: 32px 20px;
    }

    .video-demo-wrapper {
        max-width: 240px;
    }

    .countdown-value {
        font-size: 19px;
    }

    .countdown-unit {
        min-width: 40px;
        padding: 8px 8px;
    }

}

/* ============================================================================
   SECTION 2: DIFFERENTIATORS
   ============================================================================ */
.differentiators-section {
    padding: 24px;
    position: relative;
}

.differentiators-section .section-container {
    background: #151517;
    border-radius: 32px;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.differentiators-section .section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 129, 187, 0.3), transparent);
}

.differentiators-section .section-header {
    margin-bottom: 56px;
}

.differentiators-section .section-eyebrow {
    background: rgba(169, 129, 187, 0.12);
    border-color: rgba(169, 129, 187, 0.2);
    color: var(--home-primary-light);
}

.differentiators-section .section-title {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 43px);
    font-weight: 600;
}

.differentiators-section .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    max-width: 550px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diff-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diff-card:hover {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(169, 129, 187, 0.25);
    transform: translateY(-6px);
}

.diff-card:hover::before {
    opacity: 1;
}

.diff-card-highlight {
    background: linear-gradient(165deg, rgba(169, 129, 187, 0.1) 0%, rgba(169, 129, 187, 0.03) 100%);
    border-color: rgba(169, 129, 187, 0.15);
}

.diff-card-highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(169, 129, 187, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.diff-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
    color: white;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 0 0 8px 8px;
}

.diff-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.diff-icon svg {
    width: 26px;
    height: 26px;
}

.diff-icon-ownership {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: #60a5fa;
}

.diff-icon-resale {
    background: linear-gradient(135deg, rgba(169, 129, 187, 0.2) 0%, rgba(169, 129, 187, 0.08) 100%);
    color: var(--home-primary-light);
}

.diff-icon-royalty {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.08) 100%);
    color: #4ade80;
}

.diff-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.diff-description {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}

/* Diff Visuals */
.diff-visual {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ownership-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ownership-nft {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--home-primary) 0%, #60a5fa 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(169, 129, 187, 0.25);
}

.nft-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite;
}

.ownership-arrow {
    color: rgba(255, 255, 255, 0.3);
}

.ownership-arrow svg {
    width: 32px;
    height: 20px;
}

.ownership-wallet {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.ownership-wallet svg {
    width: 22px;
    height: 22px;
}

.resale-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.resale-step {
    text-align: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    min-width: 80px;
}

.resale-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.resale-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resale-profit {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.resale-profit .resale-price {
    color: #4ade80;
}

.resale-arrow {
    color: var(--home-primary-light);
    opacity: 0.7;
}

.resale-arrow svg {
    width: 24px;
    height: 20px;
}

.royalty-visual {
    padding: 12px 0 4px;
}

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

.royalty-circle {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(169, 129, 187, 0.15) 0%, rgba(169, 129, 187, 0.05) 100%);
    border: 2px solid rgba(169, 129, 187, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--home-primary-light);
    flex-shrink: 0;
}

.royalty-arrows {
    flex: 1;
    position: relative;
    height: 44px;
}

.royalty-line {
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    border-radius: 1px;
}

.royalty-line-creator {
    top: 10px;
    background: linear-gradient(90deg, var(--home-primary-light) 0%, rgba(169, 129, 187, 0.15) 100%);
}

.royalty-line-seller {
    bottom: 10px;
    background: linear-gradient(90deg, #4ade80 0%, rgba(74, 222, 128, 0.15) 100%);
}

.royalty-recipients {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.royalty-recipient {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.royalty-amount {
    font-size: 14px;
    font-weight: 700;
    min-width: 36px;
}

.royalty-recipient:first-child .royalty-amount {
    color: var(--home-primary-light);
}

.royalty-recipient:last-child .royalty-amount {
    color: #4ade80;
}

.royalty-who {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================================================
   SECTION 3: AUDIENCES (CREATORS / FANS)
   ============================================================================ */
.audiences-section {
    padding: 80px 24px;
    background: #fff;
}

.audiences-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.audiences-header {
    text-align: center;
    margin-bottom: 48px;
}

.audiences-header h2 {
    font-size: clamp(32px, 5vw, 43px);
    font-weight: 600;
    color: var(--home-text-primary);
    margin-bottom: 16px;
}

.audiences-header p {
    font-size: 16px;
    color: var(--home-text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

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

.audience-card {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.audience-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.audience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.audience-card:hover .audience-image {
    transform: scale(1.03);
}

.audience-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.audience-content {
    padding: 28px;
}

.audience-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--home-primary);
    margin-bottom: 10px;
    padding: 4px 10px;
    background: rgba(169, 129, 187, 0.1);
    border-radius: 6px;
}

.audience-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--home-text-primary);
}

.audience-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.audience-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--home-text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.audience-benefits li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.audience-benefits svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--home-success);
    margin-top: 1px;
}

.audience-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--home-primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.audience-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 129, 187, 0.3);
}

.audience-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.audience-cta:hover svg {
    transform: translateX(3px);
}

.audience-cta-secondary {
    background: transparent;
    border: 1px solid var(--home-border);
    color: var(--home-text-primary);
}

.audience-cta-secondary:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: none;
}

/* ============================================================================
   SECTION 4: WALLET
   ============================================================================ */
.wallet-section {
    padding: 24px;
}

.wallet-section .section-container {
    background: var(--color-primary);
    border-radius: 32px;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.wallet-section .section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.wallet-section .section-container::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.wallet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wallet-text .section-eyebrow {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.wallet-text .section-title {
    color: #ffffff;
}

.wallet-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.wallet-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wallet-feature {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.wallet-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.wallet-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.wallet-feature-icon svg {
    width: 20px;
    height: 20px;
}

.wallet-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
    margin-top: 0px;
    text-align: left;
}

.wallet-feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* Wallet Visual */
.wallet-visual {
    position: relative;
}

.wallet-card-mockup {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.wallet-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wallet-mockup-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--home-text-primary);
}

.wallet-mockup-badge {
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--home-success);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
}

.wallet-mockup-balance {
    margin-bottom: 24px;
}

.wallet-mockup-label {
    font-size: 12px;
    color: var(--home-text-muted);
    margin-bottom: 6px;
    display: block;
}

.wallet-mockup-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.wallet-mockup-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--home-primary);
}

.wallet-mockup-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--home-text-primary);
}

.wallet-mockup-change {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.wallet-mockup-change.positive {
    color: var(--home-success);
}

.wallet-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
    margin-bottom: 20px;
}

.wallet-mockup-stat {
    text-align: center;
}

.wallet-mockup-stat .stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--home-text-primary);
    margin-bottom: 2px;
}

.wallet-mockup-stat .stat-label {
    font-size: 11px;
    color: var(--home-text-muted);
}

.wallet-mockup-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wallet-mockup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.wallet-mockup-btn svg {
    width: 16px;
    height: 16px;
}

.wallet-btn-primary {
    background: var(--home-primary);
    color: white;
}

.wallet-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(169, 129, 187, 0.3);
}

.wallet-btn-secondary {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--home-border);
    color: var(--home-text-primary);
}

.wallet-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
}

/* Wallet Transactions */
.wallet-transactions {
    position: absolute;
    bottom: -30px;
    left: -20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-transaction {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.transaction-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-icon svg {
    width: 16px;
    height: 16px;
}

.tx-sale {
    background: rgba(34, 197, 94, 0.1);
    color: var(--home-success);
}

.tx-royalty {
    background: rgba(169, 129, 187, 0.1);
    color: var(--home-primary);
}

.transaction-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.transaction-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--home-text-primary);
}

.transaction-time {
    font-size: 11px;
    color: var(--home-text-muted);
}

.transaction-amount {
    font-size: 16px;
    font-weight: 700;
}

.transaction-amount.positive {
    color: var(--home-success);
}

/* ============================================================================
   SECTION 5: FINAL CTA
   ============================================================================ */
.final-cta-section {
    padding: 24px;
    position: relative;
}

.final-cta-section .section-container {
    background: #151517;
    border-radius: 32px;
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-section .section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 129, 187, 0.3), transparent);
}

.final-cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 32px;
}

.final-cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(169, 129, 187, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(169, 129, 187, 0.08) 0%, transparent 50%);
}

/* Decorative floating elements */
.final-cta-background::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(169, 129, 187, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-background::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(169, 129, 187, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--home-primary-light);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(169, 129, 187, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(169, 129, 187, 0.2);
}

.final-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.final-cta-title-gradient {
    background: linear-gradient(135deg, var(--home-primary-light) 0%, #E8D5F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.final-cta-trust {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(169, 129, 187, 0.2);
}

.trust-item svg {
    color: var(--home-success);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

/* ===========================================
   LARGE SCREENS (1280px - 1480px)
   =========================================== */
@media (max-width: 1480px) {
    .hero-container {
        max-width: 1100px;
        gap: 60px;
        padding: 80px 40px;
    }

    .hero-title {
        font-size: clamp(32px, 4.5vw, 48px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-video-wrapper {
        max-width: 240px;
    }

    .section-title {
        font-size: clamp(28px, 4vw, 40px);
    }

    .showcase-header h3 {
        font-size: clamp(28px, 4vw, 40px);
    }

    .bento-card {
        height: 240px;
    }

    .differentiators-section .section-container {
        padding: 70px 40px;
    }

    .differentiators-section .section-title {
        font-size: clamp(28px, 4vw, 40px);
    }

    .diff-card {
        padding: 30px 24px;
    }

    .diff-title {
        font-size: 19px;
    }

    .diff-description {
        font-size: 13px;
    }

    .audiences-header h2 {
        font-size: clamp(28px, 4vw, 40px);
    }

    .wallet-section .section-container {
        padding: 70px 40px;
    }

    .wallet-content {
        gap: 48px;
    }

    .final-cta-section .section-container {
        padding: 80px 40px;
    }

    .final-cta-title {
        font-size: clamp(28px, 4vw, 42px);
    }
}

/* ===========================================
   MEDIUM-LARGE SCREENS (1024px - 1280px)
   =========================================== */
@media (max-width: 1280px) {
    .hero-container {
        max-width: 960px;
        gap: 48px;
        padding: 60px 32px;
    }

    .hero-title {
        font-size: clamp(30px, 4vw, 42px);
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-video-wrapper {
        max-width: 220px;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .section-title {
        font-size: clamp(26px, 3.5vw, 36px);
    }

    .showcase-section {
        padding: 60px 20px;
    }

    .showcase-header h3 {
        font-size: clamp(26px, 3.5vw, 36px);
    }

    .showcase-tagline {
        font-size: 16px;
    }

    .bento-card {
        height: 220px;
    }

    .bento-stat-number {
        font-size: 36px;
    }

    .differentiators-section {
        padding: 20px;
    }

    .differentiators-section .section-container {
        padding: 60px 32px;
    }

    .differentiators-section .section-title {
        font-size: clamp(26px, 3.5vw, 36px);
    }

    .diff-grid {
        gap: 20px;
    }

    .diff-card {
        padding: 28px 22px;
    }

    .diff-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .diff-icon svg {
        width: 24px;
        height: 24px;
    }

    .diff-title {
        font-size: 18px;
    }

    .diff-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .audiences-section {
        padding: 60px 20px;
    }

    .audiences-header h2 {
        font-size: clamp(26px, 3.5vw, 36px);
    }

    .audience-content {
        padding: 24px;
    }

    .audience-title {
        font-size: 20px;
    }

    .wallet-section {
        padding: 20px;
    }

    .wallet-section .section-container {
        padding: 60px 32px;
    }

    .wallet-content {
        gap: 40px;
    }

    .wallet-description {
        font-size: 15px;
    }

    .wallet-feature {
        padding: 16px;
    }

    .wallet-mockup-value {
        font-size: 36px;
    }

    .final-cta-section {
        padding: 20px;
    }

    .final-cta-section .section-container {
        padding: 70px 32px;
    }

    .final-cta-title {
        font-size: clamp(26px, 3.5vw, 38px);
    }

    .final-cta-subtitle {
        font-size: 16px;
    }
}

/* ===========================================
   TABLET SCREENS (max-width: 1024px)
   =========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-video-showcase {
        order: -1;
    }

    .hero-video-wrapper {
        max-width: 180px;
    }

    .hero-floating-card-1 {
        left: 20px;
        top: 10%;
    }

    .hero-floating-card-2 {
        right: 20px;
        bottom: 15%;
    }

    .differentiators-section {
        padding: 16px;
    }

    .differentiators-section .section-container {
        padding: 60px 32px;
        border-radius: 24px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audiences-section {
        padding: 60px 16px;
    }

    .audiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wallet-section {
        padding: 16px;
    }

    .wallet-section .section-container {
        padding: 60px 32px;
        border-radius: 24px;
    }

    .wallet-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .wallet-text {
        text-align: center;
    }

    .section-title-left {
        text-align: center;
    }

    .wallet-transactions {
        position: static;
        margin-top: 20px;
    }

    .final-cta-section {
        padding: 16px;
    }

    .final-cta-section .section-container {
        padding: 80px 40px;
        border-radius: 24px;
    }

    .final-cta-background {
        border-radius: 24px;
    }
}

@media (max-width: 768px) {

    /* ===========================================
       BASE STYLES MOBILE
       =========================================== */
    .section-container {
        padding: 0 16px;
    }

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

    .section-subtitle {
        font-size: 14px;
    }

    .section-eyebrow {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 1.5px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* ===========================================
       HERO SECTION MOBILE
       =========================================== */
    .hero-section {
        padding: 12px;
        padding-top: 80px;
        min-height: auto;
    }

    .hero-background {
        inset: 12px;
        top: 80px;
        border-radius: 20px;
    }

    .hero-gradient {
        border-radius: 20px;
    }

    .hero-container {
        gap: 32px;
        padding: 32px 20px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 32px;
    }

    .btn-primary-glow,
    .btn-secondary-outline {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-video-wrapper {
        max-width: 140px;
        border-radius: 16px;
    }

    .hero-video {
        border-radius: 16px;
    }

    .hero-floating-card {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* ===========================================
       SHOWCASE SECTION MOBILE
       =========================================== */
    .showcase-section {
        padding: 48px 12px;
    }

    .showcase-header {
        margin-bottom: 32px;
    }

    .showcase-header h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .showcase-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .showcase-ctas {
        flex-direction: column;
        gap: 10px;
    }

    .btn-showcase-primary,
    .btn-showcase-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .bento-grid {
        gap: 10px;
    }

    .bento-row {
        gap: 10px;
    }

    .bento-card {
        height: 140px;
        border-radius: 14px;
    }

    .bento-stat-number {
        font-size: 28px;
    }

    .bento-stat-label {
        font-size: 11px;
    }

    .bento-play-btn {
        width: 40px;
        height: 40px;
    }

    .bento-play-btn svg {
        width: 18px;
        height: 18px;
    }

    .bento-lock-overlay {
        width: 40px;
        height: 40px;
    }

    .bento-lock-overlay svg {
        width: 18px;
        height: 18px;
    }

    /* ===========================================
       DIFFERENTIATORS SECTION MOBILE
       =========================================== */
    .differentiators-section {
        padding: 12px;
    }

    .differentiators-section .section-container {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .differentiators-section .section-header {
        margin-bottom: 32px;
    }

    .differentiators-section .section-title {
        font-size: 26px;
    }

    .differentiators-section .section-subtitle {
        font-size: 14px;
    }

    .diff-grid {
        gap: 12px;
    }

    .diff-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .diff-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .diff-icon svg {
        width: 22px;
        height: 22px;
    }

    .diff-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .diff-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .diff-badge {
        font-size: 8px;
        padding: 5px 10px;
    }

    .resale-price {
        font-size: 20px;
    }

    .resale-label {
        font-size: 9px;
    }

    .ownership-nft,
    .ownership-wallet {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .royalty-circle {
        width: 44px;
        height: 44px;
        font-size: 11px;
    }

    .royalty-amount {
        font-size: 12px;
    }

    .royalty-who {
        font-size: 8px;
    }

    .wallet-feature-text h4 {
        text-align: left;
    }

    /* ===========================================
       AUDIENCES SECTION MOBILE
       =========================================== */
    .audiences-section {
        padding: 48px 12px;
    }

    .audiences-header {
        margin-bottom: 32px;
    }

    .audiences-header h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .audiences-header p {
        font-size: 14px;
    }

    .audiences-grid {
        gap: 16px;
    }

    .audience-card {
        border-radius: 16px;
    }

    .audience-image-container {
        height: 140px;
    }

    .audience-content {
        padding: 20px;
    }

    .audience-eyebrow {
        font-size: 10px;
        padding: 3px 8px;
        margin-bottom: 8px;
    }

    .audience-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .audience-benefits {
        margin-bottom: 20px;
    }

    .audience-benefits li {
        font-size: 13px;
        padding: 8px 0;
        gap: 8px;
    }

    .audience-benefits svg {
        width: 16px;
        height: 16px;
    }

    .audience-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
        box-sizing: border-box;
    }

    /* ===========================================
       WALLET SECTION MOBILE
       =========================================== */
    .wallet-section {
        padding: 12px;
    }

    .wallet-section .section-container {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .wallet-text .section-eyebrow {
        font-size: 10px;
        padding: 5px 12px;
    }

    .wallet-text .section-title {
        font-size: 26px;
    }

    .wallet-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .wallet-features {
        gap: 12px;
    }

    .wallet-feature {
        padding: 14px;
        border-radius: 12px;
        gap: 12px;
        text-align: left;
    }

    .wallet-feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;

    }

    .wallet-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .wallet-feature-text h4 {
        font-size: 14px;
    }

    .wallet-feature-text p {
        font-size: 12px;
    }

    .wallet-card-mockup {
        padding: 20px;
        border-radius: 16px;
    }

    .wallet-mockup-title {
        font-size: 14px;
    }

    .wallet-mockup-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .wallet-mockup-label {
        font-size: 11px;
    }

    .wallet-mockup-currency {
        font-size: 20px;
    }

    .wallet-mockup-value {
        font-size: 32px;
    }

    .wallet-mockup-change {
        font-size: 12px;
    }

    .wallet-mockup-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 14px 0;
    }

    .wallet-mockup-stat .stat-value {
        font-size: 16px;
    }

    .wallet-mockup-stat .stat-label {
        font-size: 9px;
    }

    .wallet-mockup-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wallet-mockup-btn {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    .wallet-transactions {
        position: static;
        margin-top: 16px;
        gap: 8px;
    }

    .wallet-transaction {
        padding: 12px;
        border-radius: 10px;
        gap: 10px;
    }

    .transaction-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .transaction-icon svg {
        width: 14px;
        height: 14px;
    }

    .transaction-title {
        font-size: 12px;
    }

    .transaction-time {
        font-size: 10px;
    }

    .transaction-amount {
        font-size: 14px;
    }

    /* ===========================================
       FINAL CTA SECTION MOBILE
       =========================================== */
    .final-cta-section {
        padding: 12px;
    }

    .final-cta-section .section-container {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .final-cta-background {
        border-radius: 20px;
    }

    .hero-stat {
        text-align: center;
    }

    .final-cta-background::before,
    .final-cta-background::after {
        display: none;
    }

    .final-cta-eyebrow {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .final-cta-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .final-cta-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 32px;
    }

    .final-cta-buttons .btn-primary-glow,
    .final-cta-buttons .btn-secondary-outline {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .final-cta-trust {
        flex-direction: column;
        gap: 8px;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    .trust-item svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {

    /* ===========================================
       VERY SMALL SCREENS - Ajustements finaux
       =========================================== */
    .section-title {
        font-size: 24px;
    }



    .hero-container {
        padding: 28px 16px;
    }

    .hero-video-wrapper {
        max-width: 120px;
    }

    .showcase-header h3 {
        font-size: 24px;
    }

    .bento-card {
        height: 120px;
    }

    .bento-stat-number {
        font-size: 24px;
    }

    .differentiators-section .section-title,
    .audiences-header h2,
    .wallet-text .section-title,
    .final-cta-title {
        font-size: 24px;
    }

    .diff-title {
        font-size: 16px;
    }

    .audience-title {
        font-size: 16px;
    }

    /* .wallet-feature {
        flex-direction: column;
        text-align: center;
    } */

    .wallet-mockup-value {
        font-size: 28px;
    }


}

/* ============================================================================
   REDUCED MOTION
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {

    .animate-fade-in,
    .animate-fade-in-delay,
    .animate-fade-in-delay-2,
    .animate-slide-up,
    .animate-slide-up-delay,
    .animate-slide-in,
    .animate-slide-in-delay,
    .animate-float,
    .animate-float-delay,
    .animate-pulse-scale,
    .animate-notif,
    .animate-notif-delay,
    .animate-notif-delay-2 {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-title-gradient {
        animation: none;
    }

    .nft-shimmer {
        animation: none;
    }

    .hero-scroll-indicator {
        animation: none;
    }
}