/* ===== NEWSXLANDING PAGE - NEW DESIGN ===== */
/* Based on provided mockup */

/* CSS Variables */
:root {
    --newsx-primary: #575495;
    --newsx-secondary: #605CA4;
    --newsx-accent: #A09EC2;
    --newsx-light: #C0BFD1;
    --newsx-background: #DFDFDF;
    --newsx-lighter: #E7E7E7;
    --newsx-lightest: #E9E9E9;
    --newsx-white: #FFFFFF;
    --newsx-text-dark: #2C2C2C;
    --newsx-text-light: #666666;
    --newsx-text-muted: #999999;
    --newsx-border: #E0E0E0;
    --newsx-shadow: rgba(0, 0, 0, 0.1);
    --newsx-gradient: linear-gradient(135deg, var(--newsx-primary) 0%, var(--newsx-secondary) 100%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--newsx-text-dark);
    background-color: var(--newsx-white);
}

.newsx-landing-container-new {
    width: 100%;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.newsx-navbar-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--newsx-white);
    border-bottom: 1px solid var(--newsx-border);
    z-index: 1000;
    padding: 1rem 0;
}

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

.newsx-logo-new {
    height: 40px;
    width: auto;
}

.newsx-nav-links-new {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.newsx-nav-links-new a {
    text-decoration: none;
    color: var(--newsx-text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.newsx-nav-links-new a:hover {
    color: var(--newsx-primary);
}

.newsx-nav-cta-new {
    background: var(--newsx-primary);
    color: var(--newsx-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsx-nav-cta-new:hover {
    background: var(--newsx-secondary);
    transform: translateY(-2px);
}

.newsx-mobile-menu-btn-new {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.newsx-hero-new {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--newsx-background) 0%, var(--newsx-lighter) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.newsx-hero-content-new {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.newsx-hero-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsx-hero-title-new {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--newsx-text-dark);
}

.newsx-hero-highlight {
    color: var(--newsx-primary);
}

.newsx-hero-subtitle-new {
    font-size: 1.25rem;
    color: var(--newsx-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsx-hero-benefits-new {
    list-style: none;
    margin-bottom: 3rem;
}

.newsx-hero-benefits-new li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsx-checkmark {
    background: var(--newsx-primary);
    color: var(--newsx-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.newsx-hero-cta-new {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsx-btn-new {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.newsx-btn-primary-new {
    background: var(--newsx-primary);
    color: var(--newsx-white);
}

.newsx-btn-primary-new:hover {
    background: var(--newsx-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--newsx-shadow);
}

.newsx-btn-secondary-new {
    background: transparent;
    color: var(--newsx-primary);
    border-color: var(--newsx-primary);
}

.newsx-btn-secondary-new:hover {
    background: var(--newsx-primary);
    color: var(--newsx-white);
}

.newsx-hero-card-new {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsx-press-card-new {
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--newsx-shadow);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.newsx-press-card-new:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.newsx-card-image-new {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== MEDIA CLIENTS SECTION ===== */
.newsx-media-clients-new {
    padding: 4rem 2rem;
    background: var(--newsx-white);
    text-align: center;
}

.newsx-clients-content-new {
    max-width: 1200px;
    margin: 0 auto;
}

.newsx-clients-title-new {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--newsx-text-dark);
}

.newsx-clients-logos-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsx-client-logo-new {
    background: var(--newsx-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--newsx-shadow);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 80px;
}

.newsx-client-logo-new:hover {
    transform: translateY(-5px);
}

.newsx-client-img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===== HOW IT WORKS SECTION ===== */
.newsx-how-it-works-new {
    padding: 6rem 2rem;
    background: var(--newsx-background);
}

.newsx-how-content-new {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.newsx-section-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--newsx-text-dark);
}

.newsx-section-subtitle-new {
    font-size: 1.2rem;
    color: var(--newsx-text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsx-steps-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.newsx-step-card-new {
    background: var(--newsx-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--newsx-shadow);
    transition: transform 0.3s ease;
}

.newsx-step-card-new:hover {
    transform: translateY(-5px);
}

.newsx-step-icon-new {
    background: var(--newsx-primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.newsx-step-title-new {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--newsx-text-dark);
}

.newsx-step-description-new {
    color: var(--newsx-text-light);
    line-height: 1.6;
}

/* ===== OUR STANDARDS SECTION ===== */
.newsx-standards-new {
    padding: 6rem 2rem;
    background: var(--newsx-white);
}

.newsx-standards-content-new {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.newsx-standards-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.newsx-standard-card-new {
    background: var(--newsx-background);
    padding: 3rem;
    border-radius: 20px;
    text-align: left;
}

.newsx-standard-title-new {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--newsx-text-dark);
}

.newsx-standard-description-new {
    color: var(--newsx-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsx-standard-btn-new {
    background: var(--newsx-primary);
    color: var(--newsx-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.newsx-standard-btn-new:hover {
    background: var(--newsx-secondary);
    transform: translateY(-2px);
}

/* ===== CARD CAROUSEL SECTION ===== */
.newsx-cards-carousel-new {
    padding: 6rem 2rem;
    background: var(--newsx-background);
}

.newsx-carousel-content-new {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.newsx-carousel-container-new {
    position: relative;
    margin: 4rem 0;
    overflow: hidden;
    border-radius: 20px;
}

.newsx-carousel-wrapper-new {
    overflow: hidden;
    border-radius: 20px;
}

.newsx-carousel-slides-new {
    display: flex;
    transition: transform 0.5s ease;
}

.newsx-carousel-slide-new {
    min-width: 100%;
    background: var(--newsx-white);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsx-card-showcase-new {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
}

.newsx-showcase-image-new {
    max-width: 300px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px var(--newsx-shadow);
}

.newsx-card-info-new {
    text-align: left;
    flex: 1;
}

.newsx-card-info-new h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--newsx-text-dark);
}

.newsx-card-info-new p {
    color: var(--newsx-text-light);
    line-height: 1.6;
}

.newsx-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--newsx-white);
    border: 2px solid var(--newsx-primary);
    color: var(--newsx-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.newsx-carousel-btn:hover {
    background: var(--newsx-primary);
    color: var(--newsx-white);
}

.newsx-carousel-prev-new {
    left: 2rem;
}

.newsx-carousel-next-new {
    right: 2rem;
}

.newsx-carousel-indicators-new {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.newsx-indicator-new {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--newsx-light);
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsx-indicator-new.active {
    background: var(--newsx-primary);
}

.newsx-carousel-note-new {
    color: var(--newsx-text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* ===== PRICING SECTION ===== */
.newsx-pricing-new {
    padding: 6rem 2rem;
    background: var(--newsx-white);
}

.newsx-pricing-content-new {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.newsx-pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.newsx-pricing-card-new {
    background: var(--newsx-background);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.newsx-pricing-title-new {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--newsx-text-dark);
}

.newsx-pricing-price-new {
    margin-bottom: 2rem;
}

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

.newsx-price-period-new {
    font-size: 1.2rem;
    color: var(--newsx-text-light);
}

.newsx-pricing-features-new {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.newsx-pricing-features-new li {
    padding: 0.5rem 0;
    color: var(--newsx-text-light);
    position: relative;
    padding-left: 1.5rem;
}

.newsx-pricing-features-new li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--newsx-primary);
    font-weight: bold;
}

.newsx-pricing-note-new {
    color: var(--newsx-text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== FINAL CTA SECTION ===== */
.newsx-final-cta-new {
    padding: 6rem 2rem;
    background: var(--newsx-gradient);
    text-align: center;
    color: var(--newsx-white);
}

.newsx-cta-content-new {
    max-width: 800px;
    margin: 0 auto;
}

.newsx-cta-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsx-cta-subtitle-new {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.newsx-btn-cta-new {
    background: var(--newsx-white);
    color: var(--newsx-primary);
    padding: 1.25rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.newsx-btn-cta-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.newsx-footer-new {
    padding: 3rem 2rem 2rem;
    background: var(--newsx-text-dark);
    color: var(--newsx-white);
    text-align: center;
}

.newsx-footer-content-new {
    max-width: 1200px;
    margin: 0 auto;
}

.newsx-footer-links-new {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.newsx-footer-links-new a {
    color: var(--newsx-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.newsx-footer-links-new a:hover {
    opacity: 0.8;
}

.newsx-footer-copyright-new {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.newsx-footer-company-new {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .newsx-nav-links-new {
        display: none;
    }
    
    .newsx-mobile-menu-btn-new {
        display: block;
    }
    
    .newsx-hero-new {
        padding: 6rem 1rem 3rem;
    }
    
    .newsx-hero-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .newsx-hero-title-new {
        font-size: 2.5rem;
    }
    
    .newsx-hero-cta-new {
        justify-content: center;
    }
    
    .newsx-steps-grid-new {
        grid-template-columns: 1fr;
    }
    
    .newsx-standards-grid-new {
        grid-template-columns: 1fr;
    }
    
    .newsx-card-showcase-new {
        flex-direction: column;
        text-align: center;
    }
    
    .newsx-card-info-new {
        text-align: center;
    }
    
    .newsx-carousel-btn {
        display: none;
    }
    
    .newsx-pricing-grid-new {
        grid-template-columns: 1fr;
    }
    
    .newsx-clients-logos-new {
        gap: 1rem;
    }
    
    .newsx-client-logo-new {
        min-width: 100px;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsx-hero-title-new {
        font-size: 2rem;
    }
    
    .newsx-section-title-new {
        font-size: 2rem;
    }
    
    .newsx-cta-title-new {
        font-size: 2rem;
    }
    
    .newsx-btn-new {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .newsx-step-card-new,
    .newsx-standard-card-new,
    .newsx-pricing-card-new {
        padding: 2rem 1.5rem;
    }
}

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

.newsx-step-card-new,
.newsx-standard-card-new,
.newsx-pricing-card-new {
    animation: fadeInUp 0.6s ease forwards;
}

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


/* ===== INFINITE SCROLL MEDIA CLIENTS ===== */
.newsx-infinite-scroll-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--newsx-background) 0%, var(--newsx-lighter) 100%);
    padding: 40px 0;
    position: relative;
}

.newsx-infinite-scroll-container::before,
.newsx-infinite-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.newsx-infinite-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--newsx-background), transparent);
}

.newsx-infinite-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--newsx-background), transparent);
}

.newsx-infinite-scroll-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: infiniteScroll 30s linear infinite;
    width: calc(200% + 60px);
}

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

.newsx-client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(87, 84, 149, 0.1);
    transition: all 0.3s ease;
    padding: 15px;
}

.newsx-client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(87, 84, 149, 0.2);
}

.newsx-client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.newsx-client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Pause animation on hover */
.newsx-infinite-scroll-container:hover .newsx-infinite-scroll-track {
    animation-play-state: paused;
}

/* Mobile responsiveness for infinite scroll */
@media (max-width: 768px) {
    .newsx-infinite-scroll-track {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .newsx-client-logo {
        width: 140px;
        height: 60px;
        padding: 10px;
    }
    
    .newsx-infinite-scroll-container::before,
    .newsx-infinite-scroll-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .newsx-infinite-scroll-track {
        gap: 30px;
        animation-duration: 15s;
    }
    
    .newsx-client-logo {
        width: 120px;
        height: 50px;
        padding: 8px;
    }
}

/* Update existing media clients section styles */
.newsx-media-clients-new {
    padding: 80px 0;
    background: var(--newsx-background);
}

.newsx-clients-content-new {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.newsx-clients-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--newsx-primary);
    margin-bottom: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .newsx-media-clients-new {
        padding: 60px 0;
    }
    
    .newsx-clients-title-new {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

