/* NOW Mobile Page Styles */

.now-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}

/* NOW Hero Section */
.now-hero {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.now-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* NOW Features Section */
.now-features-section {
    padding: 80px 0;
    background: #fff;
}

.now-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.now-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);
}

.now-feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.now-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
}

.now-feature-icon {
    margin-bottom: 25px;
}

.now-feature-icon img {
    width: 80px;
    height: 80px;
}

.now-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.now-feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.now-feature-card a {
    color: #0099ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.now-feature-card a:hover {
    text-decoration: underline;
    color: #0077cc;
}

/* Tablet Plan Section */
.tablet-plan-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
    text-align: center;
}

.tablet-plan-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.tablet-plan-section .btn {
    background: #0099ff;
    border-color: #0099ff;
}

.tablet-plan-section .btn:hover {
    background: #0077cc;
    border-color: #0077cc;
}

/* Get More Section */
.get-more-section {
    padding: 80px 0;
    background: #fff;
}

.get-more-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--xfinity-light-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.service-content {
    padding: 40px;
}

.service-category {
    font-size: 14px;
    color: #0099ff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-content .btn {
    background: #0099ff;
    border-color: #0099ff;
}

.service-content .btn:hover {
    background: #0077cc;
    border-color: #0077cc;
}

/* NOW FAQ Section */
.now-faq-section {
    padding: 80px 0;
    background: var(--xfinity-light-gray);
}

.now-faq-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.now-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.now-faq-accordion details {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.now-faq-accordion details:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.now-faq-accordion summary {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.now-faq-accordion summary::after {
    content: '+';
    font-size: 28px;
    color: #0099ff;
    transition: transform 0.3s ease;
}

.now-faq-accordion details[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Disclaimers Section */
.disclaimers-section {
    padding: 60px 0;
    background: #fff;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--xfinity-light-gray);
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .now-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .now-hero h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .now-features-grid {
        grid-template-columns: 1fr;
    }

    .tablet-plan-section h2,
    .get-more-section h2,
    .now-faq-section h2 {
        font-size: 32px;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .now-hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .tablet-plan-section h2,
    .get-more-section h2,
    .now-faq-section h2 {
        font-size: 28px;
    }

    .now-feature-card,
    .service-content {
        padding: 25px 20px;
    }

    .now-faq-accordion summary {
        font-size: 18px;
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .disclaimer-box {
        padding: 20px;
    }
}