/* ===================================
   NEWS PAGE STYLES
   =================================== */

/* News Hero */
.news-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0A1F44 0%, #1B3A5C 100%);
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.news-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.news-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #FF7A00 0%, #FFA64D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.news-intro {
    padding: 80px 0;
    background: #FFFFFF;
}

.news-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.news-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #525252;
}

/* Section Headers */
.news-section-header {
    margin-bottom: 64px;
}

.news-section-header.center {
    text-align: center;
}

.news-section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #FF7A00;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.news-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1F44;
    line-height: 1.2;
}

/* Features Section */
.news-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #FFFFFF 100%);
}

.news-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.news-feature-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(10, 31, 68, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 31, 68, 0.08);
    position: relative;
}

.news-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(10, 31, 68, 0.12);
    border-color: #FF7A00;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 122, 0, 0.1);
    line-height: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF7A00 0%, #FFA64D 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #525252;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.1);
    padding: 6px 12px;
    border-radius: 12px;
}

/* Integrations Section */
.news-integrations {
    padding: 100px 0;
    background: #FFFFFF;
}

.news-integrations-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.integrations-visual {
    position: relative;
}

.integration-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.integration-icon-item {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FAFBFC 0%, #FFFFFF 100%);
    border: 2px solid rgba(10, 31, 68, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FF7A00;
    transition: all 0.3s ease;
}

.integration-icon-item:hover {
    transform: scale(1.05);
    border-color: #FF7A00;
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15);
}

.integrations-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A1F44;
    margin-bottom: 20px;
    line-height: 1.2;
}

.integrations-description {
    font-size: 1.125rem;
    color: #525252;
    line-height: 1.7;
    margin-bottom: 32px;
}

.integrations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #0A1F44;
}

.integration-item i {
    color: #FF7A00;
    font-size: 1.25rem;
}

/* Performance Section */
.news-performance {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1B3A5C 100%);
}

.news-performance .news-section-label {
    color: #FFA64D;
}

.news-performance .news-section-title {
    color: #FFFFFF;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.performance-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #FF7A00;
}

.performance-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.performance-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF7A00;
}

.performance-stat i {
    font-size: 2rem;
    color: #FF7A00;
}

.performance-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.performance-card p {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Coming Soon Section */
.news-coming-soon {
    padding: 100px 0;
    background: #FFFFFF;
}

.coming-soon-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.coming-soon-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0A1F44;
    margin-bottom: 20px;
    line-height: 1.2;
}

.coming-soon-subtitle {
    font-size: 1.125rem;
    color: #525252;
    line-height: 1.7;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.coming-soon-card {
    background: linear-gradient(135deg, #FAFBFC 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed rgba(255, 122, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-4px);
    border-color: #FF7A00;
    box-shadow: 0 8px 32px rgba(255, 122, 0, 0.12);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FF7A00 0%, #FFA64D 100%);
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF7A00;
    font-size: 2rem;
    margin-bottom: 24px;
}

.coming-soon-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 16px;
    line-height: 1.4;
}

.coming-soon-card p {
    font-size: 0.938rem;
    color: #525252;
    line-height: 1.6;
}

/* CTA Section */
.news-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #FFFFFF 100%);
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0A1F44;
    line-height: 1.4;
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #FF7A00 0%, #FFA64D 100%);
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 122, 0, 0.4);
    color: #FFFFFF;
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #FFFFFF;
    color: #0A1F44;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #0A1F44;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: #0A1F44;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-hero-title {
        font-size: 2.75rem;
    }
    
    .news-section-title {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2.25rem;
    }
    
    .news-integrations-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 80px 0 60px;
    }
    
    .news-hero-title {
        font-size: 2rem;
    }
    
    .news-hero-subtitle {
        font-size: 1rem;
    }
    
    .news-intro {
        padding: 60px 0;
    }
    
    .news-features,
    .news-integrations,
    .news-performance,
    .news-coming-soon,
    .news-cta {
        padding: 60px 0;
    }
    
    .news-section-header {
        margin-bottom: 40px;
    }
    
    .news-section-title {
        font-size: 1.75rem;
    }
    
    .news-features-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-hero-title {
        font-size: 1.75rem;
    }
    
    .news-feature-card,
    .coming-soon-card {
        padding: 24px;
    }
    
    .feature-number {
        font-size: 2rem;
    }
}

