

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: #0b1a33;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============= COMPACT HERO ============= */
.proofx-hero {
    background: var(--gradient-dark);
    color: white;
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 44, 255, 0.1) 0%, transparent 50%);
    animation: floatBg 20s infinite linear;
    z-index: 1;
}

.proofx-section-main-title {
	font-size: 40px;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4757, #16469D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@keyframes floatBg {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

.hero-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff4757, #16469D);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff 0%, #c5b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff4757, #16469D);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
    gap: 15px;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ============= SECTION ALTERNATION ============= */
.section-light {
    background: var(--section-light);
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: var(--section-dark);
    color: white;
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

.section-light .content-container,
.section-dark .content-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Section Background Animations */
.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 65%, rgba(139, 92, 246, 0.03) 65%, rgba(139, 92, 246, 0.03) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 65%, rgba(139, 92, 246, 0.03) 65%, rgba(139, 92, 246, 0.03) 70%, transparent 70%);
    background-size: 60px 60px;
    animation: movePattern 40s linear infinite;
    opacity: 0.5;
    z-index: 1;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
    animation: floatDark 25s infinite linear;
    z-index: 1;
}

@keyframes movePattern {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

@keyframes floatDark {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

/* ============= COMPACT SECTION LAYOUT ============= */
.section-header {
    display: block;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4757, #16469D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
    animation: numberFloat 3s infinite ease-in-out;
}

@keyframes numberFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-dark .section-title {
    color: white;
    background: linear-gradient(90deg, #fff 0%, #c5b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ============= COMPACT CARDS ============= */
.compact-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 25px;
}

.section-dark .compact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

.card-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #ff4757, #16469D);
}

/* Feature Grid */
.feature-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item-compact {
    background: var(--blue-soft);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.section-dark .feature-item-compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item-compact:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
    border-color: var(--accent-purple);
}

.section-dark .feature-item-compact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
}

.feature-icon-compact {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
}

.section-dark .feature-icon-compact {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon-compact i {
    font-size: 22px;
    color: var(--accent-purple);
}

.section-dark .feature-icon-compact i {
    color: var(--accent-purple);
}

/* Challenge Comparison */
.challenge-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.challenge-card {
    border-radius: 18px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.challenge-card.problem {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.challenge-card.solution {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.section-dark .challenge-card.problem {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.section-dark .challenge-card.solution {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.challenge-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.problem .challenge-icon {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.solution .challenge-icon {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
}

/* Timeline Compact */
.timeline-compact {
    position: relative;
    margin: 15px 0;
}

.timeline-track {
    position: absolute;
    top: 40px;
    left: 25px;
    width: 3px;
    height: calc(100% - 80px);
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-purple));
    z-index: 1;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.step-marker-compact {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-purple);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.section-dark .step-marker-compact {
    background: var(--section-dark);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.step-content-compact h3 {
    margin-bottom: 0px!important;
}

.step-marker-compact:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.step-content-compact {
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.08);
    flex: 1;
    transition: all 0.3s ease;
}

.section-dark .step-content-compact {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-content-compact:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12);
}

/* Audience Grid Compact */
.audience-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.audience-item-compact {
    background: white;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.05);
}

.section-dark .audience-item-compact {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-item-compact:hover {
    border-color: var(--accent-purple);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
}

.audience-icon-compact {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4757, #16469D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.section-dark .audience-icon-compact {
    background: rgba(255, 255, 255, 0.1);
}

.audience-item-compact:hover .audience-icon-compact {
    background: linear-gradient(135deg, #ff4757, #16469D);
    transform: scale(1.1);
}

.audience-icon-compact i {
    font-size: 24px;
    color: #fff;
}

.audience-item-compact:hover .audience-icon-compact i {
    color: white;
}

/* ============= COMPACT CTA ============= */
.proofx-cta {
    background: linear-gradient(135deg, #0b1a33 0%, #1a2849 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 44, 255, 0.1) 0%, transparent 50%);
    animation: ctaFloat 20s infinite linear;
    z-index: 1;
}

@keyframes ctaFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 30px) rotate(180deg); }
}

.cta-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff 0%, #c5b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff4757, #16469D);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.cta-features-compact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-feature-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-feature-compact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .proofx-hero {
        padding: 50px 0 30px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-light,
    .section-dark {
        padding: 50px 0;
    }
    
    .timeline-track {
        display: none;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-marker-compact {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .compact-card {
        padding: 25px;
    }
    
    .feature-grid-compact,
    .challenge-comparison,
    .audience-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .hero-features,
    .cta-features-compact {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .compact-card {
        padding: 20px;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

/* ============= SCROLL ANIMATIONS ============= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============= SCROLLBAR ============= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff4757, #16469D);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-dark);
}

/* ============= PROOFX SPECIFIC STYLES ============= */
.not-what-it-is {
    margin: 25px 0;
}

.not-what-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.05);
    border-left: 4px solid #8b5cf6;
}

.not-what-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4757, #16469D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.delivery-option {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.delivery-option:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
}

.delivery-option.paid {
    border-color: #8b5cf6;
}

.delivery-option.pilot {
    border-color: #0077d9;
}

.delivery-option-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.delivery-option-header i {
    font-size: 24px;
}

.delivery-option.paid .delivery-option-header i {
    color: #8b5cf6;
}

.delivery-option.pilot .delivery-option-header i {
    color: #0077d9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    background: rgba(139, 92, 246, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.key-point i {
    color: #8b5cf6;
    font-size: 18px;
}