/* Mobile Plans Page Additional Styles */

.plans-hero {
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.plans-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.plans-hero > p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.plans-hero .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.plans-hero .disclaimer {
    max-width: 900px;
    margin: 20px auto 0;
    opacity: 0.8;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--xfinity-light-gray);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.benefit-card a {
    color: var(--xfinity-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.benefit-card a:hover {
    color: #004494;
    text-decoration: underline;
}

/* Plans Comparison Section */
.plans-comparison-section {
    padding: 80px 0;
    background: var(--xfinity-light-gray);
}

.plans-comparison-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.plans-comparison-section > .container > a {
    display: block;
    width: fit-content;
    margin: 30px auto;
}

/* Savings Section */
.savings-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.savings-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.savings-section > .container > p:first-of-type {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Included Section */
.included-section {
    padding: 80px 0;
    background: var(--xfinity-light-gray);
}

.included-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.included-item {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
}

.included-item.highlight {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff 100%);
    border: 2px solid var(--xfinity-purple);
}

.included-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.included-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-item li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.included-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--xfinity-blue);
    font-weight: bold;
    font-size: 20px;
}

.included-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.included-item a {
    color: var(--xfinity-blue);
    text-decoration: none;
    font-weight: 600;
}

.included-item a:hover {
    text-decoration: underline;
}

/* Customize Section */
.customize-section {
    padding: 80px 0;
    background: #fff;
}

.customize-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.customize-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.customize-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: var(--xfinity-light-gray);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.customize-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.customize-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.customize-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.customize-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.adjust-feature {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--xfinity-purple);
}

.adjust-feature h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.adjust-feature p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Add-ons Section */
.addons-section {
    padding: 80px 0;
    background: var(--xfinity-light-gray);
}

.addons-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.addon-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.addon-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.addon-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.addon-card a {
    color: var(--xfinity-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.addon-card a:hover {
    text-decoration: underline;
}

.addon-card .small-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid,
    .customize-grid {
        grid-template-columns: 1fr;
    }

    .included-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .plans-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .plans-hero h1 {
        font-size: 32px;
    }

    .plans-hero > p {
        font-size: 18px;
    }

    .included-section h2,
    .customize-section h2,
    .addons-section h2,
    .plans-comparison-section h2 {
        font-size: 32px;
    }

    .savings-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .plans-hero h1 {
        font-size: 28px;
    }

    .plans-hero > p {
        font-size: 16px;
    }

    .benefit-card,
    .addon-card,
    .included-item {
        padding: 25px;
    }
}