/* ===== SECTION NUMBERING (TEMPORARY) ===== */
body {
    counter-reset: section-counter;
}

section {
    position: relative;
}

section::before {
    content: counter(section-counter);
    counter-increment: section-counter;
    position: absolute;
    left: 10px;
    top: 10px;
    background: #FF0080;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(255, 0, 128, 0.3);
}

/* ===== STICKY TOP BAR ===== */
.sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    gap: 20px;
}

.discount-badge-sticky {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.countdown-sticky {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.countdown-text-sticky {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.countdown-timer-sticky {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-unit-sticky {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.3);
    color: white;
    padding: 4px 6px;
    border-radius: 6px;
    min-width: 35px;
}

.time-number-sticky {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.time-label-sticky {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.time-separator-sticky {
    font-size: 14px;
    font-weight: 700;
    margin: 0 2px;
}

.cta-button-sticky {
    background: white;
    color: #dc2626;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive design for sticky bar */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
    }
    
    .countdown-sticky {
        gap: 8px;
    }
    
    .countdown-timer-sticky {
        gap: 6px;
    }
    
    .time-unit-sticky {
        min-width: 30px;
        padding: 3px 4px;
    }
    
    .time-number-sticky {
        font-size: 12px;
    }
    
    .discount-badge-sticky,
    .countdown-text-sticky,
    .cta-button-sticky {
        font-size: 11px;
    }
}



/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-red: #da2b35;
    --dark-red: #b71e27;
    --background: #0f0f0f;
    --surface: #171717;
    --surface-light: #18181b;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    --success: #22c55e;
    --warning: #f59e0b;
    --rating-gold: #ffd700;
    
    /* Typography */
    --font-primary: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 60px;
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

/* ===== BUTTONS ===== */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== NAVIGATION ===== */
.navbar-container {
    position: relative;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: var(--z-fixed);
    padding: var(--space-md) 0;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.brand-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.brand-text {
    width: auto;
    height: 24px;
    flex-shrink: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.login-button,
.search-button {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-button:hover,
.search-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-light);
}

.search-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-primary);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.search-button:hover .search-icon {
    opacity: 1;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding-top: 60px;
}

/* ===== HERO SECTION ===== */
.hero-banner {
    padding: var(--space-lg) 0 var(--space-2xl);
    background: var(--background);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
}

.hero-text {
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    color: var(--text-primary);
}

.title-highlight {
    color: var(--primary-red);
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-xl);
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Benefits Row */
.benefits-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50%;
    font-size: 12px;
    color: var(--text-primary);
    font-weight: bold;
}

/* Hero CTA Button */
.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--primary-red);
    color: var(--text-primary);
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: var(--space-xl);
    box-shadow: 0 4px 12px rgba(218, 43, 53, 0.3);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 43, 53, 0.4);
    background: var(--dark-red);
}

.play-icon {
    font-size: 0.875rem;
}

/* Customer Reviews */
.customer-reviews {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.customer-avatars {
    display: flex;
    gap: 0;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--background);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.star-rating span {
    color: #ffd700;
}

.review-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.review-stars {
    color: var(--rating-gold);
    font-size: 0.875rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Library Preview */
.library-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.header-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.library-icon {
    font-size: 1.25rem;
}

.library-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
}

.product-tile {
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-tile:hover {
    transform: scale(1.05);
}

.product-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-row {
    opacity: 0.8;
}

/* ===== MEDIA MENTIONS ===== */
.media-mentions {
    padding: var(--space-lg) 0;
    background: var(--surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.media-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.media-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(0) invert(1);
    height: 32px;
    display: flex;
    align-items: center;
}

.media-logo:hover {
    opacity: 0.8;
}

.media-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* ===== SELLING FEATURES ===== */
.selling-features {
    padding: var(--space-3xl) 0;
    background: var(--background);
}

.selling-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.selling-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
}

.selling-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    color: var(--text-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.selling-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Dashboard Preview */
.dashboard-preview {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-3xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    min-height: 300px;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.3), transparent);
    z-index: 0;
}

.dashboard-header {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.dashboard-tabs {
    display: flex;
    gap: var(--space-lg);
}

.tab {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab.active {
    color: var(--text-primary);
    position: relative;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-red);
    border-radius: 1px;
}

.dashboard-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: var(--space-2xl);
    height: 200px;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: start;
    transform: perspective(1000px) rotateY(-5deg);
}

.product-card-small {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    backdrop-filter: blur(15px);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
}

.left-card {
    transform: translateZ(-20px) rotateY(15deg);
}

.center-card {
    transform: translateZ(10px);
}

.right-card {
    transform: translateZ(-10px) rotateY(-10deg);
}

.card-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
}

.profit-widget {
    justify-self: end;
    align-self: center;
}

.profit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.profit-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profit-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.profit-chart {
    height: 60px;
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

/* Feature Icons Grid */
.feature-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.feature-icon-item {
    text-align: center;
    padding: var(--space-lg);
}

.feature-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature-icon-item:hover .feature-icon-circle {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.feature-icon-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.feature-icon-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ===== FEATURES OVERVIEW ===== */
.features-overview {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.features-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-box {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 43, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CTA SECTIONS ===== */
.main-cta {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin: var(--space-3xl) auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 43, 53, 0.1), transparent);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-xl);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    color: var(--text-muted);
}

.benefits-list {
    display: grid;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-weight: 500;
    color: var(--text-primary);
}

.purchase-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-primary);
    border: none;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-xl);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    margin-bottom: var(--space-lg);
}

.purchase-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #e53e47, var(--primary-red));
}

