/* ============================================
   MARKETSCAN LANDING V2 - PREMIUM DESIGN
   Ultra-épuré, haut de gamme, confiance
   ============================================ */

/* Reset & Variables */
:root {
    /* Palette Premium - Ultra sobre, luxe discret */
    --lv2-black: #09090b;
    --lv2-dark: #18181b;
    --lv2-gray-900: #27272a;
    --lv2-gray-800: #3f3f46;
    --lv2-gray-600: #71717a;
    --lv2-gray-500: #a1a1aa;
    --lv2-gray-400: #a1a1aa;
    --lv2-gray-300: #d4d4d8;
    --lv2-gray-200: #e4e4e7;
    --lv2-gray-100: #f4f4f5;
    --lv2-gray-50: #fafafa;
    --lv2-white: #ffffff;
    
    /* Accent - Noir élégant avec touche dorée subtile */
    --lv2-accent: #18181b;
    --lv2-accent-light: #3b82f6;
    --lv2-accent-gold: #b8860b;
    --lv2-accent-glow: rgba(24, 24, 27, 0.08);
    
    /* Typographie Premium */
    --lv2-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lv2-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing - Équilibré */
    --lv2-container: 1100px;
    --lv2-section-padding: 100px;
    
    /* Transitions - Fluides et élégantes */
    --lv2-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --lv2-duration: 0.5s;
}

/* Base */
.lv2-page {
    font-family: var(--lv2-font-body);
    background: var(--lv2-white);
    color: var(--lv2-gray-600);
    line-height: 1.7;
    font-size: 16px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.lv2-page strong {
    color: var(--lv2-black);
    font-weight: 600;
}

.lv2-page * {
    box-sizing: border-box;
}

/* Container */
.lv2-container {
    max-width: var(--lv2-container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   HEADER - Minimal & Transparent
   ============================================ */
.lv2-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.lv2-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lv2-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lv2-black);
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.lv2-logo span {
    color: #c8a86e;
}

.lv2-header-cta {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lv2-header-link {
    color: var(--lv2-gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--lv2-duration) var(--lv2-ease);
}

.lv2-header-link:hover {
    color: var(--lv2-black);
}

/* ============================================
   BUTTONS - Élégants et premium
   ============================================ */
.lv2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-btn-sm {
    padding: 7px 18px !important;
    font-size: 0.82rem !important;
    border-radius: 6px;
}

.lv2-btn-primary {
    background: var(--lv2-black);
    color: var(--lv2-white);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.lv2-btn-primary:hover {
    background: var(--lv2-gray-900);
    transform: translateY(-1px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
}

.lv2-btn-secondary {
    background: transparent;
    color: var(--lv2-black);
    border: 1px solid var(--lv2-gray-300);
    font-weight: 500;
}

.lv2-btn-secondary:hover {
    border-color: var(--lv2-gray-400);
    background: var(--lv2-gray-50);
}

.lv2-btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.lv2-btn-icon {
    font-size: 1.1em;
    transition: transform var(--lv2-duration) var(--lv2-ease);
}

.lv2-btn:hover .lv2-btn-icon {
    transform: translateX(4px);
}

/* ============================================
   HERO SECTION - Impact immédiat
   ============================================ */
.lv2-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 48px;
    position: relative;
    overflow: hidden;
}

.lv2-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lv2-hero-content {
    max-width: 560px;
}

.lv2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--lv2-gray-100);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lv2-gray-600);
    margin-bottom: 20px;
}

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

@keyframes lv2-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.lv2-hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.12;
    color: var(--lv2-black);
    letter-spacing: -2px;
    margin: 0 0 20px;
}

.lv2-hero-title-highlight {
    color: var(--lv2-black);
    position: relative;
    display: inline-block;
}

.lv2-hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    z-index: -1;
    border-radius: 2px;
}

.lv2-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--lv2-gray-600);
    margin: 0 0 28px;
}

.lv2-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    white-space: nowrap;
}

/* Trust bar — full-width between hero and stats */
.lv2-hero-proof-bar {
    width: 100%;
    border-top: 1px solid var(--lv2-gray-200);
    border-bottom: 1px solid var(--lv2-gray-200);
    background: var(--lv2-gray-50, #f9fafb);
}

.lv2-hero-proof-bar-inner {
    max-width: var(--lv2-container);
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.lv2-hero-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--lv2-gray-600);
    white-space: nowrap;
}

.lv2-hero-proof-icon {
    color: var(--lv2-accent);
}

