/* Mobile Network Page Styles */

.network-hero {
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
}

.network-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.network-hero > .container > p {
    font-size: 20px;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.network-disclaimer {
    font-size: 15px;
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto;
}

/* Network Features Section */
.network-features-section {
    padding: 80px 0;
    background: #fff;
}

.network-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.network-feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: var(--xfinity-light-gray);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.network-feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.network-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.network-feature-icon {
    margin-bottom: 25px;
}

.network-feature-icon img {
    width: 80px;
    height: 80px;
}

.network-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.network-feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.network-feature-card a {
    color: var(--xfinity-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.network-feature-card a:hover {
    text-decoration: underline;
}

/* Unlimited Promo Section */
.unlimited-promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff 100%);
    text-align: center;
}

.unlimited-promo-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.unlimited-promo-section > .container > p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.promo-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.promo-disclaimer {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Network Savings Section */
.network-savings-section {
    padding: 80px 0;
    background: #fff;
}

.network-savings-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.network-savings-section > .container > p {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.comparison-disclaimer {
    font-size: 14px;
    margin-bottom: 30px !important;
}

.legal-disclaimer {
    background: var(--xfinity-light-gray);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.legal-disclaimer p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.legal-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Coverage Features Section */
.coverage-features-section {
    padding: 80px 0;
    background: var(--xfinity-light-gray);
}

.coverage-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.coverage-feature-large {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.coverage-feature-large.visible {
    opacity: 1;
    transform: translateY(0);
}

.coverage-feature-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.coverage-image {
    width: 100%;
    overflow: hidden;
}

.coverage-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.coverage-feature-large:hover .coverage-image img {
    transform: scale(1.05);
}

.coverage-content {
    padding: 40px;
}

.coverage-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.coverage-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.coverage-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .network-features-grid {
        grid-template-columns: 1fr;
    }

    .coverage-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .network-hero h1 {
        font-size: 36px;
    }

    .network-hero > .container > p {
        font-size: 18px;
    }

    .unlimited-promo-section h2,
    .network-savings-section h2 {
        font-size: 32px;
    }

    .coverage-content {
        padding: 30px;
    }

    .coverage-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .network-hero h1 {
        font-size: 28px;
    }

    .network-hero > .container > p {
        font-size: 16px;
    }

    .unlimited-promo-section h2,
    .network-savings-section h2 {
        font-size: 26px;
    }

    .network-feature-card,
    .coverage-content {
        padding: 25px 20px;
    }

    .legal-disclaimer {
        padding: 20px;
    }
}