.guarantee-text {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.final-cta {
    padding: var(--space-3xl) 0;
    background: var(--background);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    color: var(--text-muted);
}

.final-guarantee {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: var(--space-md) 0 0 0;
}

/* ============================================================================
   Content Creation Section
   ============================================================================ */

.content-creation {
    background: #f8f9fa;
    padding: 80px 0;
}

.content-creation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-creation-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-creation-badge {
    display: inline-block;
    background: #333;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.content-creation-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin: 0 0 20px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.content-creation-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.content-flow {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.flow-image-container {
    max-width: 800px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.flow-image {
    width: 100%;
    height: auto;
    display: block;
}

.content-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    margin: 50px 0;
}

.content-feature-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.content-feature-card:first-child {
    border-top-left-radius: 11px;
    border-bottom-left-radius: 11px;
}

.content-feature-card:last-child {
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
}

.content-feature-icon {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #333;
}

.content-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.content-feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.content-creation-cta {
    text-align: center;
    margin-top: 40px;
}

.content-cta-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.content-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

.cta-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.content-cta-button:hover .cta-arrow {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-feature-card:first-child {
        border-top-left-radius: 11px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 11px;
    }
    
    .content-feature-card:nth-child(2) {
        border-top-right-radius: 11px;
        border-bottom-right-radius: 0;
    }
    
    .content-feature-card:nth-child(3) {
        border-bottom-left-radius: 11px;
        border-top-left-radius: 0;
    }
    
    .content-feature-card:last-child {
        border-bottom-right-radius: 11px;
        border-top-right-radius: 0;
    }
}

@media (max-width: 768px) {
    .content-creation-title {
        font-size: 36px;
    }
    
    .content-features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-feature-card:first-child {
        border-radius: 11px 11px 0 0;
    }
    
    .content-feature-card:nth-child(2),
    .content-feature-card:nth-child(3) {
        border-radius: 0;
    }
    
    .content-feature-card:last-child {
        border-radius: 0 0 11px 11px;
    }
}

/* ===== UTILITY CLASSES ===== */
.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;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-red);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 0 var(--space-md);
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-text {
        height: 20px;
    }
    
    .main-content {
        padding-top: 90px;
    }
    
    .hero-banner {
        padding: var(--space-2xl) 0;
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .benefits-row {
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }
    
    .benefit-item {
        font-size: 0.8rem;
    }
    
    .hero-cta-button {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }
    
    .library-preview {
        padding: var(--space-md);
        margin: 0 var(--space-sm);
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xs);
    }
    
    .customer-avatars {
        gap: 0;
    }
    
    .avatar {
        width: 32px;
        height: 32px;
        margin-left: -6px;
    }
    
    .media-mentions {
        padding: var(--space-xl) 0;
    }
    
    .media-container {
        padding: 0 var(--space-md);
    }
    
    .media-logos {
        gap: var(--space-lg);
    }
    
    .media-logo {
        height: 28px;
    }
    
    .selling-features {
        padding: var(--space-2xl) 0;
    }
    
    .selling-container {
        padding: 0 var(--space-md);
    }
    
    .dashboard-content {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .product-card-small {
        width: 100%;
        max-width: 200px;
    }
    
    .profit-card {
        width: 100%;
        max-width: 250px;
    }
    
    .feature-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .feature-icon-item {
        padding: var(--space-md);
    }
    
    .main-cta {
        margin: var(--space-2xl) var(--space-md);
        padding: var(--space-xl);
    }
    
    .purchase-button {
        padding: var(--space-md) var(--space-xl);
        font-size: 1.125rem;
        width: 100%;
        max-width: 320px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .features-container {
        padding: 0 var(--space-md);
    }
    
    .feature-box {
        padding: var(--space-lg);
    }
    
    .final-cta-content {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: var(--space-sm) 0;
    }
    
    .navbar {
        padding: 0 var(--space-sm);
    }
    
    .brand-logo {
        width: 36px;
        height: 36px;
    }
    
    .main-content {
        padding-top: 40px;
    }
    
    .hero-banner {
        padding: 10px 0;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        padding: 0 20px;
        width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 8px 20px;
        margin-bottom: 30px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        background: transparent;
        color: #CCCCCC;
        display: inline-block;
        font-weight: 400;
        letter-spacing: 0;
    }
    
    .hero-title {
        font-size: 48px !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        margin-bottom: 30px !important;
        color: white !important;
        text-align: center !important;
    }
    
    .hero-title .highlight {
        color: #dc2626 !important;
        display: block !important;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 15px;
        color: #CCCCCC;
        line-height: 1.5;
        text-align: center;
        font-weight: 400;
    }
    
    .benefits-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
        align-items: center;
    }
    
    .benefit-item {
        font-size: 16px;
        color: white;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: center;
        width: auto;
        font-weight: 400;
        justify-content: center;
    }
    
    .benefit-item::before {
        content: "✓";
        background: #dc2626;
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .hero-cta-button {
        background: #dc2626;
        color: white;
        border: none;
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        margin-bottom: 40px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        width: auto;
        min-width: 250px;
        justify-content: center;
    }
    
    .hero-cta-button::before {
        content: "→";
        font-size: 18px;
    }
    
    .hero-cta-button:hover {
        background: #b91c1c;
        transform: translateY(-2px);
    }
    
    .customer-reviews {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        justify-content: center;
    }
    
    .customer-avatars {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid white;
        margin-left: -8px;
        object-fit: cover;
    }
    
    .avatar:first-child {
        margin-left: 0;
    }
    
    .review-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }
    
    .star-rating {
        display: flex;
        gap: 2px;
        color: #FFC107;
        font-size: 16px;
        justify-content: center;
    }
    
    .review-text {
        font-size: 14px;
        color: white;
        font-weight: 400;
        line-height: 1.3;
    }
    
    .library-preview {
        padding: var(--space-sm);
        margin: 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .media-mentions {
        padding: var(--space-lg) 0;
    }
    
    .media-container {
        padding: 0 var(--space-sm);
    }
    
    .media-logos {
        gap: var(--space-md);
    }
    
    .media-logo {
        height: 24px;
    }
    
    .selling-features {
        padding: var(--space-xl) 0;
    }
    
    .selling-container {
        padding: 0 var(--space-sm);
    }
    
    .selling-badge {
        font-size: 0.75rem;
        padding: 4px var(--space-sm);
        margin-bottom: var(--space-md);
    }
    
    .selling-description {
        font-size: 0.9rem;
        margin-bottom: var(--space-xl);
    }
    
    .dashboard-preview {
        padding: var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .dashboard-content {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .product-cards {
        align-items: center;
    }
    
    .product-card-small {
        width: 100%;
        max-width: 180px;
    }
    
    .profit-card {
        width: 100%;
        max-width: 200px;
        padding: var(--space-md);
    }
    
    .profit-amount {
        font-size: 1.25rem;
    }
    
    .feature-icons-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-top: var(--space-xl);
    }
    
    .feature-icon-item {
        padding: var(--space-sm);
    }
    
    .feature-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .main-cta {
        margin: var(--space-xl) var(--space-sm);
        padding: var(--space-lg);
    }
    
    .purchase-button {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .feature-box {
        padding: var(--space-md);
    }
    
    .features-container,
    .final-cta-content {
        padding: 0 var(--space-sm);
    }
}

/* ===== REVENUE CALCULATOR ===== */
.revenue-calculator {
    padding: 80px 0;
    background: #f8f9fa;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.calculator-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.calculator-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.2;
}

.calculator-container p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.benefits-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.benefit-check {
    color: #dc2626;
    font-size: 12px;
}

.calculator-widget {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

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

.revenue-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.revenue-label {
    font-size: 14px;
    color: #888;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.revenue-amount {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.calculator-controls {
    display: grid;
    gap: 24px;
}

.control-group {
    text-align: left;
}

.control-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 400;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-slider,
.customers-slider {
    flex: 1;
    height: 4px;
    background: #444;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb,
.customers-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.price-slider::-moz-range-thumb,
.customers-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-value {
    font-size: 16px;
    color: white;
    font-weight: 600;
    min-width: 40px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.control-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: left;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.price-slider,
.customers-slider {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    outline: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb,
.customers-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.slider-value {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 60px;
    text-align: right;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: #ffffff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.testimonials-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: #1f2937;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 43, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 2px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.author-title {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.faq-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.faq-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
    color: var(--text-muted);
}

.faq-list {
    text-align: left;
}

.faq-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(218, 43, 53, 0.3);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
    background: var(--background);
    border-top: 1px solid var(--border-light);
    animation: slideDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: var(--space-3xl) 0;
    background: var(--background);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.social-proof-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.footer-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.footer-brand-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.footer-brand-text p {
    color: var(--text-muted);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: var(--space-xs);
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* ===== CUSTOMER TESTIMONIALS ===== */
.customer-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--primary-red);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.star-icon {
    font-size: 1rem;
}

.testimonials-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.highlight-red {
    color: #dc2626;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 455px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-video {
    position: sticky;
    top: var(--space-xl);
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 455px;
    height: auto;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--primary-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}

.video-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--space-lg);
}

.video-profile {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.profile-details h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.profile-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    height: 700px;
    align-content: stretch;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    margin-bottom: 8px;
}

.testimonial-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.company {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-text {
    color: #555;
    line-height: 1.4;
    margin-bottom: 8px;
    font-size: 13px;
    flex-grow: 1;
}

.text-preview {
    display: inline;
}

.text-full {
    display: none;
}

.read-more {
    background: none;
    border: none;
    color: #dc2626;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: #c41e3a;
}

/* Mobile responsiveness for testimonials */
@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .video-container {
        height: 250px;
    }
    
    .video-thumbnail {
        height: 250px;
    }
}

/* ===== FOOTER DISCLAIMER ===== */
.footer-disclaimer {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-align: center;
}

.disclaimer-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: var(--space-lg) 0 var(--space-md) 0;
    color: var(--text-primary);
    text-align: center;
}

.disclaimer-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: var(--text-muted);
    text-align: center;
}

.contact-info {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-red);
}

.contact-info p {
    margin-bottom: var(--space-xs);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }
    
    .footer-container {
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-md);
    }
    
    .footer-brand-text {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        justify-items: center;
    }
    
    .footer-column {
        text-align: center;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Disclaimer styling for mobile */
    .footer-disclaimer {
        margin-top: var(--space-lg) !important;
        padding: var(--space-md) !important;
    }
    
    .disclaimer-content h4 {
        font-size: 1rem !important;
    }
    
    .disclaimer-content h5 {
        font-size: 0.875rem !important;
        margin: var(--space-md) 0 var(--space-sm) 0 !important;
    }
    
    .disclaimer-content p {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        margin-bottom: var(--space-sm) !important;
    }
    
    .contact-info {
        margin-top: var(--space-md) !important;
        padding: var(--space-sm) !important;
    }
    
    .contact-info p {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-column {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-controls {
        gap: var(--space-lg);
    }
    
    .slider-container {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .slider-value {
        text-align: center;
    }
    
    /* Revenue calculator mobile */
    .revenue-calculator {
        padding: 60px 0;
    }
    
    .calculator-container h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .calculator-container p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .benefits-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .calculator-widget {
        padding: 24px;
    }
    
    .revenue-amount {
        font-size: 28px;
    }
    
    .slider-container {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .price-slider,
    .customers-slider {
        width: 100%;
    }
    
    .slider-value {
        align-self: flex-end;
    }
    
    /* Section 8 Testimonials Mobile Styles */
    .customer-testimonials {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-header h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-video {
        position: static;
    }
    
    .video-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 20px;
    }
    
    .testimonial-card {
        height: auto;
        min-height: 180px;
        padding: 16px;
    }
}

/* ===== WHAT YOU GET SECTION ===== */
.what-you-get {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.what-you-get-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.what-you-get-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
    color: var(--text-muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    text-align: left;
}

.benefit-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 43, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

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

/* ===== PROFIT POTENTIAL SECTION ===== */
.profit-potential {
    padding: var(--space-3xl) 0;
    background: #ffffff;
}

.profit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.profit-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: #1f2937;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.profit-scenario {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.profit-scenario.highlighted {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(218, 43, 53, 0.05) 0%, #ffffff 100%);
    transform: scale(1.05);
}

.scenario-header {
    margin-bottom: var(--space-lg);
}

.scenario-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.scenario-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
}

.scenario-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-details li {
    padding: var(--space-xs) 0;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.scenario-details li:last-child {
    border-bottom: none;
}

/* ===== PROBLEM SOLUTION SECTION ===== */
.problem-solution {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.problem-solution-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.problem-side,
.solution-side {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
}

.problem-side {
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.solution-side {
    background: rgba(40, 167, 69, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.problem-side h2,
.solution-side h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li,
.solution-list li {
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-lg);
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories {
    padding: var(--space-3xl) 0;
    background: var(--background);
}

.success-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.success-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-primary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.story-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: left;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 43, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

.story-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.author-result {
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 500;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.how-it-works-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.step-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 43, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

/* ===== COMPARISON SECTION ===== */
.comparison {
    padding: var(--space-3xl) 0;
    background: white;
    color: #333;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.comparison-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: #333;
}

.comparison-table {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #000000;
    color: white;
}

.comparison-header .comparison-item {
    color: white !important;
    background: transparent !important;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-item {
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    font-weight: 500;
    color: #333;
}

.comparison-item:nth-child(2) {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.comparison-item:nth-child(3) {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.comparison-item.highlighted {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    font-weight: 600;
}

/* Mobile comparison layout */
.comparison-mobile {
    display: none;
}

.comparison-mobile-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-mobile-header {
    background: #000000;
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.comparison-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-mobile-row:last-child {
    border-bottom: none;
}

.comparison-mobile-label {
    font-weight: 500;
    color: #333;
    flex: 1;
}

.comparison-mobile-value {
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.comparison-mobile-value.negative {
    color: #dc3545;
}

.comparison-mobile-value.positive {
    color: #28a745;
}

/* ===== NICHES COVERED SECTION ===== */
.niches-covered {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.niches-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.niches-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.niches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    text-align: left;
}

.niche-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.niche-card:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 43, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

.niche-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

/* ===== URGENCY SECTION ===== */
.urgency {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 3px solid #dc2626;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
}

.urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.urgency-container h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--space-3xl);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4); }
}

.urgency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.urgency-text {
    text-align: left;
}

.urgency-text h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.urgency-text p {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
}

.special-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffff00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.savings {
    font-size: 1.4rem;
    color: #00ff00;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.urgency-reasons h4 {
    margin: var(--space-lg) 0 var(--space-md);
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.urgency-reasons ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.urgency-reasons li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-lg);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.urgency-reasons li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.urgency-cta {
    text-align: center;
}

.purchase-button.urgent {
    background: linear-gradient(135deg, #ffff00 0%, #ff6b00 100%);
    color: #000;
    border: 3px solid #ffff00;
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.4);
    animation: urgentPulse 2s infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.purchase-button.urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.purchase-button.urgent:hover::before {
    left: 100%;
}

.purchase-button.urgent:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 0, 0.6);
}

@keyframes urgentPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 255, 0, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 255, 0, 0.6);
    }
}

.guarantee-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-top: var(--space-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== RISK REVERSAL SECTION ===== */
.risk-reversal {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.risk-reversal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.risk-reversal-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-primary);
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3xl);
    align-items: center;
    text-align: left;
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    text-align: center;
}

.guarantee-days {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.guarantee-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-details h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.guarantee-details p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.guarantee-point {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.point-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.125rem;
}



/* ===== OBJECTIONS SECTION ===== */
.objections {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

.objections-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.objections-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-primary);
    text-align: center;
}

.objection-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

.objection-item:hover {
    border-color: rgba(218, 43, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

.objection-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

/* ===== FINAL COMPARISON SECTION ===== */
.final-comparison {
    padding: var(--space-3xl) 0;
    background: var(--background);
}

.final-comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.final-comparison-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-primary);
}

.alternatives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.alternative-card {
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
}

.alternative-card.losing {
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alternative-card.winning {
    background: rgba(40, 167, 69, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alternative-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.alternative-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
    text-align: left;
}

.alternative-card li {
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-lg);
}

.alternative-card.losing li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.alternative-card.winning li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.alternative-result {
    font-weight: 600;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
}

.alternative-result.negative {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.alternative-result.positive {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .problem-solution-container,
    .urgency-content,
    .guarantee-content,
    .alternatives-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .comparison-table {
        display: none;
    }
    
    .comparison-mobile {
        display: block;
    }
    
    .guarantee-content {
        text-align: center;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .guarantee-badge {
        margin: 0 auto var(--space-lg) auto;
    }
    
    .guarantee-details {
        text-align: center;
    }
    
    .guarantee-details h3 {
        text-align: center;
    }
    
    .guarantee-details p {
        text-align: center;
    }
    
    .guarantee-points {
        align-items: center;
        justify-content: center;
    }
    
    .guarantee-point {
        justify-content: center;
    }
    
    .profit-scenario.highlighted {
        transform: none;
    }
}

@media (max-width: 480px) {
    .benefits-grid,
    .stories-grid,
    .steps-grid,
    .niches-grid {
        grid-template-columns: 1fr;
    }
    
    .profit-grid {
        grid-template-columns: 1fr;
    }
    
    .profit-scenario.highlighted {
        transform: none;
    }
}




.badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.feature-highlight {
    background: var(--primary-red);
    color: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    text-align: left;
}

.feature-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.feature-icons {
    display: flex;
    gap: var(--space-md);
    margin-left: auto;
}

.format-icon {
    font-size: 2rem;
}

.premium-products {
    padding: var(--space-3xl) 0;
    background: white;
    color: #333;
    text-align: center;
}

.premium-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.ebooks-section, .video-audio-section, .actionable-resources {
    padding: var(--space-3xl) 0;
}

.ebooks-section {
    background: #F5F5F5;
}

.video-audio-section {
    background: #F5F5F5;
}

.actionable-resources {
    background: #F5F5F5;
}

.ebooks-container, .video-audio-container, .resources-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.ebook-features, .video-features, .resource-features {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin: var(--space-2xl) 0;
    flex-wrap: wrap;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.check-icon {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.125rem;
}

.showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}








.simple-access {
    padding: 80px 0;
    background: #f8f9fa;
    color: #333;
}

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

.access-container h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.access-container .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.access-steps-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.access-card-dark {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.access-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-card-dark h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.access-card-dark p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.purchase-button-new {
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.purchase-button-new:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Old styles for backwards compatibility */
.access-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-3xl) 0;
}

.access-step {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.access-step:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 43, 53, 0.3);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Responsive design for access cards */
@media (max-width: 768px) {
    .access-steps-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .access-container h2 {
        font-size: 36px;
    }
    
    .access-card-dark {
        padding: 30px 20px;
    }
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 80px 0;
    background: white;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

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

.special-offer-section {
    margin-bottom: 30px;
}

.discount-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-container {
    margin-bottom: 20px;
}

.countdown-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #333;
    color: white;
    padding: 15px 10px;
    border-radius: 10px;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.time-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.time-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

.time-separator {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 5px;
}

.limited-offer-badge {
    background: #333;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
}

.step-divider {
    color: #ddd;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-card.single-option {
    max-width: 450px;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-card.single-option {
        max-width: 95vw !important;
        width: 100% !important;
    }
}

.pricing-card {
    padding: 40px 30px;
    position: relative;
}



.pricing-card.pro {
    background: #333;
    color: white;
}

.single-pricing-card {
    background: #333333;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.single-pricing-card .save-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #ff0000, #dc2626);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 2px solid white;
}

.single-pricing-card .card-header h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #ccc;
}

.single-pricing-card .pricing {
    margin-bottom: 10px;
}

.single-pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.single-pricing-card .period {
    font-size: 16px;
    color: #ccc;
    margin-left: 5px;
}

.single-pricing-card .original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.single-pricing-card .payment-note {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 25px;
}

.single-pricing-card .pricing-btn {
    width: 100%;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.single-pricing-card .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.single-pricing-card .secure-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 30px;
}

.single-pricing-card .stripe-logo {
    color: #635bff;
    font-weight: 600;
}

.single-pricing-card .features-list {
    text-align: left;
}

.single-pricing-card .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: white;
}

.single-pricing-card .check-icon {
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.single-pricing-card .tools-section {
    margin-top: 30px;
}

.single-pricing-card .tools-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.single-pricing-card .ai-icon {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    margin-left: auto;
}

.single-pricing-card .expand-icon {
    margin-left: auto;
    font-size: 18px;
    color: #ccc;
}

.save-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #ff0000, #dc2626);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: bounce 2s infinite;
    border: 2px solid white;
}

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

.card-header h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pricing {
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #666;
    margin-left: 5px;
}

.pricing-card.pro .period {
    color: #ccc;
}

.original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.payment-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.pricing-card.pro .payment-note {
    color: #ccc;
}

.pricing-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.pricing-btn.pro-btn {
    background: #dc2626;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.secure-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 30px;
}

.stripe-logo {
    color: #635bff;
    font-weight: 600;
}

.features-list {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.check-icon {
    background: #333;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card.pro .check-icon {
    background: #dc2626;
}

.pro-section, .tools-section {
    margin-top: 30px;
}

.pro-section h4, .tools-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.ai-icon {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    margin-left: auto;
}

.expand-icon {
    margin-left: auto;
    font-size: 18px;
    color: #ccc;
}

.renewal-note {
    margin-top: 30px;
    text-align: left;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.renewal-note p {
    margin-bottom: 5px;
}

.bottom-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.guarantee-icon {
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.payment-methods {
    text-align: center;
}

.payment-methods-img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

/* Responsive design for pricing */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.single-option {
        max-width: 100%;
    }
    
    .pricing-steps {
        flex-direction: column;
        gap: 5px;
    }
    
    .step-divider {
        display: none;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px 8px;
    }
    
    .time-number {
        font-size: 20px;
    }
    
    .time-separator {
        font-size: 20px;
    }
    
    .discount-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .countdown-text {
        font-size: 16px;
    }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */

/* Global responsive containers */
@media (max-width: 1200px) {
    .hero-container,
    .section-container,
    .pricing-container,
    .access-container,
    .dfy-container,
    .library-container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    /* Reset original top bar positioning */
    .sticky-top-bar {
        display: block !important;
        position: fixed;
        top: 0;
    }
    
    /* Hide discount badge on mobile */
    .discount-badge-sticky {
        display: none;
    }
    
    /* Mobile countdown layout fixes */
    .countdown-sticky {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .countdown-text-sticky {
        font-size: 14px;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .countdown-timer-sticky {
        display: flex;
        flex-direction: row;
        gap: 6px;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .time-unit-sticky {
        background: rgba(255, 255, 255, 0.2);
        padding: 10px 8px;
        border-radius: 6px;
        min-width: 50px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }
    
    .time-number-sticky {
        font-size: 18px;
        font-weight: 700;
        color: white;
        display: block;
        line-height: 1;
    }
    
    .time-label-sticky {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        margin-top: 2px;
        display: block;
    }
    
    .time-separator-sticky {
        font-size: 16px;
        color: white;
        font-weight: 700;
    }
    
    /* Global mobile adjustments */
    .hero-container,
    .section-container,
    .pricing-container,
    .access-container,
    .dfy-container,
    .library-container {
        padding: 0 20px;
    }
    
    /* Typography scaling */
    h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
    h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); }
    
    /* Hero section mobile */
    .hero {
        padding: 60px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .benefits-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .hero-cta-button {
        padding: 16px 24px;
        font-size: 16px;
        margin-bottom: 40px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Navigation mobile */
    .navbar {
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .nav-brand {
        gap: 10px;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-text {
        height: 20px;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .login-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* Done-for-you section mobile */
    .done-for-you {
        padding: 60px 0;
        text-align: center;
    }
    
    .done-for-you-container,
    .dfy-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }
    
    .dfy-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .dfy-complete-shortcut,
    .done-for-you-badge {
        display: inline-block;
        margin: 0 auto 20px auto;
        text-align: center;
    }
    
    .dfy-main-title,
    .done-for-you-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dfy-subtitle,
    .done-for-you-subtitle {
        text-align: center;
        margin: 0 auto 40px auto;
        padding: 0 20px;
    }
    
    .dfy-grid,
    .done-for-you-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .dfy-card {
        padding: 25px 20px;
        text-align: center;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .dfy-cta {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .dfy-cta-button {
        margin: 0 auto;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    
    .dfy-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .dfy-desc {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }
    
    .dfy-number {
        text-align: center;
        margin: 0 auto;
    }
    
    .dfy-image {
        margin: 0 auto;
        text-align: center;
    }
    
    .dfy-cta-button {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    /* Access section mobile */
    .access-steps-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .access-card-dark {
        padding: 25px 20px;
        text-align: center;
    }
    
    .access-card-dark h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .access-card-dark p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .purchase-button-new {
        padding: 16px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Pricing section mobile */
    .pricing-plans {
        padding: 60px 0;
        text-align: center;
    }
    
    .pricing-container {
        max-width: 100% !important;
        margin: 0 auto;
        padding: 0 5px !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100vw !important;
    }
    
    .pricing-header {
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .special-offer-section {
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }
    
    .discount-badge {
        font-size: 14px;
        padding: 10px 20px;
        margin: 0 auto 20px auto;
        display: inline-block;
        text-align: center;
    }
    
    .countdown-container {
        text-align: center;
        width: 100%;
    }
    
    .countdown-text {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .countdown-timer {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        gap: 2px;
        margin-bottom: 15px;
        flex-wrap: nowrap !important;
        padding: 6px;
        background: rgba(218, 43, 53, 0.1);
        border-radius: 12px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    .time-unit {
        width: 60px;
        padding: 6px 3px;
        background: white;
        border: 1px solid rgba(218, 43, 53, 0.2);
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
        display: inline-block;
        text-align: center;
    }
    
    .time-separator {
        font-size: 14px;
        color: var(--primary-red);
        font-weight: 700;
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
        margin: 0 1px;
    }
    
    .time-number {
        font-size: 18px;
        color: var(--primary-red);
        font-weight: 700;
        line-height: 1;
    }
    
    .time-label {
        font-size: 8px;
        color: var(--text-muted);
        margin-top: 2px;
        text-transform: uppercase;
        font-weight: 600;
    }
    
    .pricing-steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-bottom: 30px;
        font-size: 11px;
        color: var(--text-muted);
        flex-wrap: nowrap;
        padding: 0 10px;
    }
    
    .step {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .step-divider {
        width: 20px;
        height: 1px;
        background: var(--border-light);
        flex-shrink: 0;
    }
    
    .pricing-card.single-option {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .single-pricing-card {
        max-width: 90%;
        margin: 0 auto;
        padding: 25px 20px;
    }
    
    .pricing-card {
        padding: 40px 25px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 95vw;
        height: auto;
        min-height: auto;
        overflow: visible;
        font-size: 16px;
    }
    
    .card-header {
        text-align: center;
        width: 100%;
    }
    
    .price-container {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .features-list {
        text-align: left;
        width: 100%;
    }
    
    .pro-section,
    .tools-section {
        text-align: center;
        width: 100%;
    }
    
    .save-badge {
        font-size: 12px;
        padding: 6px 12px;
        top: -8px;
        right: 10px;
    }
    
    .card-header h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .price {
        font-size: 48px;
    }
    
    .period {
        font-size: 18px;
    }
    
    .original-price {
        font-size: 20px;
    }
    
    .pricing-btn {
        padding: 18px 24px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .feature-item {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .tools-section h4,
    .pro-section h4 {
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .ai-icon {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    /* Revenue calculator mobile */
    .revenue-calculator {
        padding: 60px 0;
    }
    
    .calculator-container {
        padding: 0 20px;
    }
    
    .calculator-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .calculator-container h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .calculator-container p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .calculator-widget {
        padding: 25px 20px;
    }
    
    .revenue-amount {
        font-size: 28px;
    }
    
    .revenue-label {
        font-size: 12px;
    }
    
    .calculator-controls {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .control-label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .slider-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .price-slider,
    .customers-slider {
        width: 100%;
        margin: 0;
    }
    
    .slider-value {
        font-size: 14px;
        text-align: center;
        font-weight: 600;
    }
    
    /* Testimonials mobile adjustments */
    .testimonial-card {
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .author-avatar {
        order: -1;
        margin-bottom: 5px;
    }
    
    .author-info {
        align-items: center;
        text-align: center;
    }
    
    .author-name {
        color: #000000 !important;
    }
    
    /* Urgency section mobile */
    .urgency {
        padding: 50px 0;
    }
    
    .urgency-container {
        padding: 0 20px;
    }
    
    .urgency-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .urgency-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .urgency-text {
        text-align: center;
    }
    
    .urgency-text h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .urgency-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .special-price {
        font-size: 32px;
    }
    
    .savings {
        font-size: 18px;
    }
    
    .urgency-reasons h4 {
        font-size: 16px;
        margin: 20px 0 15px;
    }
    
    .urgency-reasons li {
        font-size: 14px;
        padding: 8px 0;
        padding-left: 30px;
    }
    
    .purchase-button.urgent {
        font-size: 16px;
        padding: 18px 24px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }
    
    /* FAQ section mobile */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 16px 20px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    /* Payment methods mobile */
    .payment-methods-img {
        max-height: 40px;
    }
    
    .bottom-guarantee {
        font-size: 13px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-container,
    .section-container,
    .pricing-container,
    .access-container,
    .dfy-container,
    .library-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 10px;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 8px 6px;
    }
    
    .time-number {
        font-size: 18px;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .feature-item {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .calculator-widget {
        padding: 20px 15px;
    }
    
    .revenue-amount {
        font-size: 24px;
    }
}

/* ===== SALES POPUP NOTIFICATIONS ===== */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    z-index: 10000;
    max-width: 350px;
    transform: translateX(-120%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.sales-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.popup-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
    position: relative;
}

.popup-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.popup-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

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

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.popup-close:hover {
    color: #666;
    background-color: #f5f5f5;
}

/* Mobile adjustments for sales popup */
@media (max-width: 768px) {
    .sales-popup {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
    
    .popup-content {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .popup-icon {
        font-size: 16px;
    }
    
    .popup-text {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .popup-close {
        top: 6px;
        right: 6px;
        font-size: 16px;
        padding: 3px;
    }
}

.largest-library {
    padding: 80px 0;
    background: #0D0D0D;
    color: white;
}

.library-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.plr-license {
    padding: var(--space-3xl) 0;
    background: white;
    color: #333;
}

.license-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.license-benefits {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-top: var(--space-3xl);
    text-align: left;
}

.license-side h3 {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.license-side h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

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

.license-list li {
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-lg);
    color: var(--text-secondary);
}

.license-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.license-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.license-image {
    max-width: 300px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .feature-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icons {
        margin-left: 0;
        justify-content: center;
    }
    
    .ebook-features, .video-features, .resource-features {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .demand-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-testimonials {
        flex-direction: column;
        align-items: center;
    }
    
    .license-benefits {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .license-center {
        order: -1;
    }
}

/* ===== EXACT SCREENSHOT MATCHING STYLES ===== */
.features-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.feature-main-card {
    background: var(--primary-red);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: white;
    grid-row: span 2;
}

.main-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.format-icons {
    display: flex;
    gap: var(--space-md);
    margin-top: auto;
}

.format-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-side-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.side-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    color: white;
    text-align: center;
}

.side-card.white-bg {
    background: white;
    color: #333;
}

.side-card.large-text .card-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.card-desc {
    font-size: 0.875rem;
    line-height: 1.4;
    opacity: 0.8;
}

.feature-bottom-row {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.bottom-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    color: white;
    text-align: left;
}

.bottom-card.white-bg {
    background: white;
    color: #333;
}

.bottom-card.red-bg {
    background: var(--primary-red);
    color: white;
}

.bottom-card .card-title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.bottom-card .card-desc {
    font-size: 0.8rem;
}

/* Color adjustments for dark sections */
.done-for-you h2,
.market-demand h2,
.customer-love h2,
.largest-library h2 {
    color: white;
}

.premium-products h2,
.simple-access h2,
.plr-license h2 {
    color: #333;
}

.ebooks-container h2,
.video-audio-container h2,
.resources-container h2 {
    color: #333;
}

/* Enhanced responsiveness for new layouts */
@media (max-width: 768px) {
    .features-grid-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .feature-main-card {
        grid-row: span 1;
    }
    
    .feature-bottom-row {
        grid-column: span 1;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .feature-bottom-row {
        grid-template-columns: 1fr;
    }
    
    .side-card.large-text .card-number {
        font-size: 2rem;
    }
}

/* ===== UPDATED MEDIA MENTIONS STYLING ===== */
.media-mentions {
    padding: var(--space-3xl) 0 !important;
    background: #1a1a1a !important;
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.media-label {
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    color: white !important;
    margin-bottom: var(--space-2xl) !important;
    letter-spacing: 0.5px;
    text-transform: none !important;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl) !important;
    flex-wrap: wrap;
}

.media-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo img {
    height: 28px !important;
    width: auto;
    opacity: 0.7 !important;
    transition: opacity var(--transition-base);
    filter: brightness(0) invert(1) !important;
    max-width: 120px;
}

.media-logo:hover img {
    opacity: 1 !important;
}

/* Desktop and Mobile Display Controls */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: inline-flex !important;
    }
    
    .media-container {
        overflow: hidden;
        width: 100%;
    }
    
    .media-logos {
        gap: 30px !important;
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        animation: scroll-logos 60s linear infinite;
        white-space: nowrap;
        width: 2000%;
        height: 40px;
        flex-wrap: nowrap;
    }
    
    .media-logo {
        flex-shrink: 0;
        min-width: 100px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .media-logo img {
        height: 20px !important;
        max-width: 80px;
        width: auto;
        object-fit: contain;
    }
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== UPDATED SELLING FEATURES STYLING ===== */
.selling-features {
    padding: var(--space-3xl) 0 !important;
    background: white !important;
    color: #333 !important;
}

.selling-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.selling-badge {
    background: #333 !important;
    color: white !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: 25px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    display: inline-block !important;
    margin-bottom: var(--space-xl) !important;
}

.selling-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: var(--space-lg) !important;
    line-height: 1.2 !important;
}

.selling-description {
    font-size: 1.125rem !important;
    color: #666 !important;
    margin-bottom: var(--space-3xl) !important;
    line-height: 1.5 !important;
}

.dashboard-preview {
    margin-bottom: var(--space-3xl);
}

.dashboard-interface {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-header {
    margin-bottom: var(--space-lg);
}

.dashboard-tabs {
    display: flex;
    gap: var(--space-md);
}

.tab {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all var(--transition-base);
}

.tab.active {
    color: white;
    border-bottom: 2px solid white;
}

.dashboard-body {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.category-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    color: white;
    text-align: left;
}

.category-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.profit-display {
    flex: 0 0 200px;
}

.profit-card-new {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: left;
}

.profit-header {
    margin-bottom: var(--space-sm);
}

.profit-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

.profit-amount-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: var(--space-sm);
}

.profit-chart-new {
    height: 60px;
}

.chart-svg-new {
    width: 100%;
    height: 100%;
}

.selling-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.selling-option {
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.selling-option:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.option-icon {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: #333;
}

.selling-option h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: var(--space-sm);
}

.selling-option p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

/* Dark variant styling */
@media (prefers-color-scheme: dark) {
    .selling-features.dark-variant {
        background: #0D0D0D !important;
        color: white !important;
    }
    
    .selling-features.dark-variant .selling-title {
        color: white !important;
    }
    
    .selling-features.dark-variant .selling-description {
        color: #ccc !important;
    }
    
    .selling-features.dark-variant .selling-option {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .selling-features.dark-variant .selling-option h3 {
        color: white;
    }
    
    .selling-features.dark-variant .selling-option p {
        color: #ccc;
    }
    
    .selling-features.dark-variant .option-icon {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
}

@media (max-width: 768px) {
    .selling-options {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .dashboard-body {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .profit-display {
        flex: none;
        align-self: stretch;
    }
    
    .selling-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .selling-options {
        grid-template-columns: 1fr;
    }
    
    .dashboard-interface {
        padding: var(--space-lg);
    }
    
    .selling-title {
        font-size: 1.75rem !important;
    }
}

/* ===== DASHBOARD IMAGE STYLING ===== */
.dashboard-image-container {
    max-width: 600px;
    height: 300px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.dashboard-image {
    width: 115%;
    height: 115%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-2xl);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Override previous dashboard interface styles */
.dashboard-interface {
    display: none !important;
}

/* Hide mobile products image on desktop */
.mobile-products-preview {
    display: none;
}

@media (max-width: 768px) {
    .dashboard-preview {
        display: none !important;
    }
    
    .mobile-products-preview {
        display: block !important;
        text-align: center;
        margin: 30px 0;
        padding: 0 15px;
    }
    
    .mobile-products-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .dashboard-image-container {
        max-width: 100%;
        margin: 0 var(--space-lg);
    }
}

/* ===== PRIVATE LABEL LICENSE SECTION ===== */
.private-label-section {
    padding: var(--space-3xl) 0;
    background: white;
    color: #333;
}

.private-label-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.private-label-badge {
    background: #333;
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: var(--space-xl);
}

.private-label-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.private-label-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: var(--space-3xl);
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-showcase {
    margin-bottom: var(--space-3xl);
}

.showcase-image-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
}

.license-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.license-feature {
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    background: white;
}

.license-feature:hover {
    border-color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon-new {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: #333;
}

.license-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: var(--space-sm);
}

.license-feature p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .license-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .private-label-title {
        font-size: 2rem;
    }
    
    .showcase-image-container {
        margin: 0 var(--space-lg);
    }
}

@media (max-width: 480px) {
    .license-features {
        grid-template-columns: 1fr;
    }
    
    .private-label-title {
        font-size: 1.75rem;
    }
}
