/* ═══════════════════════════════════════
   IPTV SELECT — INNER PAGES STYLES
   Channels, Installation, Contact, Legal
═══════════════════════════════════════ */

/* ────────────────────────────────────
   SHARED PAGE STYLES
──────────────────────────────────── */
.page-channels, .page-installation, .page-contact, .page-legal {
    background: #0a0a0f;
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
}

/* ═══════════════════════════════════════
   CHANNELS PAGE
═══════════════════════════════════════ */

.channels-hero {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, #0d1b3e 0%, #0a0a0f 100%);
}
.channels-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.channels-hero p {
    color: #aaa;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.channel-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.channel-stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-top: 4px;
}
.stat-sub {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* Streaming Services */
.streaming-services-section {
    padding: 60px 20px;
    text-align: center;
}
.streaming-services-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.streaming-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.stream-logo-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.9rem;
    color: #ccc;
    transition: all 0.2s;
}
.stream-logo-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    color: #fff;
}

/* Channel Categories */
.channel-categories-section {
    padding: 60px 20px;
}
.channel-categories-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.cat-tab {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.cat-tab:hover {
    border-color: #00d4ff;
    color: #fff;
}
.cat-tab.active {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border-color: #00d4ff;
    color: #fff;
    font-weight: 600;
}

/* Channel Groups */
.channel-group {
    display: none;
}
.channel-group.active {
    display: block;
}
.channel-group h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Channel Grid */
.channel-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.channel-chip {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    color: #ddd;
    transition: all 0.2s;
    white-space: nowrap;
}
.channel-chip:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

/* Channels CTA */
.channels-cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d1b3e 50%, #0a0a0f 100%);
}
.channels-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.channels-cta p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 1.1rem;
}


/* ═══════════════════════════════════════
   INSTALLATION PAGE
═══════════════════════════════════════ */

.install-hero {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, #0d1b3e 0%, #0a0a0f 100%);
}
.install-hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.install-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.install-hero p {
    color: #aaa;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Install Guides */
.install-guides-section {
    padding: 60px 20px;
}
.install-guides-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.install-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.install-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}
.install-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.install-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.install-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.install-steps {
    margin-bottom: 20px;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.install-help-btn {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}
.install-help-btn:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-1px);
    color: #25d366;
}

/* Install CTA */
.install-cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d1b3e 50%, #0a0a0f 100%);
}
.install-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.install-cta p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* ═══════════════════════════════════════
   INSTALLATION PAGE v2
═══════════════════════════════════════ */

.install2-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.install2-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 60%, #0d1b3e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.install2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.install2-badge {
    display: inline-block;
    background: rgba(0,212,255,0.10);
    color: #00d4ff;
    border: 1px solid rgba(0,212,255,0.35);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.install2-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.install2-hero-sub {
    font-size: 1.15rem;
    color: #aab4c0;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.install2-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.install2-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.install2-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,212,255,0.35);
}
.install2-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,211,102,0.10);
    color: #25d366;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid rgba(37,211,102,0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.install2-wa-btn:hover {
    background: rgba(37,211,102,0.18);
    transform: translateY(-2px);
}
.install2-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.install2-stat {
    padding: 0 30px;
    border-right: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}
.install2-stat:last-child { border-right: none; }
.install2-stat-number {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.install2-stat-label {
    display: block;
    font-size: 0.78rem;
    color: #8899aa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* Choice section */
.install2-choice-section {
    padding: 70px 20px;
    background: #0a0a0f;
}
.install2-choice-heading {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.install2-choice-sub {
    text-align: center;
    color: #8899aa;
    font-size: 1rem;
    margin: 0 0 36px;
}
.install2-tabs {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 6px;
}
.install2-tab {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid transparent;
    color: #8899aa;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}
.install2-tab.active {
    background: rgba(0,212,255,0.08);
    border-color: rgba(0,212,255,0.40);
    color: #00d4ff;
    box-shadow: 0 0 16px rgba(0,212,255,0.12);
}
.install2-tab:hover:not(.active) {
    background: rgba(255,255,255,0.04);
    color: #ccc;
}
.install2-panel {
    display: none;
}
.install2-panel.active {
    display: block;
}

/* "For Me" panel */
.install2-forme-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}
.install2-howit {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 24px;
}
.install2-howit h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}
.install2-howit-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.install2-howit-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.install2-howit-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #000;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.install2-howit-step-title {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 3px;
}
.install2-howit-step-desc {
    color: #8899aa;
    font-size: 0.88rem;
    line-height: 1.5;
}
.install2-forme-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.install2-devices-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 32px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
}
.install2-device-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ccc;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 500;
}
.install2-trust-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 24px;
    position: sticky;
    top: 90px;
}
.install2-trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}
.install2-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.install2-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #aab4c0;
    font-size: 0.9rem;
    line-height: 1.4;
}
.install2-trust-list li::before {
    content: '✓';
    color: #00d4ff;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.install2-help-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.install2-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,212,255,0.35);
}