/* Hero Visual */
.lv2-hero-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.lv2-hero-mockup-img {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 40px;
}

.lv2-hero-mockup-img img {
    width: 115%;
    max-width: 620px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}

.lv2-hero-mockup {
    position: relative;
    background: var(--lv2-gray-100);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 20px 60px rgba(0, 0, 0, 0.1);
}

.lv2-mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.lv2-mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lv2-gray-300);
}

.lv2-mockup-dot:nth-child(1) { background: #ff5f57; }
.lv2-mockup-dot:nth-child(2) { background: #febc2e; }
.lv2-mockup-dot:nth-child(3) { background: #28c840; }

.lv2-mockup-content {
    background: var(--lv2-white);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lv2-mockup-report {
    padding: 32px;
    flex: 1;
}

.lv2-mockup-report-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lv2-gray-200);
}

.lv2-mockup-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
}

.lv2-mockup-brand h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: var(--lv2-black);
}

.lv2-mockup-brand p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--lv2-gray-600);
}

.lv2-mockup-sections {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lv2-mockup-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--lv2-gray-100);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--lv2-gray-800);
}

.lv2-mockup-section-icon {
    width: 32px;
    height: 32px;
    background: var(--lv2-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lv2-accent);
}

/* Floating elements — Premium glassmorphism */
.lv2-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 10px 18px 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: lv2-float 6s ease-in-out infinite;
    z-index: 3;
}

.lv2-float-card-1 {
    top: 8%;
    right: -36px;
    animation-delay: 0s;
}

.lv2-float-card-2 {
    bottom: 14%;
    left: -28px;
    animation-delay: 3s;
}

@keyframes lv2-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Live indicator dot */
.lv2-float-indicator {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.lv2-float-pulse {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lv2-black);
}

.lv2-float-pulse::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--lv2-black);
    opacity: 0;
    animation: lv2-pulse-ring 2.5s ease-out infinite;
}

.lv2-float-indicator-pages .lv2-float-pulse {
    background: var(--lv2-accent-gold);
}

.lv2-float-indicator-pages .lv2-float-pulse::before {
    background: var(--lv2-accent-gold);
}

@keyframes lv2-pulse-ring {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* Text */
.lv2-float-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lv2-float-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lv2-black);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.lv2-float-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--lv2-gray-600);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

/* ============================================
   STATS SECTION - Chiffres clés
   ============================================ */
.lv2-stats {
    padding: 100px 0;
    background: var(--lv2-black);
    position: relative;
}

.lv2-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

.lv2-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.lv2-stat {
    text-align: center;
    position: relative;
}

.lv2-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.lv2-stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--lv2-white);
    white-space: nowrap;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.lv2-stat-label {
    font-size: 0.95rem;
    color: var(--lv2-gray-400);
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.lv2-value {
    padding: var(--lv2-section-padding) 0;
}

.lv2-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}

.lv2-section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--lv2-gray-500);
    margin-bottom: 20px;
}

.lv2-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--lv2-black);
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.lv2-section-subtitle {
    font-size: 1.15rem;
    color: var(--lv2-gray-600);
    line-height: 1.7;
    margin: 0;
}

.lv2-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lv2-value-card {
    padding: 48px;
    background: var(--lv2-white);
    border: 1px solid var(--lv2-gray-200);
    border-radius: 20px;
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-value-card:hover {
    border-color: var(--lv2-gray-300);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.lv2-value-icon {
    width: 52px;
    height: 52px;
    background: var(--lv2-gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--lv2-gray-600);
    margin-bottom: 28px;
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-value-card:hover .lv2-value-icon {
    background: var(--lv2-black);
    color: var(--lv2-white);
}

.lv2-value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lv2-black);
    margin: 0 0 12px;
}

.lv2-value-desc {
    font-size: 0.95rem;
    color: var(--lv2-gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   REPORT PREVIEW
   ============================================ */
.lv2-preview {
    padding: var(--lv2-section-padding) 0;
    background: var(--lv2-gray-50);
}

.lv2-preview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.lv2-preview-content {
    max-width: 100%;
}

.lv2-preview-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.lv2-preview-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--lv2-gray-200);
}

.lv2-preview-list li:last-child {
    border-bottom: none;
}

.lv2-preview-check {
    width: 18px;
    height: 18px;
    background: var(--lv2-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lv2-white);
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.lv2-preview-list strong {
    display: block;
    color: var(--lv2-black);
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.lv2-preview-list span {
    font-size: 0.8rem;
    color: var(--lv2-gray-600);
}

/* Preview visual */
.lv2-preview-visual {
    position: relative;
}

.lv2-preview-pages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.lv2-preview-page {
    background: var(--lv2-white);
    border: 1px solid var(--lv2-gray-200);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 16px;
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-preview-page:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--lv2-gray-300);
}

.lv2-page-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lv2-gray-200);
    margin-bottom: 12px;
}

