/*
Theme Name: IPTV Smarters Pro Subscription
Theme URI: https://iptvsmartersprosubscription.us
Author: IPTV Smarters Pro Subscription
Author URI: https://iptvsmartersprosubscription.us
Description: IPTV subscription service compatible with IPTV Smarters Pro. Setup support for Firestick, Samsung TV, Android TV, Windows, and other devices. Not affiliated with the IPTV Smarters Pro app developer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-smarters-usa
Tags: iptv, smarters pro, subscription, firestick, streaming
*/

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary:       #e50914;
    --primary-dark:  #b0060f;
    --accent:        #f5a623;
    --bg-dark:       #0a0a0f;
    --bg-card:       #12121a;
    --bg-card2:      #1a1a26;
    --text:          #ffffff;
    --text-muted:    #9999bb;
    --border:        #2a2a3e;
    --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #1a0a0a 100%);
    --shadow:        0 8px 32px rgba(229,9,20,0.15);
    --radius:        12px;
    --radius-sm:     8px;
    --transition:    0.3s ease;
    --font-main:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading:  'Montserrat', var(--font-main);
    --max-width:     1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--accent); }

ul, ol { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }

.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--bg-card);
}

.section-darker {
    background-color: var(--bg-card2);
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(229,9,20,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229,9,20,0.6);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(229,9,20,0.08);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #e08800 100%);
    color: #000;
    font-weight: 700;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,166,35,0.5);
    color: #000;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
}

/* =========================================
   HEADER / NAV
   ========================================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

#site-header.scrolled {
    background: rgba(10,10,15,0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.site-logo span { color: var(--primary); }

.site-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.4rem;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(229,9,20,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,166,35,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(229,9,20,0.15);
    border: 1px solid rgba(229,9,20,0.3);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-heading);
}

.hero-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-mockup img {
    border-radius: var(--radius);
    box-shadow: var(--shadow), 0 32px 80px rgba(0,0,0,0.6);
    width: 100%;
}

.hero-float-card {
    position: absolute;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
}

.hero-float-card:nth-child(2) { animation-delay: 1s; }
.hero-float-card:nth-child(3) { animation-delay: 2s; }

.hero-float-card.card-1 { top: 10%; right: -10%; }
.hero-float-card.card-2 { bottom: 20%; left: -12%; }
.hero-float-card.card-3 { top: 50%; right: -8%; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    padding: 24px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg,
.trust-item .icon {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(229,9,20,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(229,9,20,0.2);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, var(--bg-card2) 0%, rgba(229,9,20,0.06) 100%);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 0.4rem;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

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

.pricing-features li .check {
    color: #22c55e;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* =========================================
   CHANNELS / DEVICES SECTION
   ========================================= */
.channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.channels-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.channel-item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.channel-icon {
    width: 48px;
    height: 48px;
    background: rgba(229,9,20,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.channel-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.channel-item p  { font-size: 0.85rem; margin: 0; }

.devices-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.device-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all var(--transition);
}

.device-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.device-card .device-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.device-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(229,9,20,0.4);
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.step-card p  { font-size: 0.9rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card2);
    border: 2px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.author-name { font-size: 0.95rem; font-weight: 600; }
.author-location { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question .arrow {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, rgba(229,9,20,0.15) 0%, rgba(10,10,15,1) 50%, rgba(245,166,35,0.08) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(229,9,20,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p  { font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand .site-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover { color: var(--text); }

/* =========================================
   NOTICE BARS
   ========================================= */
.notice-bar {
    padding: 10px 0;
    background: var(--primary);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.notice-bar a {
    color: #fff;
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: 0.4; }

/* =========================================
   SINGLE POST / PAGE
   ========================================= */
.page-hero {
    padding: 100px 0 60px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-hero .page-title { margin-bottom: 1rem; }
.page-hero .page-desc  { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.content-area {
    padding: 60px 0;
}

.content-area p,
.content-area li {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.content-area h2,
.content-area h3 { margin: 2rem 0 0.75rem; }

/* =========================================
   WIDGETS / SIDEBAR
   ========================================= */
.widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-desc  { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats   { justify-content: center; }
    .hero-visual  { order: -1; }
    .hero-float-card { display: none; }

    .channels-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .nav-menu  { display: none; }
    .nav-cta   { gap: 0.5rem; }
    .nav-cta .btn-outline { display: none; }
    .nav-toggle { display: flex; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10,10,15,0.98);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        gap: 0.25rem;
        z-index: 999;
    }

    .hero-float-card { display: none; }
    .pricing-card.featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-bar-inner { gap: 1.5rem; }
    .devices-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions  .btn { width: 100%; justify-content: center; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* =========================================
   PRICING GROUPS (9-plan layout)
   ========================================= */
.pricing-group {
    margin-bottom: 3.5rem;
}

.pricing-group:last-child { margin-bottom: 0; }

.pricing-group-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.pricing-group-label h3 {
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* 5-column grid for duration plans */
.pricing-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

/* 4-column grid for multi-device plans */
.pricing-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-card .pricing-devices {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.pricing-card .save-tag {
    display: inline-block;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* =========================================
   DISCLAIMER NOTICE
   ========================================= */
.disclaimer-notice {
    background: rgba(245,166,35,0.06);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    margin: 2rem 0 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.disclaimer-notice strong {
    color: var(--accent);
}

/* Footer disclaimer bar */
.footer-disclaimer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   INTERNAL LINK GRID (site architecture nav)
   ========================================= */
.page-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.page-link-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition);
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.page-link-card:hover {
    border-color: var(--primary);
    color: var(--text);
    transform: translateX(3px);
}

.page-link-card .plc-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* =========================================
   RESPONSIVE ADDITIONS
   ========================================= */
@media (max-width: 1100px) {
    .pricing-grid--5 { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pricing-grid--5,
    .pricing-grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .pricing-grid--5,
    .pricing-grid--4 { grid-template-columns: 1fr; }
}