/* "Myself" panel – accordion */
.install2-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}
.install2-acc-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.install2-acc-item.open {
    border-color: rgba(0,212,255,0.30);
}
.install2-acc-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
}
.install2-acc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.install2-acc-label {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
}
.install2-acc-diff {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.04);
    color: #8899aa;
    border-color: rgba(255,255,255,0.12);
    margin-right: 4px;
}
.install2-acc-diff.popular    { background: rgba(0,212,255,0.10); color: #00d4ff; border-color: rgba(0,212,255,0.30); }
.install2-acc-diff.easy       { background: rgba(16,185,129,0.10); color: #10b981; border-color: rgba(16,185,129,0.30); }
.install2-acc-diff.moderate   { background: rgba(245,158,11,0.10); color: #f59e0b; border-color: rgba(245,158,11,0.30); }
.install2-acc-diff.advanced   { background: rgba(239,68,68,0.10); color: #ef4444; border-color: rgba(239,68,68,0.30); }
.install2-acc-chevron {
    color: #cbd5e1;
    font-size: 1rem;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.install2-acc-item.open .install2-acc-chevron {
    transform: rotate(180deg);
    color: #00d4ff;
}
.install2-acc-recommended {
    display: inline-block;
    background: rgba(0,212,255,0.12);
    color: #00d4ff;
    border: 1px solid rgba(0,212,255,0.30);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-left: 4px;
}
.install2-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.install2-acc-item.open .install2-acc-body {
    max-height: 2000px;
}
.install2-acc-body-inner {
    padding: 4px 22px 24px 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.install2-steps-list {
    list-style: none;
    padding: 16px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    counter-reset: step-counter;
}
.install2-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #aab4c0;
    font-size: 0.92rem;
    line-height: 1.55;
}
.install2-steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #000;
    font-weight: 700;
    font-size: 0.78rem;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.install2-acc-note {
    margin: 12px 0 0;
    padding: 12px 16px;
    background: rgba(0,212,255,0.06);
    border-left: 3px solid #00d4ff;
    border-radius: 0 6px 6px 0;
    color: #8899aa;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Myself Panel CTA */
.install2-myself-cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}
.install2-myself-cta p {
    color: #aab4c0;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* Trust bar */
.install2-trust-bar {
    background: #0d0d15;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 20px;
}
.install2-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.install2-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.install2-trust-item:last-child { border-right: none; }
.install2-trust-icon2 {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.install2-trust-item-text strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.install2-trust-item-text span {
    color: #8899aa;
    font-size: 0.78rem;
}

/* SEO section */
.install2-seo {
    background: #0a0a0f;
    padding: 70px 20px;
    color: #94a3b8;
}
.install2-seo h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}
.install2-seo h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 32px 0 10px;
}
.install2-seo p {
    line-height: 1.75;
    margin: 0 0 14px;
    font-size: 0.95rem;
}
.install2-faq {
    margin-top: 40px;
}
.install2-faq-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}
.install2-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.install2-faq-item:last-child { border-bottom: none; }
.install2-faq-q {
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0 0 8px;
}
.install2-faq-a {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

/* Bottom CTA */
.install2-bottom-cta {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 60%, #0d1b3e 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.install2-bottom-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0,212,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.install2-bottom-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.install2-bottom-cta p {
    color: #aab4c0;
    font-size: 1.05rem;
    margin: 0 0 32px;
}
.install2-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 860px) {
    .install2-forme-grid {
        grid-template-columns: 1fr;
    }
    .install2-trust-card {
        position: static;
    }
    .install2-hero h1 {
        font-size: 2rem;
    }
}
@media (max-width: 600px) {
    .install2-hero {
        padding: 80px 20px 60px;
    }
    .install2-hero h1 {
        font-size: 1.6rem;
    }
    .install2-stat {
        padding: 10px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .install2-stat:last-child { border-bottom: none; }
    .install2-tabs {
        flex-direction: column;
    }
    .install2-trust-item {
        border-right: none;
        padding: 10px 16px;
    }
    .install2-choice-heading { font-size: 1.5rem; }
    .install2-bottom-cta h2 { font-size: 1.6rem; }
    .install2-acc-head { padding: 14px 16px; }
    .install2-acc-body-inner { padding: 4px 16px 22px; }
}


/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */

.contact-hero {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, #0d1b3e 0%, #0a0a0f 100%);
}
.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-hero p {
    color: #aaa;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods-section {
    padding: 60px 20px;
    text-align: center;
}
.contact-methods-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.contact-card p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}
.contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    color: #fff;
}
.contact-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 20px 80px;
}
.contact-two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-form-wrap h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.contact-form-wrap > p {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 6px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}
.form-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 25px;
}
.info-block h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-details {
    list-style: none;
    padding: 0;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.contact-details a {
    color: #00d4ff;
    text-decoration: none;
}
.contact-details a:hover {
    text-decoration: underline;
}
.detail-icon {
    font-size: 1.1rem;
}

.mini-faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mini-faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.mini-faq-item h4 {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 5px;
}
.mini-faq-item p {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
    line-height: 1.5;
}

.support-hours .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}
.support-hours .hours-row span {
    color: #aaa;
}
.support-hours .hours-row strong {
    color: #25d366;
}


/* ═══════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
═══════════════════════════════════════ */

.page-legal .legal-content {
    padding: 100px 20px 80px;
}
.page-legal .container {
    max-width: 800px;
}
.page-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #00d4ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-legal h2 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-legal p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.page-legal ul {
    margin: 10px 0 20px 20px;
    color: #ccc;
}
.page-legal li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 0.95rem;
}
.page-legal a {
    color: #00d4ff;
    text-decoration: none;
}
.page-legal a:hover {
    text-decoration: underline;
}
.legal-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666 !important;
    font-size: 0.85rem !important;
    font-style: italic;
}


