/* ===== ENTREPEDIA MASTER LIBRARY - DESKTOP STYLES ===== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-red: #d44848;
    --dark-red: #b73e3e;
    --light-red: #ff6b6b;
    --background: #ffffff;
    --surface: #fafafa;
    --text-primary: #ffffff;
    --text-secondary: #666666;
    --text-muted: #888888;
    --border-light: #e0e0e0;
    --border-dark: #cccccc;
    --success-green: #22c55e;
    --warning-orange: #f59e0b;
    --rating-gold: #fbbf24;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
    
    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-tooltip: 1050;
}

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

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
    background-color: var(--background);
    overflow-x: hidden;
}

/* ===== 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;
    z-index: var(--z-sticky);
}

.countdown-bar {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-primary);
    padding: 12px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.discount-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

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

.countdown-text {
    font-size: 14px;
    font-weight: 500;
}

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

.time-unit {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
}

.time-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

.time-separator {
    font-size: 18px;
    font-weight: 700;
    opacity: 0.7;
}

.navbar {
    background: var(--background);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 60px;
    z-index: var(--z-sticky);
    margin-top: 60px;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
}

.brand-text {
    height: 24px;
}

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

.login-button {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-light);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-button:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(218, 43, 53, 0.05) 0%, transparent 70%);
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    background: linear-gradient(135deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    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;
}

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

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



.dfy-card.left-1 { grid-area: left-1; }
.dfy-card.left-2 { grid-area: left-2; }
.dfy-card.left-3 { grid-area: left-3; }

.dfy-card.bottom {
    grid-area: bottom;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.dfy-card-content {
    flex: 1;
}

.dfy-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-sm);
    color: white;
}

.dfy-card.highlight .dfy-number {
    color: white;
}

.dfy-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: white;
}

.dfy-desc {
    color: #cccccc;
    line-height: 1.5;
}

.dfy-card.highlight .dfy-desc {
    color: rgba(255, 255, 255, 0.9);
}

.dfy-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
}

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

.dfy-cta-button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 43, 53, 0.4);
}

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

/* Continue with other desktop-specific sections... */

/* ===== PRICING SECTION - DESKTOP ===== */
.pricing-plans {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

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

.special-offer-section {
    margin-bottom: var(--space-xl);
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-lg);
    animation: bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(218, 43, 53, 0.3);
}

.countdown-text {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: #333;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: var(--space-lg);
}

.time-unit {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.time-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.time-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    align-items: center;
}

.pricing-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    font-size: 14px;
    color: var(--text-muted);
}

.step-divider {
    width: 40px;
    height: 1px;
    background: var(--border-light);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    margin: 0 auto;
    max-width: 400px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: auto;
    min-height: auto;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.save-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--success-green);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== ACCESS SECTION - DESKTOP ===== */
.instant-access {
    padding: var(--space-3xl) 0;
    background: #0D0D0D;
    color: white;
}

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

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

.access-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
}

.access-header p {
    font-size: 1.125rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.access-steps-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.access-card-dark {
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid #333;
    text-align: center;
}

.access-card-dark h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: white;
}

.access-card-dark p {
    color: #cccccc;
    line-height: 1.5;
}

.purchase-button-new {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 43, 53, 0.4);
    margin: 0 auto;
    display: block;
}

.purchase-button-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 43, 53, 0.5);
    background: var(--dark-red);
}

/* ===== REVENUE CALCULATOR - DESKTOP ===== */
.revenue-calculator {
    padding: var(--space-3xl) 0;
    background: var(--surface);
}

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

.calculator-badge {
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.calculator-container h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    color: #333;
}

.calculator-container p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.calculator-widget {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
}

.revenue-display {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.revenue-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: var(--space-sm);
}

.revenue-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.control-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: var(--space-sm);
    display: block;
}

.slider-container {
    position: relative;
    margin-bottom: var(--space-sm);
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-light);
    outline: none;
    appearance: none;
}

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

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
    border: none;
}

.slider-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-red);
}

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

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

.faq-container h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-3xl);
    color: #333;
}

.faq-item {
    margin-bottom: var(--space-lg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    background: var(--surface);
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-toggle {
    font-size: 20px;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    background: white;
    padding: var(--space-lg) var(--space-xl);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-light);
    display: none;
    animation: fadeIn 0.3s ease;
}

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

/* ===== FOOTER - DESKTOP ===== */
.footer {
    background: #333;
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

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

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid #555;
}

/* ===== PRICING SECTION CONTINUATION - DESKTOP ===== */
.card-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.card-header h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: #333;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.original-price {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: var(--space-lg);
    width: 100%;
    box-shadow: 0 4px 15px rgba(218, 43, 53, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 43, 53, 0.4);
    background: var(--dark-red);
}

.features-list {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    line-height: 1.5;
    color: #333;
}

.feature-icon {
    color: var(--success-green);
    font-weight: bold;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tools-section,
.pro-section {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.tools-section h4,
.pro-section h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    text-align: center;
    letter-spacing: 0.5px;
}

.ai-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 6px;
}

.payment-methods {
    margin-top: var(--space-lg);
    text-align: center;
}

.payment-methods-img {
    max-height: 50px;
    opacity: 0.7;
}

.bottom-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 14px;
    color: var(--text-muted);
}

.guarantee-icon {
    color: var(--success-green);
}

/* ===== UTILITY CLASSES - DESKTOP ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

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

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

/* ===== HOVER EFFECTS - DESKTOP ===== */
.dfy-card:hover,
.pricing-card:hover,
.access-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dfy-card.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(218, 43, 53, 0.25);
}