* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e50914;
    --primary-dark: #b00710;
    --secondary: #0f1419;
    --dark: #0a0e13;
    --light: #ffffff;
    --gray: #8b949e;
    --light-gray: #f5f5f5;
    --accent: #ffd700;
    --gradient: linear-gradient(135deg, #e50914 0%, #b00710 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e13 0%, #1a1f25 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background: var(--light);
}

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

/* Header */
.header {
    background: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 5px;
    text-decoration: none;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.btn-cta-nav {
    background: var(--gradient);
    color: var(--light);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

/* Hero */
.hero {
    background: var(--gradient-dark);
    color: var(--light);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.2) 0%, transparent 70%);
}

.hero-teste {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0f12 50%, #0a0e13 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

.hero-subtitle {
    font-size: 19px;
    color: #c9d1d9;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--light);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    padding: 16px 36px;
    border: 2px solid var(--light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 36px;
    color: var(--primary);
    font-weight: 900;
}

.stat span {
    color: var(--gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    color: var(--secondary);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* About IPTV */
.about-iptv {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-content p {
    color: #555;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
}

.check-list {
    list-style: none;
    margin-top: 25px;
}

.check-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: var(--secondary);
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.iptv-display {
    background: var(--dark);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

.display-screen {
    background: var(--gradient-dark);
    border-radius: 12px;
    padding: 30px;
    border: 3px solid #2a2f35;
}

.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.channel {
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid var(--primary);
    color: var(--light);
    padding: 18px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.3s;
}

.channel:hover {
    background: var(--primary);
}

.display-label {
    text-align: center;
    color: var(--primary);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 15px;
}

/* Plans */
.plans {
    background: var(--gradient-dark);
    color: var(--light);
}

.plans h2 {
    color: var(--light);
}

.plans .section-subtitle {
    color: var(--gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
}

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

.plan-card.featured {
    background: rgba(229, 9, 20, 0.1);
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--light);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card h3 {
    font-size: 24px;
    color: var(--light);
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 20px;
    color: var(--gray);
}

.amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.period {
    color: var(--gray);
    font-size: 16px;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-card ul li {
    padding: 10px 0;
    color: #c9d1d9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-plan {
    display: block;
    background: var(--gradient);
    color: var(--light);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s;
}

.btn-plan:hover {
    transform: translateY(-3px);
}

/* Devices */
.devices {
    background: var(--light-gray);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.device-item {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.device-item:hover {
    transform: translateY(-5px);
}

.device-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.device-item h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 18px;
}

.device-item p {
    color: var(--gray);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--light);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--light);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--light);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
    background: var(--secondary);
    color: var(--light);
}

/* FAQ */
.faq {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 18px;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--light);
    margin-bottom: 18px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.8;
    margin-top: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 6px 0;
}

.footer-col ul a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 14px;
}

/* Teste IPTV Page Specific */
.teste-benefits {
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--light-gray);
    padding: 35px 30px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: var(--light);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.15);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
}

.benefit-card h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 20px;
    padding-right: 50px;
}

.benefit-card p {
    color: #555;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    background: var(--light-gray);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.step h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 18px;
}

.step p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Form Section */
.formulario-section {
    background: var(--gradient-dark);
    color: var(--light);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-info h2 {
    color: var(--light);
    text-align: left;
    margin-bottom: 20px;
}

.form-info p {
    color: #c9d1d9;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-info strong {
    color: var(--light);
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    color: var(--light);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-box {
    background: var(--light);
    color: var(--secondary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.form-box h3 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--secondary);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e4e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.btn-form {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 15px;
    line-height: 1.5;
}

/* Categories */
.teste-categories {
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.category-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.category-item:hover {
    background: var(--secondary);
    color: var(--light);
    transform: translateX(5px);
}

.category-item:hover h4,
.category-item:hover p {
    color: var(--light);
}

.category-item h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 18px;
}

.category-item p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.testimonial-card p {
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 13px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wpp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7);
    animation: none;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: #ffffff;
}

.whatsapp-float .wpp-tooltip {
    position: absolute;
    right: 80px;
    background: #1f1f1f;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float .wpp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1f1f1f;
}

.whatsapp-float:hover .wpp-tooltip {
    opacity: 1;
}

@keyframes wpp-pulse {
    0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 580px) {
    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
    .whatsapp-float .wpp-tooltip {
        display: none;
    }
}

/* TLDR Box */
.tldr-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--accent);
    padding: 18px 22px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.7;
}

.tldr-box strong {
    color: var(--accent);
}

/* Definition Section */
.definition-section {
    background: var(--light);
    padding: 60px 0;
}

.definition-section h2 {
    margin-bottom: 30px;
}

.definition-box {
    background: var(--gradient-dark);
    color: var(--light);
    padding: 30px 35px;
    border-radius: 16px;
    border-left: 6px solid var(--primary);
    max-width: 900px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.definition-box p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.definition-box strong {
    color: var(--primary);
}

.definition-extra {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

/* Comparison Table */
.comparison-table {
    max-width: 800px;
    margin: 0 auto 50px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: var(--gradient);
    color: var(--light);
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 16px 20px;
    color: #c9d1d9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .featured-row td {
    background: rgba(229, 9, 20, 0.15);
    color: var(--light);
    font-weight: 600;
}

/* Subsection Title */
.subsection-title {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--secondary);
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid #e1e4e8;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumbs li {
    color: var(--gray);
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--gray);
}

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

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.legal-content .last-updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e4e8;
}