/* ═══════════════════════════════════════
   SHARED CTA BUTTON
═══════════════════════════════════════ */

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    color: #fff;
}
.cta-outline {
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
}
.cta-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 768px) {
    .channels-hero h1,
    .install-hero h1,
    .contact-hero h1,
    .page-legal h1 {
        font-size: 1.8rem;
    }

    .channel-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .install-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-two-col {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        gap: 6px;
    }
    .cat-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   FREE TRIAL PAGE
═══════════════════════════════════════ */
.page-free-trial {
    background: #0a0a0f;
    color: #fff;
    min-height: 100vh;
}

/* Hero */
.trial-page-hero {
    text-align: center;
    padding: 100px 20px 70px;
    background: linear-gradient(180deg, #0d2a1a 0%, #0a0a0f 100%);
}

.trial-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.trial-page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #4ade80, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
}

.trial-page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.trial-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trial-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trial-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #4ade80;
}

.trial-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.trial-hero-cta {
    display: inline-block;
    padding: 18px 48px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(22,163,74,0.4);
}

.trial-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(22,163,74,0.5);
}

.trial-hero-note {
    margin-top: 14px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Includes */
.trial-includes-section {
    padding: 80px 20px;
}

.trial-includes-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.trial-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.trial-include-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
}

.trial-include-card:hover {
    border-color: rgba(74,222,128,0.3);
    transform: translateY(-3px);
}

.ti-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.trial-include-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trial-include-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* How It Works */
.trial-how-section {
    padding: 80px 20px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trial-how-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.trial-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.trial-step {
    flex: 0 0 220px;
    text-align: center;
}

.trial-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.trial-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trial-step p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.trial-step-arrow {
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
    align-self: center;
    flex-shrink: 0;
}

.trial-cta-center {
    text-align: center;
    margin-top: 20px;
}

.trial-page-cta-btn {
    display: inline-block;
    padding: 16px 44px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(22,163,74,0.35);
}

.trial-page-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(22,163,74,0.5);
}

.trial-cta-note {
    margin-top: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Reviews */
.trial-reviews-section {
    padding: 80px 20px;
}

.trial-reviews-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.trial-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.trial-review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 24px;
}

.review-stars {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.trial-review-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}