.lv2-page-icon {
    width: 28px;
    height: 28px;
    background: var(--lv2-gray-100);
    color: var(--lv2-gray-600);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.lv2-page-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lv2-black);
}

.lv2-page-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lv2-page-line {
    height: 8px;
    background: var(--lv2-gray-200);
    border-radius: 4px;
}

.lv2-page-line:nth-child(1) { width: 100%; }
.lv2-page-line:nth-child(2) { width: 85%; }
.lv2-page-line:nth-child(3) { width: 70%; }
.lv2-page-line:nth-child(4) { width: 90%; }

/* ============================================
   AVANT / APRÈS - Comparaison
   ============================================ */
.lv2-compare {
    padding: var(--lv2-section-padding) 0;
    background: linear-gradient(180deg, var(--lv2-white) 0%, var(--lv2-gray-100) 100%);
}

.lv2-compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}

.lv2-compare-card {
    padding: 48px;
    border-radius: 20px;
    position: relative;
}

.lv2-compare-before {
    background: var(--lv2-gray-100);
    border: 1px solid var(--lv2-gray-200);
}

.lv2-compare-after {
    background: var(--lv2-black);
    color: var(--lv2-white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.lv2-compare-header {
    margin-bottom: 32px;
}

.lv2-compare-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lv2-compare-before .lv2-compare-label {
    color: var(--lv2-gray-600);
}

.lv2-compare-after .lv2-compare-label {
    color: var(--lv2-accent-light);
}

.lv2-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lv2-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.15);
    font-size: 0.95rem;
    line-height: 1.5;
}

.lv2-compare-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lv2-compare-before .lv2-compare-list i {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 3px;
}

.lv2-compare-after .lv2-compare-list i {
    color: #22c55e;
    font-size: 0.9rem;
    margin-top: 3px;
}

.lv2-compare-list strong {
    color: inherit;
}

.lv2-compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lv2-compare-arrow {
    width: 56px;
    height: 56px;
    background: var(--lv2-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lv2-white);
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .lv2-compare-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .lv2-compare-divider {
        transform: rotate(90deg);
    }
    
    .lv2-compare-card {
        padding: 32px;
    }
}

/* ============================================
   TARGETS / FOR WHO
   ============================================ */
.lv2-targets {
    padding: var(--lv2-section-padding) 0;
}

.lv2-targets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lv2-target-card {
    padding: 40px 32px;
    background: var(--lv2-white);
    border: 1px solid var(--lv2-gray-200);
    border-radius: 20px;
    text-align: center;
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-target-card:hover {
    background: var(--lv2-black);
    border-color: var(--lv2-black);
    color: var(--lv2-white);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.lv2-target-icon {
    width: 56px;
    height: 56px;
    background: var(--lv2-gray-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--lv2-gray-600);
    margin: 0 auto 24px;
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-target-card:hover .lv2-target-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--lv2-white);
}

.lv2-target-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.lv2-target-card:hover .lv2-target-title {
    color: var(--lv2-white);
}

.lv2-target-desc {
    font-size: 0.85rem;
    color: var(--lv2-gray-600);
    margin: 0;
    line-height: 1.6;
}

.lv2-target-card:hover .lv2-target-desc {
    color: var(--lv2-gray-400);
}

/* ============================================
   PRICING
   ============================================ */
.lv2-pricing {
    padding: 60px 0;
    background: var(--lv2-gray-50);
}

.lv2-pricing-card {
    max-width: 780px;
    margin: 0 auto;
    background: var(--lv2-white);
    border: 1px solid var(--lv2-gray-200);
    border-radius: 20px;
    padding: 40px 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.06);
}

.lv2-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lv2-pricing-left {
    text-align: center;
}

.lv2-pricing-right {
    border-left: 1px solid var(--lv2-gray-200);
    padding-left: 48px;
}

.lv2-pricing-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #059669;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.lv2-pricing-free-badge i {
    font-size: 0.8rem;
}

