/* ============================================================
   NORDIC IPTV CENTER — Full design system
   Brand: Nordic IPTV Center · nordiciptvcenter.vip
   Palette: #0A2540 (deep blue) · #00C2FF (bright cyan) · #fff / #F4F7FA
   Typography: Inter + Plus Jakarta Sans (display)
============================================================ */

:root {
    --c-primary: #0A2540;
    --c-primary-2: #0d3a66;
    --c-cyan: #00C2FF;
    --c-cyan-2: #0099d6;
    --c-bg: #ffffff;
    --c-bg-alt: #F4F7FA;
    --c-bg-soft: #EEF4FB;
    --c-text: #0A2540;
    --c-muted: #5E7591;
    --c-line: #E2EAF3;
    --c-success: #16A34A;
    --c-warn: #F59E0B;
    --c-danger: #DC2626;
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 24px 64px rgba(10, 37, 64, 0.16);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --container: 1240px;
    --display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --body: 'Inter', system-ui, sans-serif;
}

html, body { background: var(--c-bg); color: var(--c-text); font-family: var(--body); line-height: 1.6; }
body.nordic-iptv-center { font-size: 16px; }

a { color: var(--c-cyan); transition: color .2s ease; }
a:hover { color: var(--c-primary); }

img { max-width: 100%; height: auto; }

.iptv-skip { position: absolute; left: -9999px; top: 0; }
.iptv-skip:focus { left: 12px; top: 12px; background: var(--c-primary); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 9999; }

/* ============================================================
   CONTAINER & SECTION
============================================================ */
.iptv-container { max-width: var(--container); margin: 0 auto; padding: 0 5vw; width: 100%; }
.iptv-section { padding: 100px 0; }
.iptv-section-light { background: var(--c-bg); }
.iptv-section-soft { background: var(--c-bg-alt); }
.iptv-section-dark {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
    color: #ffffff;
}
.iptv-section-dark h2, .iptv-section-dark h3, .iptv-section-dark p { color: #fff; }
.iptv-section-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.iptv-section-head .iptv-h2 { margin: 12px 0 16px; }
.iptv-section-head-light .iptv-eyebrow { color: rgba(255, 255, 255, .8); background: rgba(0, 194, 255, .15); }
.iptv-section-foot { text-align: center; margin-top: 48px; }

.iptv-eyebrow {
    display: inline-block;
    background: rgba(0, 194, 255, .12);
    color: var(--c-cyan-2);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.iptv-h1, h1 { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 5vw, 56px); line-height: 1.12; color: var(--c-primary); margin: 0 0 18px; letter-spacing: -.02em; }
.iptv-h2, h2 { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.2; color: var(--c-primary); margin: 0 0 14px; letter-spacing: -.01em; }
.iptv-h3, h3 { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.3; color: var(--c-primary); margin: 0 0 12px; }
.iptv-lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--c-muted); line-height: 1.6; }

.iptv-prose { max-width: 880px; margin: 0 auto; }
.iptv-prose h2 { margin-top: 56px; }
.iptv-prose h3 { margin-top: 36px; }
.iptv-prose p, .iptv-prose li { font-size: 17px; line-height: 1.75; color: #1F3A5F; }
.iptv-prose a { color: var(--c-cyan-2); text-decoration: underline; }
.iptv-prose ul, .iptv-prose ol { padding-left: 24px; }
.iptv-prose ul li, .iptv-prose ol li { margin: 8px 0; }
.iptv-prose strong { color: var(--c-primary); }

/* ============================================================
   BUTTONS
============================================================ */
.iptv-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
    text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    border: 2px solid transparent; cursor: pointer; line-height: 1; white-space: nowrap;
}
.iptv-btn:hover { transform: translateY(-1px); }
.iptv-btn-lg { padding: 18px 34px; font-size: 17px; }
.iptv-btn-block { width: 100%; }