.review-author {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* FAQ */
.trial-faq-section {
    padding: 80px 20px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.trial-faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.trial-faq-list {
    max-width: 760px;
    margin: 0 auto 40px;
}

.trial-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}

.trial-faq-item:last-child {
    border-bottom: none;
}

.trial-faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.trial-faq-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════ */
.page-pricing {
    background: #0a0a0f;
    color: #fff;
    min-height: 100vh;
}

.pricing-page-hero {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, #0d1b3e 0%, #0a0a0f 100%);
}

.pricing-page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #60a5fa, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.pricing-hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Cards */
.pricing-page-cards {
    padding: 60px 20px 80px;
}

.pricing-page-wrap {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.pp-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 28px;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}

.pp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96,165,250,0.3);
}

.pp-featured {
    border-color: #2563eb;
    background: rgba(37,99,235,0.08);
    box-shadow: 0 0 40px rgba(37,99,235,0.15);
}

.pp-tier-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.pp-popular-badge {
    font-size: 0.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.pp-plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.pp-plan-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pp-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.pp-price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}

.pp-price-monthly {
    font-size: 0.85rem;
    color: #4ade80;
    margin-bottom: 24px;
    font-weight: 600;
}

.pp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.pp-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pp-features li:last-child {
    border-bottom: none;
}

.pp-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 10px;
}

.pp-starter-btn  { background: linear-gradient(135deg, #374151, #1f2937); color: #fff; }
.pp-premium-btn  { background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; }
.pp-ultimate-btn { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; }

.pp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.pp-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* Free Trial Banner */
.pricing-trial-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 16px;
    padding: 28px 36px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.ptb-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.ptb-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.ptb-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #16a34a, #059669);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ptb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22,163,74,0.35);
}

/* Comparison Table */
.pricing-comparison-section {
    padding: 80px 20px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pricing-comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-compare-table-wrap {
    overflow-x: auto;
    margin-top: 40px;
}

.pricing-compare-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-compare-table th {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-compare-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.65);
}

.compare-row-highlight td {
    background: rgba(37,99,235,0.07);
    color: #fff;
}

.compare-row-highlight td:first-child {
    border-left: 3px solid #2563eb;
}

/* Pricing FAQ */
.pricing-faq-section {
    padding: 80px 20px;
}

.pricing-faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 44px;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pfaq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 24px;
}

.pfaq-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.pfaq-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Responsive — Free Trial & Pricing */
@media (max-width: 900px) {
    .trial-includes-grid,
    .trial-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .trial-page-hero h1,
    .pricing-page-hero h1 {
        font-size: 1.9rem;
    }
    .trial-includes-grid,
    .trial-reviews-grid {
        grid-template-columns: 1fr;
    }
    .trial-steps {
        flex-direction: column;
        align-items: center;
    }
    .trial-step-arrow {
        transform: rotate(90deg);
    }
    .pp-card {
        flex: 0 0 100%;
    }
    .pricing-trial-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================================
   ARTICLE PAGES (is-iptv-legal, what-is-iptv, devices, iptv-vs-streaming)
   Dark theme — consistent with site design
   ============================================================================ */

/* Hero */
.article-hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 60%, #0d1b3e 100%);
    padding: 60px 20px 0;
    text-align: center;
}
.article-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.article-breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.article-breadcrumb a { color: #818cf8; text-decoration: none; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-breadcrumb span { margin: 0 6px; }
.article-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
}
.article-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
    margin: 0 0 20px;
}
.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