.lv2-pricing-note {
    font-size: 0.8rem;
    color: var(--lv2-gray-500);
    margin: 12px 0 0;
}

.lv2-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.lv2-price-value {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--lv2-black);
    letter-spacing: -3px;
    line-height: 1;
}

.lv2-price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lv2-gray-600);
}

.lv2-price-unit {
    font-size: 0.9rem;
    color: var(--lv2-gray-600);
    margin-bottom: 20px;
}

.lv2-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.lv2-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--lv2-gray-800);
}

.lv2-pricing-features li:last-child {
    border-bottom: none;
}

.lv2-pricing-features i {
    color: var(--lv2-accent);
    font-size: 1rem;
}

/* ============================================
   DEMO VIDEO PLACEHOLDER
   ============================================ */
.lv2-demo {
    padding: var(--lv2-section-padding) 0;
}

.lv2-demo-wrapper {
    position: relative;
    background: var(--lv2-black);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-demo-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.lv2-demo-play {
    width: 100px;
    height: 100px;
    background: var(--lv2-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--lv2-black);
    transition: all var(--lv2-duration) var(--lv2-ease);
}

.lv2-demo-wrapper:hover .lv2-demo-play {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lv2-demo-text {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--lv2-white);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   FINAL CTA
   ============================================ */
.lv2-cta {
    padding: var(--lv2-section-padding) 0;
    background: var(--lv2-black);
    text-align: center;
}

.lv2-cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.lv2-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lv2-white);
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin: 0 0 24px;
}

.lv2-cta-subtitle {
    font-size: 1.15rem;
    color: var(--lv2-gray-400);
    margin: 0 0 40px;
    line-height: 1.7;
}

.lv2-btn-white {
    background: var(--lv2-white);
    color: var(--lv2-black);
}

.lv2-btn-white:hover {
    background: var(--lv2-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.lv2-footer {
    padding: 48px 0;
    background: var(--lv2-black);
    border-top: 1px solid var(--lv2-gray-800);
}

.lv2-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lv2-footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lv2-white);
    text-transform: uppercase;
}

.lv2-footer-logo span { color: #c8a86e; }

.lv2-footer-links {
    display: flex;
    gap: 32px;
}

.lv2-footer-link {
    color: var(--lv2-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--lv2-duration) var(--lv2-ease);
}

.lv2-footer-link:hover {
    color: var(--lv2-white);
}

.lv2-footer-copy {
    color: var(--lv2-gray-600);
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --lv2-section-padding: 100px;
    }
    
    .lv2-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .lv2-hero-visual {
        order: -1;
    }
    
    .lv2-value-grid {
        grid-template-columns: 1fr;
    }
    
    .lv2-preview-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .lv2-targets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lv2-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .lv2-pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .lv2-pricing-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--lv2-gray-200);
        padding-top: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --lv2-section-padding: 80px;
    }
    
    .lv2-container {
        padding: 0 24px;
    }
    
    .lv2-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .lv2-hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .lv2-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .lv2-hero-actions {
        flex-direction: column;
    }
    
    .lv2-hero-proof-bar-inner {
        flex-wrap: wrap;
        gap: 16px 32px;
        padding: 16px 24px;
        justify-content: center;
    }
    
    .lv2-section-title {
        font-size: 2rem;
    }
    
    .lv2-targets-grid {
        grid-template-columns: 1fr;
    }
    
    .lv2-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .lv2-stat-value {
        font-size: 2.5rem;
    }
    
    .lv2-float-card {
        display: none;
    }
    
    .lv2-preview-pages {
        flex-direction: column;
        gap: 16px;
    }
    
    .lv2-preview-page {
        width: 100%;
        transform: none;
        margin-left: 0;
    }
    
    .lv2-preview-page:nth-child(2),
    .lv2-preview-page:nth-child(3) {
        display: none;
    }
    
    .lv2-pricing-card {
        padding: 32px 24px;
    }
    
    .lv2-cta-title {
        font-size: 2rem;
    }
    
    .lv2-footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .lv2-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .lv2-header-link {
        display: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes lv2-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lv2-animate {
    animation: lv2-fadeIn 0.8s var(--lv2-ease) forwards;
    opacity: 0;
}

.lv2-animate-delay-1 { animation-delay: 0.1s; }
.lv2-animate-delay-2 { animation-delay: 0.2s; }
.lv2-animate-delay-3 { animation-delay: 0.3s; }
.lv2-animate-delay-4 { animation-delay: 0.4s; }
