/* 
   nexomirtv - Custom CSS Style
   Author: nexomirtv
   Colors: Soft Ivory Background (#FFFDF7), Slate Black Text (#0F172A), 
           Bold Royal Blue (#2563EB), Vibrant Crimson Red (#DC2626)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #EFF6FF;
    --secondary: #DC2626;
    --secondary-dark: #B91C1C;
    --secondary-light: #FEF2F2;
    --bg-page: #FFFDF7;
    --bg-card: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --border-color: rgba(37, 99, 235, 0.08);
    --border-strong: rgba(15, 23, 42, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
    --font-heading: 'Outfit', 'Poppins', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* --- Global Reset & Overflow Rules --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

section {
    width: 100%;
    box-sizing: border-box;
    padding: 80px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
}

/* --- Top Announcement/Urgency Banner --- */
.promo-banner {
    background-color: var(--secondary);
    color: #FFFFFF;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    letter-spacing: 0.5px;
    z-index: 1010;
    position: relative;
}

.promo-banner span {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 8px;
    text-transform: uppercase;
}

/* --- Header / Navigation --- */
.header {
    background-color: rgba(255, 253, 247, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
    font-family: var(--font-heading);
}

.header__logo-img {
    height: 38px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.header__nav-item a {
    font-weight: 550;
    font-size: 15px;
    color: var(--text-main);
}

.header__nav-item a:hover {
    color: var(--primary);
}

.header__cta {
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.header__cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.header__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    padding: 4px;
}

/* Mobile side menu */
.header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: var(--bg-page);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__mobile-menu.active {
    right: 0;
}

.header__mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.header__mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-main);
    cursor: pointer;
    margin-bottom: 30px;
}

.header__mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header__mobile-item a {
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 6px 0;
}

.header__mobile-cta {
    margin-top: 40px;
    text-align: center;
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    display: block;
}