/* Body container — DARK background */
.article-body { background: #0d0d1a; padding: 50px 20px 60px; }
.article-container { max-width: 860px; margin: 0 auto; }

/* Answer box */
.answer-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}
.answer-yes { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); }
.answer-info { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.25); }
.answer-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.answer-content strong { display: block; font-size: 1.05rem; color: #fff; margin-bottom: 6px; }
.answer-content p { margin: 0; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* Sections */
.article-sections { display: flex; flex-direction: column; gap: 50px; }
.article-section {}
.article-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Legal comparison grid */
.legal-comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.legal-card { border-radius: 10px; padding: 22px; }
.legal-ok { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2); }
.legal-risk { background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.2); }
.legal-card h3 { font-size: 1rem; margin: 0 0 14px; color: #fff; }
.legal-ok h3 { color: #4ade80; }
.legal-risk h3 { color: #fbbf24; }
.legal-card ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.8; }

/* Info callout */
.info-callout {
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.25);
    border-left: 4px solid #6366f1;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-top: 20px;
    color: rgba(255,255,255,0.75);
    font-size: 0.93rem;
    line-height: 1.6;
}
.info-callout strong { color: #a5b4fc; }

/* Trust badges */
.trust-badges-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.trust-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    flex: 1;
    min-width: 110px;
}

/* Styled lists */
.styled-ol { padding-left: 20px; color: rgba(255,255,255,0.72); line-height: 2; }
.styled-ol li { margin-bottom: 4px; color: rgba(255,255,255,0.72); }
.styled-ul { padding-left: 20px; color: rgba(255,255,255,0.72); line-height: 2; }
.styled-ul li { margin-bottom: 4px; color: rgba(255,255,255,0.72); }

/* How-it-works steps */
.how-works-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.hw-step { display: flex; gap: 18px; align-items: flex-start; }
.hw-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff; font-weight: 800; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hw-text strong { display: block; font-size: 0.98rem; color: #fff; margin-bottom: 4px; }
.hw-text p { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.5; }

/* Content categories */
.content-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.cat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}
.cat-card strong { display: block; color: #fff; margin: 6px 0 4px; font-size: 0.95rem; }

/* Requirements */
.requirements-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.req-item {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 16px 20px;
    border-left: 4px solid;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.req-must { border-color: #22c55e; }
.req-optional { border-color: #6366f1; }
.req-label {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.req-must .req-label { color: #22c55e; }
.req-optional .req-label { color: #818cf8; }
.req-item strong { font-size: 0.97rem; color: #fff; }
.req-item p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Simple comparison (two columns) */
.comparison-simple { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.comp-col { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 22px; border: 1px solid rgba(255,255,255,0.07); }
.comp-new { border-color: rgba(99,102,241,0.3); }
.comp-col h4 { font-size: 1rem; margin: 0 0 14px; color: #fff; }
.comp-col ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.9; }

/* Cost table */
.cost-table-wrap { overflow-x: auto; margin-top: 20px; }
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.cost-table th {
    background: rgba(99,102,241,0.15);
    color: #c7d2fe;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.cost-table td { padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.72); }
.cost-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.cost-table-highlight td { background: rgba(99,102,241,0.08) !important; color: #fff !important; font-weight: 600; }

/* Devices grid */
.devices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.device-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 22px;
    position: relative;
}
.device-top { border-color: rgba(99,102,241,0.3); box-shadow: 0 4px 20px rgba(99,102,241,0.1); }
.device-badge {
    position: absolute;
    top: -10px; left: 18px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.device-icon { font-size: 2rem; margin-bottom: 10px; }
.device-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
.device-rating { color: #fbbf24; font-size: 0.9rem; margin-bottom: 10px; }
.device-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.55; margin: 0 0 12px; }
.device-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.device-specs span {
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
}
.device-verdict { font-size: 0.83rem; font-weight: 600; color: #4ade80; }

/* App list */
.app-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.app-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 16px 18px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.app-item strong { color: #fff; }

/* Full comparison table (iptv-vs-streaming) */
.full-comparison-table { overflow-x: auto; margin-top: 20px; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.comp-table th {
    background: rgba(99,102,241,0.15);
    color: #c7d2fe;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
}
.comp-table th.highlight-col { background: rgba(99,102,241,0.3); color: #fff; }
.comp-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); vertical-align: middle; }
.comp-table td.highlight-col { background: rgba(99,102,241,0.08); font-weight: 600; color: #fff; }
.comp-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.comp-table tr:nth-child(even) td.highlight-col { background: rgba(99,102,241,0.06); }

/* Savings calculator */
.savings-calc {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.savings-before, .savings-after { flex: 1; min-width: 220px; }
.savings-before h4, .savings-after h4 { font-size: 0.95rem; margin: 0 0 14px; color: #fff; }
.savings-line { display: flex; justify-content: space-between; font-size: 0.88rem; color: rgba(255,255,255,0.6); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.savings-line.savings-empty { color: transparent; border-color: transparent; }
.savings-total { font-weight: 700; color: #fff !important; font-size: 0.95rem !important; border-bottom: 2px solid rgba(255,255,255,0.12) !important; }
.savings-annual { margin-top: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.savings-after .savings-total span { color: #4ade80; }
.savings-arrow { font-size: 2rem; color: rgba(255,255,255,0.2); flex-shrink: 0; }
.savings-result {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 10px;
    padding: 18px 24px;
    margin-top: 20px;
    font-size: 1.05rem;
    color: #4ade80;
    text-align: center;
}

/* Pros/cons grids */
.pros-cons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.pro-card {
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: 10px;
    padding: 18px;
}
.pro-card h4 { font-size: 0.95rem; margin: 0 0 8px; color: #4ade80; }
.pro-card p { margin: 0; font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.cons-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.con-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 16px 18px;
}
.con-item strong { display: block; color: #fff; margin-bottom: 6px; font-size: 0.95rem; }
.con-item p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* FAQ list */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
}
.faq-q {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    cursor: pointer;
    position: relative;
}
.faq-q::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: #6366f1; }
.faq-a {
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
}
.faq-a a { color: #818cf8; text-decoration: none; }

/* Article CTA banner */
.article-cta-banner {
    background: linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(139,92,246,0.1) 100%);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}
.article-cta-content h3 { font-size: 1.5rem; color: #fff; margin: 0 0 12px; }
.article-cta-content p { color: rgba(255,255,255,0.62); font-size: 0.95rem; margin: 0 0 24px; line-height: 1.6; }
.article-cta-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(99,102,241,0.35);
}
.article-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,0.5); }
.article-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.article-cta-secondary {
    color: #818cf8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}
.article-cta-secondary:hover { text-decoration: underline; }

/* Related articles */
.article-related { margin-top: 48px; }
.article-related h3 { font-size: 1.2rem; color: #fff; margin: 0 0 20px; }
.article-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.related-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 18px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.related-card:hover { border-color: rgba(99,102,241,0.25); box-shadow: 0 4px 16px rgba(99,102,241,0.1); }
.related-card strong { color: #fff; font-size: 0.95rem; }
.related-card span { color: rgba(255,255,255,0.5); font-size: 0.83rem; line-height: 1.4; }

/* Responsive */
@media (max-width: 700px) {
    .legal-comparison-grid,
    .comparison-simple,
    .devices-grid,
    .pros-cons-grid,
    .article-related-grid { grid-template-columns: 1fr; }

    .content-categories { grid-template-columns: repeat(2, 1fr); }
    .trust-badges-row { gap: 10px; }
    .trust-badge { min-width: 80px; font-size: 0.75rem; }
    .article-cta-banner { padding: 28px 20px; }
    .savings-calc { flex-direction: column; }
    .savings-arrow { display: none; }
}

@media (max-width: 420px) {
    .content-categories { grid-template-columns: 1fr; }
}

/* ─── ARTICLE BANNER (image + overlay stats) ──── */
.article-banner {
    position: relative;
    background: #0a0a1a;
    overflow: hidden;
    /* gradient bridge from hero → body */
    border-bottom: 4px solid rgba(245,158,11,0.3);
}

/* The generated image — cropped to 16:5 banner ratio */
.article-banner-img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.75;
}

/* Dark gradient overlay so stats are readable */
.article-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8,8,20,0.95) 0%, rgba(8,8,20,0.5) 60%, transparent 100%);
    padding: 28px 24px 24px;
}

/* Stats row */
.article-banner-stats {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ab-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 10px;
    backdrop-filter: blur(6px);
}

.ab-icon { font-size: 1.4rem; line-height: 1; }

.ab-stat strong {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
}

.ab-stat em {
    font-style: normal;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* Per-type accent colours */
.article-banner--legal  { border-bottom-color: rgba(52,211,153,0.4); }
.article-banner--iptv   { border-bottom-color: rgba(245,158,11,0.4); }
.article-banner--devices{ border-bottom-color: rgba(129,140,248,0.4); }
.article-banner--compare{ border-bottom-color: rgba(248,113,113,0.4); }

/* ─── ARTICLE BANNER RESPONSIVE ─────────────── */
@media (max-width: 768px) {
    .article-banner-img { height: 220px; }
    .article-banner-overlay { padding: 20px 14px 16px; }
    .article-banner-stats { gap: 8px; }
    .ab-stat { padding: 10px 8px; border-radius: 8px; }
    .ab-icon { font-size: 1.2rem; }
    .ab-stat em { font-size: 0.8rem; }
    .ab-stat strong { font-size: 0.62rem; }
}

@media (max-width: 540px) {
    .article-banner-img { height: 180px; object-position: center center; }
    .article-banner-stats { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .article-banner-overlay { padding: 14px 12px 12px; }
}

@media (max-width: 360px) {
    .article-banner-img { height: 150px; }
    .ab-stat em { font-size: 0.75rem; }
}

/* ─── ARTICLE PAGE TYPOGRAPHY ───────────────── */
.article-sections p {
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    font-size: 0.97rem;
    margin-bottom: 14px;
}
.article-sections p:last-child { margin-bottom: 0; }
.article-section a { color: #818cf8; text-decoration: none; }
.article-section a:hover { text-decoration: underline; color: #a5b4fc; }

/* ─── ARTICLE SEO SECTION ────────────────────── */
.article-seo-section {
    padding: 50px 20px;
    background: #0d0d15;
    border-top: 1px solid rgba(255,255,255,.05);
}
.article-seo-section .seo-inner {
    max-width: 900px;
    margin: 0 auto;
}
.article-seo-section h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
}
.article-seo-section p {
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.96rem;
}
.article-seo-section p:last-child { margin-bottom: 0; }

/* ─── COMPREHENSIVE MOBILE FIXES ─────────────── */
@media (max-width: 768px) {
    /* Hero */
    .article-hero { padding: 40px 16px 0; }
    .article-hero-inner { padding-bottom: 28px; }
    .article-hero h1 { font-size: clamp(1.35rem, 5vw, 1.9rem); }
    .article-subtitle { font-size: 0.95rem; }
    .article-meta { gap: 10px; font-size: 0.8rem; }

    /* Body */
    .article-body { padding: 32px 16px 48px; }
    .article-container { max-width: 100%; }
    .article-sections { gap: 36px; }
    .article-section h2 {
        font-size: clamp(1.1rem, 4vw, 1.35rem);
        padding-bottom: 8px;
    }

    /* Answer box */
    .answer-box { padding: 18px; gap: 12px; }
    .answer-icon { font-size: 1.5rem; }

    /* CTA banner */
    .article-cta-banner { padding: 28px 18px; border-radius: 12px; }
    .article-cta-content h3 { font-size: clamp(1.1rem, 4vw, 1.3rem); margin-bottom: 10px; }
    .article-cta-content p { font-size: 0.88rem; }
    .article-cta-btn { padding: 13px 24px; font-size: 0.95rem; width: 100%; }
    .article-cta-row { flex-direction: column; gap: 14px; }
    .article-cta-secondary { text-align: center; }

    /* Related cards */
    .article-related-grid { grid-template-columns: 1fr; gap: 10px; }
    .related-card { padding: 14px; }

    /* Tables — keep horizontal scroll */
    .cost-table-wrap, .full-comparison-table { -webkit-overflow-scrolling: touch; }
    .cost-table, .comp-table { min-width: 560px; font-size: 0.82rem; }
    .cost-table th, .cost-table td,
    .comp-table th, .comp-table td { padding: 9px 10px; }

    /* Devices */
    .devices-grid { grid-template-columns: 1fr; }
    .device-card { padding: 20px; }

    /* Savings */
    .savings-calc { padding: 18px; }
    .savings-before, .savings-after { min-width: unset; width: 100%; }
    .savings-result { font-size: 0.95rem; padding: 14px 18px; }

    /* Trust badges */
    .trust-badges-row { gap: 8px; }
    .trust-badge { min-width: 70px; padding: 12px 10px; font-size: 0.72rem; }

    /* FAQs */
    .faq-q { padding: 14px 44px 14px 16px; font-size: 0.9rem; }
    .faq-a { padding: 0 16px 14px; font-size: 0.85rem; }

    /* SEO section */
    .article-seo-section { padding: 36px 16px; }
}

@media (max-width: 480px) {
    .article-hero { padding: 30px 14px 0; }
    .article-body { padding: 24px 14px 40px; }
    .content-categories { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cat-card { padding: 14px 10px; font-size: 0.82rem; }
    .legal-comparison-grid,
    .comparison-simple,
    .pros-cons-grid { grid-template-columns: 1fr; }
    .answer-box { flex-direction: column; gap: 8px; }
    .answer-icon { font-size: 1.4rem; }
}

@media (max-width: 360px) {
    .content-categories { grid-template-columns: 1fr; }
    .article-hero h1 { font-size: 1.25rem; }
}
/* Fix duplicate/overlapping images generated via SEO injection */
.article-body > figure.wp-block-image:first-child,
.article-content > figure.wp-block-image:first-child {
    display: none !important;
}

/* Ensure any other Gutenberg images don't overlap */
.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
