/* =========================================
   BOODZILLA PROMPTS - LANDING ENHANCED CSS V2
   Diseño moderno inspirado en las capturas
   ========================================= */

/* Reset y Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dark-bg: #1a1d23;
    --darker-bg: #151720;
    --card-bg: #242730;
    --text-primary: #ffffff;
    --text-secondary: #a8b3cf;
    --accent-blue: #5865f2;
    --accent-purple: #7c3aed;
    --success-green: #10b981;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.4);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   HEADER STYLING
   ========================================= */
.pinterest-header {
    background: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 28px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-section {
    flex: 1;
    max-width: 500px;
}

.search-bar {
    position: relative;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}

.search-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 16px;
    padding: 16px 0;
    width: 100%;
}

.search-bar input::placeholder {
    color: var(--text-secondary);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-price-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.nav-btn:hover {
    background: var(--card-bg);
    border-color: var(--accent-blue);
}

.nav-btn.cta-btn {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.nav-btn.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 80px 24px 120px;
    text-align: center;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Pricing Card */
.hero-pricing {
    margin: 48px 0;
}

.pricing-card-hero {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-label {
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 24px 0 8px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-primary);
}

.currency-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.hero-cta-button {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.pricing-features-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-quick {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.check-icon {
    width: 16px;
    height: 16px;
    fill: var(--success-green);
    flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

/* =========================================
   PRODUCT SHOWCASE SECTION
   ========================================= */
.product-showcase-section {
    padding: 80px 24px;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.showcase-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.showcase-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.showcase-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Gallery Layout */
.showcase-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.showcase-image-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    group: hover;
    cursor: pointer;
    transition: all 0.4s ease;
}

.showcase-image-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.main-card {
    min-height: 500px;
}

.showcase-images-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.showcase-images-grid .showcase-image-card {
    min-height: 238px;
}

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

.showcase-image-card:hover img {
    transform: scale(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-image-card:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.overlay-content p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.4;
}

/* Features Highlights */
.showcase-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-2px);
    border-color: var(--accent-blue);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-info h4 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Showcase CTA */
.showcase-cta {
    text-align: center;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.showcase-cta-button {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    margin-bottom: 16px;
}

.showcase-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.showcase-cta-note {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* =========================================
   MOBILE-OPTIMIZED CONVERSION SECTIONS
   ========================================= */

/* Ultra-Simplified Mobile Header */
.mobile-conversion-header {
    background: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.mobile-header-container {
    max-width: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-logo .logo-icon {
    font-size: 24px;
}

.mobile-logo .logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-price {
    background: var(--primary-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.mobile-cta-btn {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Mobile-Optimized Hero */
.mobile-optimized-hero {
    background: var(--darker-bg);
    padding: 20px 16px 40px;
    min-height: auto;
}

.mobile-hero-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Image First */
.hero-image-first {
    width: 100%;
    order: 1;
}

.hero-main-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 20px;
}

.hero-main-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.digital-pulse-indicator {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Content Immediately After Image */
.hero-content-mobile {
    order: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto;
    width: fit-content;
}

.mobile-main-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

.highlight-number {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.mobile-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Price Box */
.mobile-price-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin: 8px 0;
}

.price-header {
    margin-bottom: 16px;
}

.price-label {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.price-main-mobile {
    text-align: center;
    margin-bottom: 20px;
}

.was-price {
    display: block;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 8px;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 12px 0;
}

.current-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.current-price .price-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.current-price .currency-code {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-note {
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 500;
}

/* Mobile CTA */
.mobile-main-cta {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 18px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.mobile-main-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-text {
    font-size: 16px;
}

.cta-sub {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

/* Mobile Benefits */
.mobile-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}

.benefit {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

/* Mobile Explanation */
.mobile-explanation {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.mobile-explanation p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Desktop Override */
@media (min-width: 768px) {
    .mobile-conversion-header {
        display: none;
    }
    
    .mobile-optimized-hero {
        display: none;
    }
}

/* Hide desktop version on mobile */
@media (max-width: 767px) {
    .conversion-header {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
}

/* =========================================
   DIGITAL ACCESS CONVERSION SECTIONS (Existing)
   ========================================= */

/* 1. Digital Access Hero Section */
.digital-access-hero {
    background: var(--darker-bg);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.digital-access-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.digital-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-pricing-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    margin: 16px 0;
}

.pricing-header-small {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-tag {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.price-display {
    text-align: center;
    margin-bottom: 24px;
}

.price-before {
    display: block;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 8px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 12px 0;
}

.price-main .currency {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-main .price-big {
    font-size: 80px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-main .currency-suffix {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-note {
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 500;
}

.hero-main-cta {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 20px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.hero-main-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-main-cta small {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.benefit-icon {
    color: var(--success-green);
    font-weight: bold;
}

.hero-right {
    position: relative;
}

.hero-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Hero Visual Tangible Extensions */
.hero-visual-tangible {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 24px;
}

.hero-visual-tangible img {
    width: 100%;
    height: auto;
    display: block;
}

.digital-indicator {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.digital-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.knowledge-representation {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* Knowledge Tangible Demo */
.knowledge-tangible-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.tangible-representation {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.knowledge-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.knowledge-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.knowledge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 24px 24px;
}

.knowledge-stats {
    display: flex;
    gap: 32px;
}

.knowledge-stat {
    color: white;
    text-align: center;
}

.knowledge-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.knowledge-stat .stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.representation-note {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.representation-note h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.representation-note p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.digital-advantages h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.advantage-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    gap: 16px;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.advantage-info h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.advantage-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Process Comparison */
.process-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.process-side h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.process-side.physical h4 {
    color: var(--text-secondary);
}

.process-side.digital h4 {
    color: var(--text-primary);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step-old {
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 14px;
}

.process-step-new {
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: var(--success-green);
    font-size: 14px;
}

.vs-indicator {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue);
    background: var(--darker-bg);
    padding: 16px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

/* Credibility Section */
.credibility-section {
    background: var(--dark-bg);
    padding: 80px 24px;
    border-top: 1px solid var(--border-color);
}

.credibility-container {
    max-width: 1400px;
    margin: 0 auto;
}

.credibility-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.credibility-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.credibility-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.quality-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.credibility-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.credibility-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.credibility-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.credibility-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.credibility-metric {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.metric-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.expertise-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertise-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.point-content {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.point-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* 2. Value Demo Section */
.value-demo-section {
    background: var(--dark-bg);
    padding: 80px 24px;
    border-top: 1px solid var(--border-color);
}

.demo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.demo-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.demo-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.demo-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.demo-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.demo-process {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.process-step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
}

.step-visual {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copy-demo {
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.copy-button-demo {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-success {
    color: var(--success-green);
    font-weight: 600;
    opacity: 0;
    animation: fadeInSuccess 2s ease-in-out infinite;
}

@keyframes fadeInSuccess {
    0%, 50% { opacity: 0; }
    25% { opacity: 1; }
    75%, 100% { opacity: 0; }
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.step-info h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-info p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.process-arrow {
    font-size: 32px;
    color: var(--accent-blue);
    font-weight: bold;
}

/* 3. Library Showcase Section */
.library-showcase-section {
    background: var(--darker-bg);
    padding: 80px 24px;
    border-top: 1px solid var(--border-color);
}

.library-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.library-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.library-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.library-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.library-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.library-stat {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.library-stat.featured {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.library-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.library-stat.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.library-stat .stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.library-stat .stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.library-stat .stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.value-comparison-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-comparison-box h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

.comparison-option {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.comparison-option.highlight {
    background: var(--primary-gradient);
    color: white;
    border: none;
    transform: scale(1.05);
}

.option-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.9;
}

.option-price {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.option-calc {
    font-size: 14px;
    margin-bottom: 12px;
}

.savings {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-green);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
}

.comparison-vs {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue);
}

.library-cta-container {
    margin-top: 40px;
}

.library-cta {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    margin-bottom: 16px;
}

.library-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.library-cta-note {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Final Conversion Section */
.final-conversion-section {
    background: var(--darker-bg);
    padding: 80px 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.final-container {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-indicator {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.final-container h2 {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-container p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

.final-offer {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 32px;
}

.offer-breakdown {
    margin-bottom: 32px;
}

.offer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.offer-line:last-of-type {
    border-bottom: none;
}

.offer-value {
    font-weight: 600;
    color: var(--text-primary);
}

.offer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 2px solid var(--border-color);
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
}

.total-normal {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.offer-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--border-radius);
    margin-top: 16px;
    font-size: 24px;
    font-weight: 700;
}

.final-mega-cta {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 24px 48px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 24px;
}

.final-mega-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.mega-cta-main {
    font-size: 20px;
}

.mega-cta-sub {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 12px;
}

.trust-icon {
    font-size: 16px;
}

/* Updated Lock Modal for Digital Access */
.lock-icon-big {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.lock-offer {
    margin: 24px 0;
}

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

.lock-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.lock-price-large {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.lock-currency-small {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.lock-includes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.lock-include {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: left;
}

.lock-cta {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.lock-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
.filter-container {
    background: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 73px;
    z-index: 999;
}

.filter-pills {
    display: flex;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-pills::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* =========================================
   LANDING INFO
   ========================================= */
.landing-info {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px auto 32px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-left: 24px;
    margin-right: 24px;
}

.info-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
}

.highlight {
    color: var(--accent-blue);
    font-weight: 600;
}

/* =========================================
   PINTEREST GRID
   ========================================= */
.pinterest-main {
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.pinterest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* Pinterest Card */
.pinterest-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
}

.pinterest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pinterest-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.pinterest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pinterest-card:hover .pinterest-card-image img {
    transform: scale(1.05);
}

.pinterest-card-content {
    padding: 16px;
}

.pinterest-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pinterest-card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Locked Cards */
.pinterest-card.locked {
    position: relative;
}

.pinterest-card.locked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1;
    border-radius: var(--border-radius);
}

.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.lock-icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.lock-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.lock-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section-enhanced {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin: 64px 24px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.cta-container-enhanced {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
}

.cta-content-left {
    padding: 48px;
}

.cta-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 24px;
}

.cta-title-enhanced {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-description-enhanced {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text strong {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.feature-text span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pricing Box */
.cta-content-right {
    background: var(--darker-bg);
    padding: 48px;
    height: 100%;
    display: flex;
    align-items: center;
}

.pricing-box-cta {
    width: 100%;
    text-align: center;
}

.pricing-box-header {
    margin-bottom: 24px;
}

.pricing-box-label {
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-box-amount {
    margin-bottom: 32px;
}

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

.price-symbol {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-note {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-box-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-box-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-box-features svg {
    width: 16px;
    height: 16px;
    fill: var(--success-green);
    flex-shrink: 0;
}

.cta-button-pricing {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    width: 100%;
    margin-bottom: 20px;
}

.cta-button-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.pricing-box-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 12px;
}

.shield-icon {
    width: 16px;
    height: 16px;
    fill: var(--success-green);
}

/* =========================================
   SOCIAL PROOF
   ========================================= */
.social-proof-section {
    padding: 64px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-proof-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   LOCK MODAL
   ========================================= */
.lock-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none; /* Por defecto oculto */
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Reducido de 10000 */
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lock-modal.show {
    display: flex;
    opacity: 1;
}

.lock-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.lock-modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    max-width: 500px;
    width: 90vw;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lock-modal.show .lock-modal-content {
    transform: scale(1);
}

.lock-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.lock-close-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.lock-icon-large {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.lock-modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.lock-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.lock-pricing {
    background: var(--darker-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.lock-price-tag {
    text-align: center;
}

.lock-price-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

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

.lock-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.lock-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
}

.lock-currency-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.lock-price-note {
    color: var(--text-secondary);
    font-size: 12px;
}

.lock-features {
    margin-bottom: 32px;
}

.lock-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
    text-align: left;
}

.check-icon {
    color: var(--success-green);
    font-weight: bold;
}

.unlock-btn-large {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.unlock-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* =========================================
   TOAST NOTIFICATIONS
   ========================================= */
.pinterest-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .cta-container-enhanced {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cta-content-right {
        padding: 48px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .pricing-card-hero {
        padding: 32px;
    }
    
    /* Product Hero responsive */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* En tablet, imagen primero también */
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    /* Image Creation Demo responsive */
    .image-creation-demo {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .demo-arrow {
        transform: rotate(90deg);
        margin: 16px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .value-title {
        font-size: 42px;
    }
    
    .final-cta-container h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .search-section {
        order: 3;
        max-width: 100%;
    }
    
    .header-nav {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        padding: 48px 16px 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .pinterest-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .pinterest-main {
        padding: 0 16px;
    }
    
    .cta-section-enhanced {
        margin: 48px 16px;
    }
    
    .cta-content-left {
        padding: 32px;
    }
    
    .cta-title-enhanced {
        font-size: 28px;
    }
    
    .cta-features-grid {
        grid-template-columns: 1fr;
    }
    
    .price-number {
        font-size: 56px;
    }
    
    .pricing-card-hero {
        padding: 24px;
    }
    
    .lock-modal-content {
        padding: 32px 24px;
    }
    
    /* Showcase mobile */
    .product-showcase-section {
        padding: 48px 16px;
    }
    
    .showcase-images-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-title {
        font-size: 28px;
    }
    
    .showcase-subtitle {
        font-size: 16px;
    }
    
    .feature-highlight {
        padding: 20px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .showcase-cta {
        padding: 24px;
    }
    
    .showcase-cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* New sections mobile */
    .product-hero-section {
        padding: 40px 16px;
    }
    
    .product-hero-title {
        font-size: 32px;
    }
    
    .product-hero-subtitle {
        font-size: 16px;
    }
    
    .product-hero-pricing {
        padding: 24px;
    }
    
    .price-current .price-number {
        font-size: 56px;
    }
    
    .product-hero-cta {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .image-creation-section {
        padding: 48px 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .demo-step {
        padding: 24px;
    }
    
    .demo-step-image {
        height: 160px;
    }
    
    .value-proposition-section {
        padding: 48px 16px;
    }
    
    .value-title {
        font-size: 32px;
    }
    
    .value-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-stat-card.featured {
        transform: none;
    }
    
    .value-comparison {
        padding: 24px;
        margin-left: 16px;
        margin-right: 16px;
    }
    
    .comparison-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .value-cta-button {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .preview-section {
        padding: 48px 16px;
    }
    
    .preview-header h2 {
        font-size: 28px;
    }
    
    .preview-upgrade-prompt {
        padding: 32px 24px;
        margin-left: 16px;
        margin-right: 16px;
    }
    
    .final-cta-section {
        padding: 48px 16px;
    }
    
    .final-cta-container h2 {
        font-size: 28px;
    }
    
    .final-offer-box {
        padding: 24px;
    }
    
    .offer-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .final-cta-button {
        padding: 18px 24px;
    }
    
    .cta-main {
        font-size: 18px;
    }
    
    .security-badges {
        gap: 16px;
    }
    
    .security-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .lock-price-big {
        font-size: 48px;
    }
    
    /* Tangible sections mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* CRUCIAL: Cambiar orden para que imagen aparezca PRIMERO en móvil */
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-pricing-box {
        padding: 24px;
    }
    
    .price-main .price-big {
        font-size: 64px;
    }
    
    .hero-main-cta {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .knowledge-representation {
        padding: 16px;
        font-size: 13px;
    }
    
    .knowledge-tangible-demo {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .advantage-item {
        padding: 20px;
        gap: 12px;
    }
    
    .advantage-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .process-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    
    .vs-indicator {
        justify-self: center;
        order: 2;
    }
    
    .process-side.digital {
        order: 3;
    }
    
    .credibility-section {
        padding: 48px 16px;
    }
    
    .credibility-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .credibility-title {
        font-size: 28px;
    }
    
    .credibility-subtitle {
        font-size: 16px;
    }
    
    .credibility-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credibility-metric {
        padding: 20px;
    }
    
    .metric-number {
        font-size: 36px;
    }
    
    .expertise-points {
        gap: 16px;
    }
    
    .expertise-point {
        text-align: left;
    }
    
    .point-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .point-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pinterest-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =========================================
   LOADING STATES
   ========================================= */
.pinterest-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px;
}

.pinterest-spinner {
    display: flex;
    gap: 4px;
}

.pinterest-spinner div {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: bounce 1.4s ease-in-out infinite both;
}

.pinterest-spinner div:nth-child(1) {
    animation-delay: -0.32s;
}

.pinterest-spinner div:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* =========================================
   SCROLLBAR STYLING
   ========================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--card-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* =========================================
   BOTTOM NEWSLETTER BAR
   ========================================= */
.bottom-newsletter-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    animation: slideUp 0.5s ease 2s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px 12px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-icon {
    font-size: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.newsletter-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: white;
}

.newsletter-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    color: rgba(255,255,255,0.8);
}

.newsletter-right {
    flex: 1;
    max-width: 400px;
}

.newsletter-form {
    width: 100%;
}

.form-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    background: rgba(255,255,255,0.9);
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-submit {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: #4ade80;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: #22c55e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.4);
}

.newsletter-message {
    font-size: 12px;
    text-align: center;
    margin-top: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    display: none;
}

.newsletter-message.success {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #dcfce7;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fecaca;
}

.close-newsletter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-newsletter:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Minimize/Expand Button */
.minimize-newsletter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.minimize-newsletter:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Minimized State */
.bottom-newsletter-bar.minimized {
    transform: translateY(calc(100% - 50px));
}

.bottom-newsletter-bar.minimized .newsletter-content {
    padding: 8px 0;
}

.bottom-newsletter-bar.minimized .newsletter-left {
    opacity: 0.7;
    transform: scale(0.8);
}

.bottom-newsletter-bar.minimized .newsletter-right {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.bottom-newsletter-bar.minimized .privacy-text-bottom {
    opacity: 0;
    transform: translateY(10px);
}

/* Expanded State Animation */
.bottom-newsletter-bar:not(.minimized) .newsletter-right {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.1s;
}

.bottom-newsletter-bar:not(.minimized) .privacy-text-bottom {
    opacity: 0.7;
    transform: translateY(0);
    transition: all 0.4s ease 0.2s;
}

/* Icon Rotation */
.minimize-newsletter svg {
    transition: transform 0.3s ease;
}

.bottom-newsletter-bar.minimized .minimize-newsletter svg {
    transform: rotate(180deg);
}

.privacy-text-bottom {
    font-size: 10px;
    text-align: center;
    opacity: 0.7;
    margin-top: 8px;
    color: rgba(255,255,255,0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .newsletter-left {
        justify-content: center;
    }
    
    .newsletter-right {
        width: 100%;
        max-width: 300px;
    }
    
    .form-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-container {
        padding: 12px 16px 8px;
    }
    
    .minimize-newsletter {
        top: 4px;
        right: 4px;
    }
    
    /* Mobile Minimized State */
    .bottom-newsletter-bar.minimized {
        transform: translateY(calc(100% - 45px));
    }
    
    .bottom-newsletter-bar.minimized .newsletter-content {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 6px 0;
    }
    
    .bottom-newsletter-bar.minimized .newsletter-left {
        transform: scale(0.7);
    }
    
    .bottom-newsletter-bar.minimized .newsletter-text p {
        display: none;
    }
}

/* Hidden state */
.bottom-newsletter-bar.hidden {
    transform: translateY(100%);
}

/* =========================================
   UTILITIES (Existing)
   ========================================= */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}