/* --- Common Buttons & Badges --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn--secondary {
    background-color: var(--secondary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.btn--secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
}

.btn--outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-strong);
}

.btn--outline:hover {
    background-color: rgba(15, 23, 42, 0.03);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* --- Section Formatting --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 17px;
}

.bg-white {
    background-color: #FFFFFF;
}

/* --- Section 1: Hero Section --- */
.hero {
    padding: 30px 16px 40px 16px;
    background: linear-gradient(180deg, var(--primary-light) 0%, rgba(255, 253, 247, 0.5) 100%);
    overflow: hidden;
    position: relative;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero__content {
    flex: 1;
    max-width: 580px;
}

.hero__badge-container {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero__badge-save {
    background-color: var(--secondary-light);
    color: var(--secondary);
    border: 1px solid rgba(220, 38, 38, 0.15);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.hero__badge-trust {
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero__sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero__tagline {
    font-style: italic;
    font-weight: 650;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
    font-size: 15px;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero__reviews-trust {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__stars {
    color: #F59E0B;
    font-weight: bold;
}

.hero__visual {
    flex: 1;
    max-width: 520px;
    width: 100%;
}

/* --- Hot Player UI (Streaming Preview Component) --- */
.tv-content {
    background: linear-gradient(135deg, #0b1120 0%, #070a13 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(37, 99, 235, 0.15);
    padding: 24px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.tv-logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tv-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
}

.tv-logo-icon {
    width: 20px;
    height: 20px;
    color: #f59e0b;
}

.tv-logo-text strong {
    color: #f59e0b;
}

.tv-version {
    font-size: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.tv-sub-status {
    display: flex;
    align-items: center;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 11px;
}

.status-active {
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.status-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 8px;
}

.status-expire {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tv-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.tv-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tv-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: scale(1.03);
    border-color: rgba(245, 158, 11, 0.3);
}

.tv-card.active {
    background-color: rgba(245, 158, 11, 0.05);
    border: 1.5px solid #f59e0b;
}

.tv-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-card-icon svg {
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.85);
}

.tv-card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.tv-card span {
    font-size: 14px;
    font-weight: 550;
    color: rgba(255, 255, 255, 0.9);
}

.tv-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tv-icon-group {
    display: flex;
    gap: 12px;
}

.tv-icon-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.tv-icon-btn:hover {
    color: #f59e0b;
    background-color: rgba(255, 255, 255, 0.08);
}

/* --- Slide Galleries / Carousels (CSS Scroller) --- */
.carousel-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 10px 0;
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-track {
    display: flex;
    gap: 16px;
}

.gallery-card {
    flex: 0 0 auto;
    background-color: #FDFBEE; /* creamy white opacity bg */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-card img {
    border-radius: 8px;
    width: 100%;
    display: block;
}

/* Dark Gallery Card Frame for Dark/Black Backgrounds */
.gallery-card--dark-frame {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

/* aspect ratio rule definitions */
.aspect-logo {
    width: 150px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.aspect-movie {
    width: 160px;
    aspect-ratio: 1 / 1.482;
    object-fit: cover;
}

.aspect-sport {
    width: 180px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.aspect-device {
    width: 140px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.aspect-wtsp {
    width: 220px;
    aspect-ratio: 473 / 1024;
    object-fit: cover;
}

/* --- Section 5: Comparison Table --- */
.compare-container {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    width: 100%;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.compare-table th, .compare-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.compare-table th {
    background-color: var(--primary-light);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
}

.compare-table td:nth-child(2) {
    font-weight: 700;
    color: var(--primary);
    background-color: rgba(37, 99, 235, 0.02);
}

.compare-table td:nth-child(3) {
    color: var(--text-muted);
}

/* --- Section 6: Pricing Plans --- */
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card--popular {
    border: 2.5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
}

.price-card__popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card__head {
    margin-bottom: 24px;
    text-align: center;
}

.price-card__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-card__price {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.price-card__equivalent {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-card__features {
    list-style: none;
    margin-bottom: 30px;
}

.price-card__features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-card__features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.price-card__features li.disabled {
    text-decoration: line-through;
    color: var(--text-light);
}

.price-card__features li.disabled::before {
    content: "✕";
    color: var(--secondary);
}

.price-card__cta {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    background-color: var(--primary);
    color: #FFFFFF;
}

.price-card--popular .price-card__cta {
    background-color: var(--secondary);
}

.price-card--popular .price-card__cta:hover {
    background-color: var(--secondary-dark);
}

/* Horizontal Plan Card (1 Month Plan) */
.price-card--horizontal {
    grid-column: 1 / span 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.price-card--horizontal .price-card__head {
    margin-bottom: 0;
    text-align: left;
}

.price-card--horizontal .price-card__features {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.price-card--horizontal .price-card__features li {
    border-bottom: none;
    padding: 0;
}

/* Payment Icons Component */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 20px auto;
    text-align: center;
}

.payment-methods__image {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 4px;
    background-color: #FFFFFF;
}

/* Multi Screen pricing wrapper */
.multi-screen-header {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
}

.multi-screen-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.multi-screen-header p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.multi-pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.multi-price-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.multi-price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.multi-price-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.multi-price-card__price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.multi-price-card__sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.multi-price-card__cta {
    display: block;
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.multi-price-card__cta--contact {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}

.multi-price-card__cta--contact:hover {
    background-color: var(--text-main);
    color: #FFFFFF;
}

/* --- Section 7: 3-Step Activation --- */
.activation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.step-card__number {
    font-size: 50px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.08);
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
}

.step-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 12px;
}

.step-card__text {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Section 9: Customer Reviews --- */
.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
    font-size: 16px;
    font-weight: 600;
}

.review-slider {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.review-slider::-webkit-scrollbar {
    display: none;
}

.review-track {
    display: flex;
    gap: 20px;
}

.review-card {
    flex: 0 0 350px;
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card__stars {
    color: #F59E0B;
    margin-bottom: 10px;
}

.review-card__text {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 18px;
}

.review-card__screenshot {
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-height: 180px;
    object-fit: cover;
    width: 100%;
}

.review-card__user {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-card__info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.review-card__info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.review-card__badge {
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
}

/* --- Section 12: FAQs Accordion --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 650;
    font-size: 16px;
    color: var(--text-main);
}

.faq-icon {
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- Footer Layout --- */
.footer {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 30px 24px;
    width: 100%;
}

.footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
}

.footer__about {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 34px;
    width: auto;
    border-radius: 6px;
}

.footer__desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer__col-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__link a:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer__bottom {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copy {
    font-size: 13px;
    color: var(--text-light);
}

.footer__legal-links {
    display: flex;
    gap: 20px;
}

.footer__legal-link a {
    font-size: 13px;
    color: var(--text-light);
}

.footer__legal-link a:hover {
    color: var(--primary);
}

/* --- Internal Content Pages Styles (General Utilities) --- */
.content-hero {
    background: linear-gradient(180deg, var(--primary-light) 0%, rgba(255, 253, 247, 0.5) 100%);
    padding: 60px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.content-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.content-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.content-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.content-layout h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.content-layout h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-layout p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
}

.content-layout ul, .content-layout ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.content-layout li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 15.5px;
}

.installation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.install-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.install-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-card h3 i {
    color: var(--primary);
}

.install-card ol {
    padding-left: 18px;
}

.install-card li {
    margin-bottom: 12px;
}

.install-badge {
    background-color: var(--secondary-light);
    color: var(--secondary);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14.5px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* --- Responsive Design (Mobile First & Switch to Column) --- */

@media (max-width: 1024px) {
    .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-card--horizontal {
        grid-column: span 2;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    /* Hero section switch to column */
    .hero__container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero__visual {
        max-width: 100%;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__title {
        font-size: 34px;
    }
    
    .hero__badge-container, .hero__ctas {
        justify-content: center;
    }
    
    .hero__tagline {
        border-left: none;
        border-bottom: 2px solid var(--primary);
        padding-left: 0;
        padding-bottom: 8px;
    }
    
    /* Toggle burger menu visibility */
    .header__nav-list, .header__cta {
        display: none;
    }
    
    .header__toggle {
        display: block;
    }
    
    /* Pricing list to single column */
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }
    
    .price-card--horizontal {
        grid-column: span 1;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .price-card--horizontal .price-card__features {
        flex-direction: column;
        gap: 10px;
    }
    
    .multi-pricing-wrapper {
        grid-template-columns: 1fr;
    }
    
    .activation-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer__about {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }
    
    .review-card {
        flex: 0 0 280px;
    }
    
    .tv-content {
        padding: 16px;
    }
    
    .tv-cards {
        grid-template-columns: 1fr;
    }
    
    .compare-table th, .compare-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* --- Infinite Marquee Logo Scroller --- */
.logo-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 16px 0;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

/* --- Fixed widths for gallery cards to prevent flex shrink/distortion --- */
.gallery-card--logo {
    width: 166px; /* 150px image width + 16px card padding */
    background-color: #0F172A !important; /* solid slate black bg for white logos */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.gallery-card--movie {
    width: 176px; /* 160px image width + 16px card padding */
}

.gallery-card--sport {
    width: 196px; /* 180px image width + 16px card padding */
}

.gallery-card--device {
    width: 156px; /* 140px image width + 16px card padding */
}

.gallery-card--preview {
    width: 296px; /* 280px image width + 16px card padding */
}

.gallery-card--wtsp {
    width: 236px; /* 220px image width + 16px card padding */
}

/* --- Generic Infinite Marquee Engine --- */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 16px 0;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Animations */
.marquee-anim--left-fast {
    animation: marquee-scroll 30s linear infinite;
}
.marquee-anim--left-med {
    animation: marquee-scroll 45s linear infinite;
}
.marquee-anim--left-slow {
    animation: marquee-scroll 60s linear infinite;
}
.marquee-anim--right-fast {
    animation: marquee-scroll-reverse 30s linear infinite;
}
.marquee-anim--right-med {
    animation: marquee-scroll-reverse 45s linear infinite;
}
.marquee-anim--right-slow {
    animation: marquee-scroll-reverse 60s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
