/* Xumo Stream Box Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Xfinity Standard', Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.xumo-hero {
    background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
    padding: 60px 0 80px;
    text-align: center;
}

.hero-logo-wrapper {
    margin-bottom: 40px;
}

.xumo-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.xumo-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.hero-disclaimer {
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #6a1b9a;
    color: #fff;
    margin-bottom: 15px;
}

.btn-primary:hover {
    background-color: #7b1fa2;
    transform: translateY(-2px);
}

.link-secondary {
    display: block;
    color: #6a1b9a;
    text-decoration: underline;
    font-size: 16px;
    margin-top: 15px;
}

.link-secondary:hover {
    text-decoration: none;
}

/* Voice Search Section */
.voice-search-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.content-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.content-text {
    flex: 1;
    max-width: 600px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.content-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.content-image {
    flex: 1;
    max-width: 600px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.content-image img.visible {
    opacity: 1;
    transform: scale(1);
}

/* Top Apps Section */
.top-apps-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.top-apps-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.section-disclaimer {
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Home Streaming Section */
.home-streaming-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.home-streaming-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #111;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service-card {
    text-decoration: none;
    background: #f8f8f8;
    border-radius: 8px;
    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(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background-color: #fff;
}

.service-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    padding: 20px;
    text-align: center;
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.legal-text {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-text p {
    font-size: 11px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .xumo-hero h1 {
        font-size: 56px;
    }
    
    .xumo-logo {
        max-width: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-row {
        flex-direction: row;
        gap: 60px;
    }
    
    .content-text,
    .content-image {
        flex: 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1024px) {
    .xumo-hero h1 {
        font-size: 64px;
    }
    
    .top-apps-section h2,
    .home-streaming-section h2,
    .services-section h2 {
        font-size: 42px;
    }
    
    .content-text h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .xumo-hero h1 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .top-apps-section h2,
    .home-streaming-section h2,
    .services-section h2 {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}