.legal-content h2 {
    text-align: left;
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.legal-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-content ul, .legal-content ol {
    margin: 15px 0 20px 30px;
}

.legal-content li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    color: var(--light);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--light);
}

.page-header p {
    font-size: 19px;
    color: #c9d1d9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--light);
}

.blog-card-body {
    padding: 25px;
}

.blog-card-category {
    display: inline-block;
    background: rgba(229, 9, 20, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
    line-height: 1.4;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 13px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Blog Post */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-post .post-meta {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-post h1 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--secondary);
}

.blog-post .post-image {
    height: 350px;
    background: var(--gradient);
    border-radius: 16px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    color: var(--light);
}

.blog-post h2 {
    text-align: left;
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.blog-post h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.blog-post p {
    color: #444;
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 17px;
}

.blog-post ul, .blog-post ol {
    margin: 15px 0 25px 30px;
}

.blog-post li {
    color: #444;
    line-height: 1.85;
    margin-bottom: 10px;
    font-size: 17px;
}

.blog-post a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.blog-post a:hover {
    text-decoration: underline;
}

.blog-post strong {
    color: var(--secondary);
}

.blog-post .post-cta {
    background: var(--gradient);
    color: var(--light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.blog-post .post-cta h3 {
    color: var(--light);
    margin-bottom: 12px;
}

.blog-post .post-cta p {
    color: var(--light);
    margin-bottom: 20px;
}

.blog-post .post-cta .btn-primary {
    background: var(--light);
    color: var(--primary);
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-box {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 16px;
}

.contact-info-box h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e1e4e8;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--light);
    flex-shrink: 0;
}

.contact-method-info strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 3px;
}

.contact-method-info span {
    color: #555;
    font-size: 14px;
}

/* Comparison Items */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.comparison-col {
    padding: 30px;
    border-radius: 16px;
}

.comparison-col.bad {
    background: #fff5f5;
    border: 2px solid #ffcdd2;
}

.comparison-col.good {
    background: #f1f8e9;
    border: 2px solid #c8e6c9;
}

.comparison-col h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.comparison-col.bad h3 {
    color: #c62828;
}

.comparison-col.good h3 {
    color: #2e7d32;
}

.comparison-col ul {
    list-style: none;
}

.comparison-col li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.comparison-col.bad li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: 700;
    font-size: 18px;
}

.comparison-col.good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat strong {
        font-size: 28px;
    }

    .about-grid,
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .iptv-display {
        transform: none;
    }

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

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

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .page-header h1 {
        font-size: 34px;
    }

    .blog-post h1 {
        font-size: 30px;
    }

    .blog-post .post-image {
        height: 220px;
        font-size: 64px;
    }

    .legal-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 580px) {
    .hero {
        padding: 60px 0 50px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .form-box {
        padding: 25px;
    }

    section {
        padding: 60px 0;
    }
}
