/* CSS Design System for Premium New Homepage */

:root {
    --primary-dark-green: #01123a;
    --primary-forest: #000a22;
    --stats-bg: #01123a;
    --lavender-bg: #b2b8c5;
    --creamy-bg: #f1ede6;
    --accent-lime: #b2b8c5;
    --text-dark: #01123a;
    --text-light: #ffffff;
    --font-heading: 'Aeonik Serif', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
}

/* Typography Helpers */
.italic-accent {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

.accent-word {
    color: var(--creamy-bg);
}

/* --- Hero Section --- */
.new-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: var(--text-light);
}

.new-hero-content {
    max-width: 650px;
}

.new-hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.new-hero-desc {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-accent {
    background-color: var(--accent-lime);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 4px 15px rgba(178, 184, 197, 0.2);
}

.btn-accent:hover {
    background-color: #c0c6d2;
    color: var(--primary-forest);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 184, 197, 0.35);
}

/* --- Counter / Stats Section --- */
.new-stats-section {
    background-color: var(--stats-bg);
    color: var(--text-light);
    padding: 90px 0;
}

.new-stats-header {
    margin-bottom: 60px;
}

.new-stats-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.new-stats-desc {
    max-width: 750px;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.85;
}

.new-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.new-stat-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.new-stat-number {
    font-size: 4rem;
    font-weight: 300;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.new-stat-label {
    font-size: 0.95rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

.new-stat-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- Maximum Value Section --- */
.new-value-section {
    background-color: var(--lavender-bg);
    padding: 100px 0;
    color: var(--primary-forest);
}

.new-value-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 500;
}

.new-value-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.85;
}

.new-value-cards {
    margin-top: 60px;
}

.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.value-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(184, 197, 249, 0.2);
    border-radius: 16px;
}

.value-card-icon img {
    max-width: 45px;
    max-height: 45px;
}

.value-card-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--primary-forest);
}

.value-card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(30, 30, 30, 0.8);
    margin-bottom: 0;
}

.new-value-footer {
    border-top: 1px solid rgba(18, 31, 16, 0.15);
    padding-top: 50px;
}

.value-footer-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
}

.btn-dark-accent {
    background-color: var(--primary-forest);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
}

.btn-dark-accent:hover {
    background-color: #000000;
    color: var(--text-light);
    transform: translateY(-2px);
}

/* --- Video Section --- */
.new-video-section {
    background-color: var(--primary-dark-green);
    padding: 100px 0 60px;
}

.video-container {
    max-width: 950px;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.video-caption {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.8;
}

/* --- Networks Section --- */
.new-network-section {
    background-color: var(--primary-dark-green);
    color: var(--text-light);
    padding: 60px 0 100px;
}

.network-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.network-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

.new-network-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.network-item {
    flex: 1;
    padding: 0 30px;
}

.network-number {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    color: var(--accent-lime);
    font-weight: 500;
    margin-bottom: 15px;
}

.network-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.85;
}

.network-divider {
    width: 1px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-top: 30px;
}

.network-source {
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 0.5px;
}

/* --- Featured In Section --- */
.featured-in-section {
    background-color: var(--primary-dark-green);
    padding: 20px 0 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-header {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.featured-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.featured-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 0 20px;
    opacity: 0.6;
}

.featured-logos {
    opacity: 0.55;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 400;
}

/* --- CTA Green Banner --- */
.new-cta-banner {
    background-color: var(--accent-lime);
    padding: 55px 0;
    color: var(--primary-forest);
}

.cta-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    margin: 0;
}

.btn-cta-dark {
    background-color: var(--primary-forest);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
}

.btn-cta-dark:hover {
    background-color: #000000;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Thought Leadership Section --- */
.new-blogs-section {
    background-color: var(--creamy-bg);
    padding: 100px 0;
}

.blogs-section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-forest);
    margin: 0;
}

.view-all-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-forest);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-forest);
    padding-bottom: 4px;
    transition: var(--transition-smooth);
}

.view-all-link:hover {
    color: #000000;
    border-color: #000000;
}

.new-blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.new-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.new-blog-img {
    height: 240px;
    overflow: hidden;
}

.new-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.new-blog-card:hover .new-blog-img img {
    transform: scale(1.05);
}

.new-blog-body {
    padding: 30px 25px;
}

.new-blog-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0;
}

.new-blog-title a {
    color: var(--primary-forest);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.new-blog-title a:hover {
    color: #000000;
}

/* --- Newsletter Section --- */
.new-newsletter-section {
    background-color: var(--primary-dark-green);
    padding: 80px 0;
    color: var(--text-light);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
}

.newsletter-form-container {
    display: flex;
    flex-wrap: wrap;
}

.newsletter-form-container input {
    background: #ffffff;
    border: 1px solid var(--lavender-bg);
    color: var(--text-dark);
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 0.95rem;
    flex: 1;
}

.newsletter-form-container input::placeholder {
    color: #888888;
}

.newsletter-form-container input:focus {
    background: #ffffff;
    border-color: var(--primary-forest);
    box-shadow: none;
    color: var(--text-dark);
}

.btn-subscribe {
    background-color: var(--accent-lime);
    color: var(--primary-forest);
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 50px;
    padding: 14px 32px;
    border: none;
    transition: var(--transition-smooth);
}

.btn-subscribe:hover {
    background-color: #c0c6d2;
    color: var(--primary-forest);
}

/* --- Media Queries for Mobile Responsiveness --- */

@media (max-width: 991px) {
    .new-hero-title {
        font-size: 3.5rem;
    }
    
    .new-stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .new-stat-divider {
        width: 150px;
        height: 1px;
    }

    .new-value-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .new-network-grid {
        flex-direction: column;
        gap: 50px;
    }

    .network-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .new-hero-section {
        min-height: 60vh;
        text-align: center;
        padding: 60px 0;
    }
    
    .new-hero-title {
        font-size: 2.8rem;
    }

    .new-hero-desc {
        font-size: 1.1rem;
    }

    .value-footer-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1.8rem;
        text-align: center;
    }

    .blogs-section-title {
        font-size: 2rem;
    }

    .newsletter-title {
        font-size: 1.6rem;
        text-align: center;
    }
}
