/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Steradian', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #E5E5E5;
    font-size: 16px;
    scroll-behavior: smooth;
    background: #0A0A0A;
}

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

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #007AFF;
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Typography Scale */
h1 { 
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 { 
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h3 { 
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Button System */
.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: #FF6B35;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #FF6B35;
    min-height: 60px;
    line-height: 1.2;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: #E55A2B;
    border-color: #E55A2B;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button.final {
    padding: 25px 50px;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    min-height: 70px;
}

.cta-button.sticky {
    padding: 16px 32px;
    font-size: 1rem;
    min-height: 50px;
    width: 200px;
}

/* Focus States for Accessibility */
body.keyboard-navigation .cta-button:focus,
body.keyboard-navigation *:focus {
    outline: 2px solid #007AFF;
    outline-offset: 2px;
}

/* Hero Section - 70% Viewport */
.hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    color: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 40px 0;
}

.logo h1 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    margin-top: 40px;
}

.hero-headline {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #E5E5E5;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.urgency-message {
    margin-top: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #007AFF;
    font-weight: 500;
}

.hero .cta-button {
    background: #FF6B35;
    color: #fff;
    border-color: #FF6B35;
    margin-top: 1rem;
    min-width: 250px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero .cta-button:hover {
    background: #E55A2B;
    border-color: #E55A2B;
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}


/* Enhanced Problem/Solution Pairs */
.problem-solution-section {
    padding: 0;
}

.problem-solution-pair {
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    transition: all 0.3s ease;
}

.problem-solution-pair.alternate {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
}


.pair-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: stretch;
}

.problem-card, .solution-card {
    padding: 2.5rem;
    border-radius: 16px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.problem-card {
    background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
    border: 2px solid #FF6B35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    color: #fff;
}

.solution-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    color: #fff;
    border: 2px solid #34C759;
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
}

.problem-icon, .solution-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.card-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF6B35;
}

.problem-stats, .solution-stats {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-badge.red {
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

.stat-badge.green {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

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

.arrow-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #007AFF, #FF6B35);
    position: relative;
    border-radius: 2px;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid #FF6B35;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.problem-list, .solution-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.problem-list li, .solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.problem-bullet, .solution-bullet {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.problem-bullet {
    color: #FF3B30;
}

.solution-bullet {
    color: #34C759;
}

.problem-list li:hover {
    transform: translateX(5px);
    color: #FF6B35;
}

.solution-list li:hover {
    transform: translateX(5px);
    color: #34C759;
}

/* Secondary CTA */
.secondary-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    color: #fff;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.secondary-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.secondary-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #E5E5E5;
}

.secondary-cta .cta-button {
    background: #FF6B35;
    color: #fff;
    border-color: #FF6B35;
}

.secondary-cta .cta-button:hover {
    background: #E55A2B;
    color: #fff;
    border-color: #E55A2B;
}

/* Exclusive Access Section */
.exclusive-access {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #E5E5E5;
    margin-bottom: 3rem;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.exclusive-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 400px;
}

.exclusive-card.featured {
    border: 2px solid #FF6B35;
    background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
}

.exclusive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.urgency-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FF3B30;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.urgency-badge.premium {
    background: #FFD700;
    color: #000;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-description {
    color: #E5E5E5;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #E5E5E5;
}

.access-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.access-indicator.premium {
    color: #FFD700;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #34C759;
    border-radius: 50%;
}

.exclusive-bonus {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.bonus-item {
    color: #E5E5E5;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    text-align: center;
    border-top: 1px solid #333;
}

.final-urgency {
    font-size: 1.3rem;
    color: #FF6B35;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #E5E5E5;
    margin-top: 0.5rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1rem;
    color: #E5E5E5;
}

.scarcity-message {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #FF6B35;
    font-weight: 600;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    color: #fff;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-logo p {
    color: #E5E5E5;
    font-size: 0.9rem;
}

.footer-social p {
    margin-bottom: 1rem;
    color: #E5E5E5;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #E5E5E5;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

/* Tablet Responsive Design (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .exclusive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pair-content {
        gap: 1.5rem;
    }
    
    .problem-card, .solution-card {
        padding: 2rem;
    }
}

/* Mobile Responsive Design (320px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        margin-top: 20px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .pair-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .transformation-arrow {
        order: 0;
        padding: 1.5rem 0;
    }
    
    .arrow-container {
        flex-direction: column;
        align-items: center;
    }
    
    .arrow-line {
        width: 4px;
        height: 60px;
        background: linear-gradient(to bottom, #007AFF, #FF6B35);
        border-radius: 2px;
    }
    
    .arrow-line::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -2px;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 12px solid #FF6B35;
        border-bottom: none;
    }
    
    .problem-card, .solution-card {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    .problem-solution-pair {
        padding: 80px 0;
        min-height: auto;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .problem-icon, .solution-icon {
        font-size: 2rem;
    }
    
    .problem-stats, .solution-stats {
        justify-content: center;
    }
    
    .exclusive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .exclusive-card {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .cta-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 50px;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-button.final {
        padding: 20px 32px;
        font-size: 1.1rem;
        min-height: 60px;
    }
    
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .exclusive-card {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }
    
    .exclusive-bonus {
        padding: 1.5rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .problem-card {
        border: 3px solid #FF6B35;
        background: #000;
    }
    
    .solution-card {
        border: 3px solid #34C759;
        background: #000;
    }
    
    .exclusive-card {
        border: 2px solid #FF6B35;
        background: #000;
    }
    
    body {
        background: #000;
        color: #fff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-behavior: auto;
}

/* Print Styles */
@media print {
    .progress-bar,
    .urgency-badge {
        display: none;
    }
    
    body, .hero, .problem-solution-pair, .exclusive-access, .final-cta, .footer {
        background: #fff !important;
        color: #000 !important;
    }
    
    .problem-card, .solution-card, .exclusive-card {
        background: #fff !important;
        color: #000 !important;
        border: 2px solid #000 !important;
    }
    
    .cta-button {
        border: 2px solid #000 !important;
        background: #fff !important;
        color: #000 !important;
    }
}