.iptv-btn-primary {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
    color: #fff; box-shadow: var(--shadow-md);
}
.iptv-btn-primary:hover { color: #fff; box-shadow: var(--shadow-lg); }

.iptv-btn-cyan {
    background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-cyan-2) 100%);
    color: #0A2540; font-weight: 800; box-shadow: 0 8px 28px rgba(0, 194, 255, .35);
}
.iptv-btn-cyan:hover { color: #0A2540; box-shadow: 0 14px 36px rgba(0, 194, 255, .5); }

.iptv-btn-ghost { background: transparent; color: var(--c-primary); border-color: var(--c-line); }
.iptv-btn-ghost:hover { background: var(--c-bg-alt); color: var(--c-primary); }

.iptv-btn-light { background: #fff; color: var(--c-primary); }
.iptv-btn-light:hover { color: var(--c-primary); background: #fff; }

/* ============================================================
   HEADER + NAV
============================================================ */
.iptv-header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 1px 0 var(--c-line); }
.iptv-topbar { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%); color: #fff; font-size: 13px; }
.iptv-topbar-inner { max-width: var(--container); margin: 0 auto; padding: 8px 5vw; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
.iptv-topbar a { color: #fff; }
.iptv-topbar a:hover { color: var(--c-cyan); }
.iptv-topbar .iptv-sep { opacity: .35; }

.iptv-nav-inner { max-width: var(--container); margin: 0 auto; padding: 12px 5vw; display: flex; align-items: center; gap: 20px; }
.iptv-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--c-primary); }
.iptv-brand-mark { font-size: 30px; }
.iptv-brand-text strong { font-family: var(--display); font-weight: 800; font-size: 20px; display: block; line-height: 1; color: var(--c-primary); }
.iptv-brand-text em { font-style: normal; font-size: 11px; color: var(--c-muted); letter-spacing: .04em; text-transform: uppercase; }
.iptv-brand-accent { color: var(--c-cyan); }

.iptv-menu { flex: 1; display: flex; justify-content: center; }
.iptv-menu-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.iptv-menu-list li a { color: var(--c-primary); padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: 14px; }
.iptv-menu-list li a:hover { background: var(--c-bg-alt); color: var(--c-cyan-2); }
.iptv-menu-list .current-menu-item > a, .iptv-menu-list .current_page_item > a { background: rgba(0, 194, 255, .12); color: var(--c-cyan-2); }

.iptv-nav-cta { display: flex; gap: 10px; }
.iptv-nav-cta .iptv-btn { padding: 10px 18px; font-size: 14px; }

.iptv-burger { display: none; background: transparent; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.iptv-burger span { display: block; width: 24px; height: 2px; background: var(--c-primary); border-radius: 2px; transition: transform .25s ease; }

@media (max-width: 1100px) {
    .iptv-menu, .iptv-nav-cta { display: none; }
    .iptv-burger { display: flex; margin-left: auto; }
    .iptv-menu.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px 5vw; box-shadow: 0 10px 30px rgba(10, 37, 64, .1); }
    .iptv-menu.open .iptv-menu-list { flex-direction: column; gap: 4px; width: 100%; }
    .iptv-menu.open .iptv-menu-list li a { display: block; padding: 14px 12px; }
}

/* ============================================================
   HERO
============================================================ */
.iptv-hero {
    position: relative;
    padding: 110px 5vw 80px;
    color: #fff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.iptv-hero-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; max-width: 760px; }
.iptv-hero-badge { display: inline-block; background: rgba(0, 194, 255, .18); border: 1px solid rgba(0, 194, 255, .35); color: #fff; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .03em; }
.iptv-hero-title { color: #fff; font-family: var(--display); font-size: clamp(36px, 5.6vw, 64px); line-height: 1.08; margin: 24px 0 20px; font-weight: 900; letter-spacing: -.02em; }
.iptv-hero-flag { font-size: .55em; letter-spacing: .1em; }
.iptv-hero-accent {
    background: linear-gradient(135deg, var(--c-cyan) 0%, #7be8ff 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.iptv-hero-sub { color: rgba(255, 255, 255, .9); font-size: clamp(15px, 1.8vw, 18px); line-height: 1.65; max-width: 640px; margin-bottom: 32px; }

.iptv-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 28px 0 32px; max-width: 560px; }
.iptv-hero-stats > div { display: flex; flex-direction: column; }
.iptv-hero-stats strong { font-size: 24px; font-weight: 800; color: var(--c-cyan); }
.iptv-hero-stats span { font-size: 12px; color: rgba(255, 255, 255, .75); text-transform: uppercase; letter-spacing: .06em; }

.iptv-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.iptv-hero-checks { list-style: none; padding: 0; margin: 28px 0 0; display: flex; gap: 18px; flex-wrap: wrap; }
.iptv-hero-checks li { font-size: 13px; color: rgba(255, 255, 255, .85); }

.iptv-hero-art { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); max-width: 46%; opacity: .85; pointer-events: none; }
.iptv-hero-art img { width: 100%; }

@media (max-width: 1100px) { .iptv-hero-art { display: none; } }
@media (max-width: 600px) {
    .iptv-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .iptv-hero-checks { gap: 10px; }
}

/* ============================================================
   TRUST BAR
============================================================ */
.iptv-trustbar { background: var(--c-bg-soft); padding: 24px 5vw; border-bottom: 1px solid var(--c-line); }
.iptv-trust-row { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; align-items: center; font-size: 14px; color: var(--c-primary); }
.iptv-trust-row strong { color: var(--c-primary); }

/* ============================================================
   DEVICES
============================================================ */
.iptv-devices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0 0 56px; }
.iptv-device-card { background: var(--c-bg-soft); border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 24px 18px; text-align: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.iptv-device-card:hover { transform: translateY(-4px); border-color: var(--c-cyan); box-shadow: var(--shadow-md); }
.iptv-device-ico { font-size: 38px; display: block; margin-bottom: 10px; }
.iptv-device-card strong { display: block; font-size: 15px; color: var(--c-primary); }
.iptv-device-card span { font-size: 12px; color: var(--c-muted); }

.iptv-devices-banner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.iptv-devices-banner img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; object-fit: cover; }

@media (max-width: 800px) { .iptv-devices-grid, .iptv-devices-banner { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   TWO-COL
============================================================ */
.iptv-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.iptv-two-col .iptv-shadow { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 900px) { .iptv-two-col { grid-template-columns: 1fr; gap: 32px; } }

.iptv-check-list { list-style: none; padding: 0; margin: 18px 0; }
.iptv-check-list li { padding: 8px 0; font-size: 16px; color: var(--c-primary); }
.iptv-check-list a { color: var(--c-cyan-2); text-decoration: underline; }

/* ============================================================
   FEATURES
============================================================ */
.iptv-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.iptv-feature {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(0, 194, 255, .25);
    border-radius: var(--radius-lg); padding: 32px 26px;
    backdrop-filter: blur(8px);
    transition: transform .2s ease, border-color .2s ease;
}
.iptv-feature:hover { transform: translateY(-6px); border-color: var(--c-cyan); }
.iptv-feature-ico { font-size: 36px; display: block; margin-bottom: 14px; }
.iptv-feature h3 { color: #fff; margin-bottom: 8px; font-size: 21px; }
.iptv-feature p { color: rgba(255, 255, 255, .85); font-size: 15px; }

@media (max-width: 900px) { .iptv-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .iptv-features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CHANNELS
============================================================ */
.iptv-channel-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.iptv-channel-cat {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}
.iptv-channel-cat h3 { font-size: 19px; margin-bottom: 14px; color: var(--c-primary); }
.iptv-channel-cat ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.iptv-channel-cat li { font-size: 14px; color: var(--c-muted); padding: 6px 10px; background: #fff; border-radius: 6px; }

@media (max-width: 800px) { .iptv-channel-cats { grid-template-columns: 1fr; } }

.iptv-football-row { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%); color: #fff; padding: 40px 32px; border-radius: var(--radius-lg); text-align: center; }
.iptv-football-title { color: #fff; margin-bottom: 24px; font-size: 22px; }
.iptv-football-logos { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; align-items: center; }
.iptv-football-logos img { height: 56px; width: auto; filter: brightness(0) invert(1) opacity(.85); transition: transform .2s ease, filter .2s ease; }
.iptv-football-logos img:hover { transform: scale(1.1); filter: brightness(0) invert(1) opacity(1); }

/* ============================================================
   PRICING
============================================================ */
.iptv-pricing { background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%); }
.iptv-countdown {
    display: inline-block; margin-top: 16px;
    background: rgba(220, 38, 38, .08); color: var(--c-danger);
    border: 1px solid rgba(220, 38, 38, .25); padding: 8px 16px; border-radius: 999px;
    font-weight: 700; font-size: 13px; letter-spacing: .03em;
}
.iptv-countdown::before { content: '⏱️ '; }

.iptv-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin-top: 32px;
}
@media (max-width: 1000px) { .iptv-pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 32px auto 0; } }

.iptv-price-card {
    background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-xl);
    padding: 36px 26px; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; position: relative;
    min-width: 0;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.iptv-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-cyan); }

.iptv-price-card-featured {
    border: 2px solid var(--c-cyan);
    background: linear-gradient(180deg, #fff 0%, #F0FAFF 100%);
    box-shadow: 0 30px 80px rgba(0, 194, 255, .25);
    z-index: 2;
    /* No transform: scale() — overflows grid cells on narrow viewports
       and visually clips siblings. Use shadow + border to highlight. */
}

.iptv-price-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-cyan-2) 100%);
    color: #0A2540; font-weight: 800; font-size: 12px; padding: 7px 16px; border-radius: 999px;
    letter-spacing: .04em; text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 194, 255, .4);
    white-space: nowrap;
}
.iptv-price-badge-soft { background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%); color: #0A2540; }

.iptv-price-head { min-height: 92px; }
.iptv-price-head h3 {
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 6px;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}
.iptv-price-head p { color: var(--c-muted); font-size: 14px; margin: 0 0 24px; line-height: 1.45; }
.iptv-price-quality { font-size: 14px; color: var(--c-cyan-2); font-weight: 600; white-space: nowrap; }

.iptv-price-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--c-line);
}
.iptv-price-from { font-size: 14px; color: var(--c-muted); white-space: nowrap; }
.iptv-price-big {
    font-family: var(--display);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    color: var(--c-primary);
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.iptv-price-period { font-size: 13px; color: var(--c-muted); white-space: nowrap; }

.iptv-price-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.iptv-price-list li { padding: 8px 0; font-size: 15px; color: #233E5F; line-height: 1.5; }

.iptv-price-note { font-size: 12px; color: var(--c-muted); margin: 12px 0 0; text-align: center; }
.iptv-pricing-foot { text-align: center; margin-top: 40px; font-size: 16px; color: var(--c-muted); }
.iptv-link-arrow { color: var(--c-cyan-2); font-weight: 700; text-decoration: none; }
.iptv-link-arrow:hover { color: var(--c-primary); }

/* ============================================================
   STEPS
============================================================ */
.iptv-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.iptv-step { text-align: center; padding: 28px 20px; background: var(--c-bg-soft); border-radius: var(--radius-md); border: 1px solid var(--c-line); position: relative; }
.iptv-step-num { display: inline-block; font-family: var(--display); font-size: 36px; font-weight: 900; color: var(--c-cyan); line-height: 1; margin-bottom: 12px; -webkit-text-stroke: 1px var(--c-cyan-2); }
.iptv-step h3 { font-size: 18px; margin-bottom: 6px; }
.iptv-step p { font-size: 14px; color: var(--c-muted); margin: 0; }
@media (max-width: 800px) { .iptv-steps-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   REVIEWS
============================================================ */
.iptv-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.iptv-review { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); }
.iptv-review-stars { color: #F59E0B; font-size: 18px; margin-bottom: 12px; }
.iptv-review p { font-size: 16px; line-height: 1.7; color: #1F3A5F; font-style: italic; margin: 0 0 14px; }
.iptv-review footer { font-size: 13px; color: var(--c-muted); }
.iptv-review footer strong { color: var(--c-primary); }
@media (max-width: 800px) { .iptv-reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG GRID
============================================================ */
.iptv-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.iptv-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.iptv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.iptv-blog-thumb { display: block; overflow: hidden; aspect-ratio: 16 / 9; }
.iptv-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.iptv-card:hover .iptv-blog-thumb img { transform: scale(1.05); }
.iptv-blog-body { padding: 22px 22px 24px; }
.iptv-blog-meta { font-size: 12px; color: var(--c-muted); display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.iptv-blog-title { font-size: 19px; line-height: 1.35; margin: 0 0 10px; }
.iptv-blog-title a { color: var(--c-primary); text-decoration: none; }
.iptv-blog-title a:hover { color: var(--c-cyan-2); }
.iptv-blog-excerpt, .iptv-blog-body p { font-size: 14px; color: var(--c-muted); line-height: 1.6; margin: 0 0 14px; }
.iptv-blog-price { font-weight: 700; color: var(--c-primary); margin: 12px 0 8px; }
@media (max-width: 900px) { .iptv-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .iptv-blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
============================================================ */
.iptv-faq { max-width: 800px; margin: 0 auto; }
.iptv-faq details { background: var(--c-bg-soft); border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 18px 22px; margin-bottom: 12px; transition: border-color .2s ease; }
.iptv-faq details[open] { border-color: var(--c-cyan); background: #fff; box-shadow: var(--shadow-sm); }
.iptv-faq summary { font-weight: 700; cursor: pointer; color: var(--c-primary); font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.iptv-faq summary::-webkit-details-marker { display: none; }
.iptv-faq summary::after { content: '+'; color: var(--c-cyan); font-size: 22px; font-weight: 800; transition: transform .2s ease; }
.iptv-faq details[open] summary::after { transform: rotate(45deg); }
.iptv-faq p { color: #233E5F; padding-top: 12px; line-height: 1.7; margin: 0; font-size: 15px; }
.iptv-faq a { color: var(--c-cyan-2); text-decoration: underline; }

/* ============================================================
   FINAL CTA
============================================================ */
.iptv-cta-final { padding: 80px 5vw; background-size: cover; background-position: center; color: #fff; text-align: center; }
.iptv-cta-final h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.iptv-cta-final p { color: rgba(255, 255, 255, .9); font-size: 17px; max-width: 720px; margin: 0 auto 28px; }
.iptv-cta-final-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO
============================================================ */
.iptv-page-hero { padding: 80px 5vw 60px; background-size: cover; background-position: center; color: #fff; }
.iptv-page-hero .iptv-container { max-width: var(--container); margin: 0 auto; }
.iptv-page-title { color: #fff; font-family: var(--display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; line-height: 1.15; margin: 12px 0 8px; }
.iptv-page-hero .iptv-lead { color: rgba(255, 255, 255, .9); }
.iptv-meta { color: rgba(255, 255, 255, .8); font-size: 14px; margin-top: 8px; }
.iptv-breadcrumbs { color: rgba(255, 255, 255, .8); font-size: 13px; margin-bottom: 6px; }
.iptv-breadcrumbs a { color: var(--c-cyan); }

/* ============================================================
   ARTICLE LAYOUT (single)
============================================================ */
.iptv-article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
.iptv-article { font-size: 17px; }
.iptv-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 96px; align-self: start; }
.iptv-sidebar-card { background: var(--c-bg-soft); border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 22px; }
.iptv-sidebar-card h4 { margin: 0 0 12px; font-size: 16px; color: var(--c-primary); }
.iptv-sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.iptv-sidebar-card li { margin: 8px 0; font-size: 14px; }
.iptv-sidebar-card-cta { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%); color: #fff; }
.iptv-sidebar-card-cta h4, .iptv-sidebar-card-cta p { color: #fff; }
.iptv-sidebar-card-cta p { font-size: 14px; margin: 0 0 14px; }

.iptv-article-cta { background: linear-gradient(135deg, var(--c-bg-soft) 0%, var(--c-bg-alt) 100%); border-left: 4px solid var(--c-cyan); border-radius: var(--radius-md); padding: 28px; margin: 56px 0 24px; }
.iptv-article-cta h3 { margin: 0 0 8px; }
.iptv-article-cta p { margin: 0 0 12px; color: var(--c-muted); }

@media (max-width: 1100px) {
    .iptv-article-layout { grid-template-columns: 1fr; }
    .iptv-sidebar { position: static; }
}

/* ============================================================
   FOOTER
============================================================ */
.iptv-footer { background: #061B33; color: rgba(255, 255, 255, .85); padding: 70px 5vw 0; }
.iptv-footer-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.iptv-footer h4 { color: #fff; font-size: 16px; margin: 0 0 16px; font-family: var(--display); font-weight: 700; }
.iptv-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.iptv-footer-brand strong { color: #fff; font-family: var(--display); font-size: 22px; font-weight: 800; }
.iptv-footer-tag { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .7); margin-bottom: 16px; }
.iptv-footer-contact { list-style: none; padding: 0; margin: 0; }
.iptv-footer-contact li { font-size: 13px; padding: 4px 0; color: rgba(255, 255, 255, .8); }
.iptv-footer-contact a { color: var(--c-cyan); }

.iptv-footer-links { list-style: none; padding: 0; margin: 0; }
.iptv-footer-links li { padding: 5px 0; }
.iptv-footer-links a { color: rgba(255, 255, 255, .75); font-size: 14px; }
.iptv-footer-links a:hover { color: var(--c-cyan); }

.iptv-pay-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.iptv-pay-pill { background: rgba(255, 255, 255, .08); padding: 5px 11px; border-radius: 6px; font-size: 11px; color: #fff; font-weight: 600; }
.iptv-footer-trust { font-size: 12px; color: rgba(255, 255, 255, .6); margin: 0; }

.iptv-footer-bottom { max-width: var(--container); margin: 0 auto; padding: 26px 0; }
.iptv-footer-legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255, 255, 255, .6); }
.iptv-footer-legal-menu { list-style: none; display: flex; gap: 18px; padding: 0; margin: 0; flex-wrap: wrap; }
.iptv-footer-legal-menu a { color: rgba(255, 255, 255, .6); font-size: 13px; }
.iptv-footer-legal-menu a:hover { color: var(--c-cyan); }
.iptv-footer-disclaimer { font-size: 12px; color: rgba(255, 255, 255, .45); line-height: 1.6; margin: 18px 0 0; max-width: 1100px; }
.iptv-footer-disclaimer a { color: rgba(0, 194, 255, .8); }

@media (max-width: 900px) { .iptv-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .iptv-footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.iptv-wa-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37, 211, 102, .4); z-index: 999; transition: transform .2s ease, box-shadow .2s ease; }
.iptv-wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37, 211, 102, .55); }

/* ============================================================
   PRODUCT PAGE (WooCommerce)
============================================================ */
.iptv-product-hero { padding-bottom: 40px; }
.iptv-product-short { font-size: 17px; color: rgba(255, 255, 255, .9); max-width: 720px; }
.iptv-product-trust { font-size: 13px; color: rgba(255, 255, 255, .85); display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.iptv-product-layout { display: grid; grid-template-columns: 480px 1fr; gap: 56px; align-items: start; }
@media (max-width: 1000px) { .iptv-product-layout { grid-template-columns: 1fr; } }

.iptv-product-images { position: sticky; top: 100px; }
.iptv-product-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.iptv-product-card { margin-top: 22px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.iptv-price-display-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; padding-bottom: 14px; border-bottom: 1px dashed var(--c-line); }
.iptv-price-label { font-size: 13px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; }
.iptv-price-display { font-family: var(--display); font-size: 38px; font-weight: 900; color: var(--c-primary); line-height: 1; }
.iptv-price-display .woocommerce-Price-amount { color: var(--c-primary); }

.iptv-variation-meta { margin: 16px 0 24px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.iptv-badge-pill { background: rgba(0, 194, 255, .12); color: var(--c-cyan-2); padding: 5px 12px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.variation-benefit { font-size: 14px; color: var(--c-muted); }

.iptv-variation-heading { font-size: 14px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; margin: 0 0 10px; font-weight: 700; }

.iptv-variations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 22px; }
.variation-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    background: #fff; border: 2px solid var(--c-line); border-radius: var(--radius-md);
    padding: 14px 12px; cursor: pointer; transition: all .2s ease;
    font-family: var(--body);
}
.variation-btn:hover { border-color: var(--c-cyan); background: rgba(0, 194, 255, .04); }
.variation-btn.active { border-color: var(--c-cyan); background: linear-gradient(135deg, rgba(0, 194, 255, .1) 0%, rgba(0, 194, 255, .04) 100%); box-shadow: 0 6px 18px rgba(0, 194, 255, .18); }
.variation-btn-label { font-size: 14px; font-weight: 700; color: var(--c-primary); }
.variation-btn-price { font-size: 13px; color: var(--c-muted); font-weight: 600; }
.variation-btn.active .variation-btn-price { color: var(--c-cyan-2); }

.single_add_to_cart_button.iptv-btn-cyan { font-size: 17px; padding: 18px 24px; }

.iptv-product-trust-list { list-style: none; padding: 0; margin: 22px 0 0; }
.iptv-product-trust-list li { font-size: 13px; color: var(--c-muted); padding: 5px 0; }

.iptv-product-content { font-size: 16px; line-height: 1.75; }
.iptv-product-content h2 { margin-top: 36px; }
.iptv-product-content h3 { margin-top: 24px; }
.iptv-product-content ul { padding-left: 22px; }

/* ============================================================
   ARCHIVE / SEARCH / PAGINATION
============================================================ */
.iptv-pagination { margin-top: 48px; text-align: center; }
.iptv-pagination .nav-links { display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.iptv-pagination a, .iptv-pagination span { padding: 10px 16px; border-radius: 8px; background: var(--c-bg-soft); color: var(--c-primary); text-decoration: none; font-weight: 600; font-size: 14px; }
.iptv-pagination .current { background: var(--c-primary); color: #fff; }

.iptv-search { display: flex; gap: 6px; max-width: 360px; margin: 0 auto; }
.iptv-search input { flex: 1; padding: 12px 16px; border: 2px solid var(--c-line); border-radius: 999px; font-size: 14px; }
.iptv-search input:focus { outline: 0; border-color: var(--c-cyan); }
.iptv-search button { background: var(--c-primary); color: #fff; border: 0; padding: 0 18px; border-radius: 999px; cursor: pointer; }

/* ============================================================
   UTIL
============================================================ */
.screen-reader-text { position: absolute; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden; }
.iptv-shadow { box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); }

/* WooCommerce overrides for cleaner cart/checkout */
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-radius: var(--radius-md) !important; padding: 14px 18px !important; font-size: 14px !important; }
.woocommerce-message { border-top-color: var(--c-cyan) !important; background: #F0FAFF !important; }
.woocommerce ul.products li.product .price { color: var(--c-primary); font-weight: 700; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
