/* ===== IPTVVLC.DE – Main Stylesheet ===== */
:root {
  --brand: #e63329;
  --brand-dark: #1a1a2e;
  --brand-accent: #ff6b35;
  --text: #1c1c1e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f8f9fb;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .2s; text-align: center; border: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #c8281f; color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,51,41,.3); }
.btn-outline { background: transparent; border: 2px solid var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; text-decoration: none; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe59; color: #fff; text-decoration: none; transform: translateY(-1px); }

/* ===== HEADER ===== */
.site-header { background: var(--brand-dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo-link img { filter: brightness(0) invert(1); }
.main-nav ul { display: flex; list-style: none; gap: 8px; margin: 0; padding: 0; }
.main-nav ul li a { color: rgba(255,255,255,.85); padding: 8px 12px; border-radius: 6px; font-size: .9rem; font-weight: 500; transition: all .2s; }
.main-nav ul li a:hover { color: #fff; background: rgba(255,255,255,.1); text-decoration: none; }
.main-nav { display: flex; align-items: center; gap: 16px; }
.nav-cta { padding: 9px 20px; font-size: .88rem; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
@media(max-width:768px){
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--brand-dark); flex-direction: column; padding: 20px; gap: 8px; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; }
}

/* ===== HERO ===== */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: var(--brand-dark); }
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .35; }
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge { display: inline-block; background: var(--brand); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: .8rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.hero h1 span { color: var(--brand-accent); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--brand-dark); margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ===== FEATURE GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature-card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-accent) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--brand-dark); }
.feature-card p { color: var(--text-muted); font-size: .95rem; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.price-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: transform .2s, box-shadow .2s; position: relative; }
.price-card.best { border-color: var(--brand); }
.price-card.best .best-badge { display: block; }
.best-badge { display: none; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-label { font-size: .85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--brand-dark); }
.price-amount sup { font-size: 1.1rem; vertical-align: super; }
.price-per { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }
.price-features { list-style: none; text-align: left; margin-bottom: 24px; }
.price-features li { padding: 6px 0; font-size: .9rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.price-features li::before { content: '✓'; color: var(--brand); font-weight: 700; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { color: var(--text); font-size: .95rem; margin-bottom: 14px; line-height: 1.7; }
.review-name { font-weight: 700; font-size: .9rem; color: var(--text-muted); }

/* ===== APPS ===== */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.app-card { background: var(--brand-dark); border-radius: var(--radius); padding: 24px 16px; text-align: center; color: #fff; }
.app-icon { font-size: 2.2rem; margin-bottom: 10px; }
.app-name { font-size: .95rem; font-weight: 700; }

/* ===== STEPS ===== */
.steps-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: steps; }
.step-item { position: relative; padding-left: 0; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; }
.step-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: .92rem; color: var(--text-muted); }

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

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--brand-dark); }
.faq-q .icon { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .8rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 18px; color: var(--text-muted); font-size: .95rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .2s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-cat { font-size: .75rem; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--brand-dark); line-height: 1.4; }
.blog-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 14px; }
.blog-card .read-more { font-size: .88rem; font-weight: 700; color: var(--brand); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 12px 0; font-size: .85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { margin: 0 6px; }

/* ===== SPOKE PAGES ===== */
.spoke-hero { background: var(--brand-dark); color: #fff; padding: 60px 0 48px; }
.spoke-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.spoke-hero p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 600px; }
.article-body { max-width: 820px; margin: 0 auto; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--brand-dark); margin: 40px 0 14px; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--brand-dark); margin: 28px 0 10px; }
.article-body p { margin-bottom: 16px; color: var(--text); line-height: 1.75; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 16px; }
.article-body li { margin-bottom: 8px; color: var(--text); line-height: 1.7; }
.article-body a { color: var(--brand); font-weight: 600; }
.cta-box { background: linear-gradient(135deg, var(--brand-dark) 0%, #2d2d4e 100%); border-radius: var(--radius); padding: 36px; text-align: center; margin: 40px 0; color: #fff; }
.cta-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,.8); margin-bottom: 20px; }

/* ===== BLOG ARTICLE ===== */
.blog-header { background: var(--brand-dark); color: #fff; padding: 60px 0 48px; }
.blog-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.blog-meta { font-size: .85rem; color: rgba(255,255,255,.6); }
.blog-cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); margin: 32px 0; }

/* ===== COMPARISON TABLE ===== */
.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.comparison-table th { background: var(--brand-dark); color: #fff; padding: 14px 16px; text-align: left; font-size: .9rem; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.comparison-table tr:nth-child(even) td { background: var(--bg-soft); }
.check { color: #16a34a; font-weight: 700; }
.cross { color: var(--brand); font-weight: 700; }

/* ===== CTA STRIP ===== */
.cta-strip { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-accent) 100%); padding: 64px 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 28px; }
.cta-strip .btn-outline { border-color: #fff; color: #fff; }
.cta-strip .btn-outline:hover { background: #fff; color: var(--brand); }

/* ===== POPUP ===== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.popup-box { background: #fff; border-radius: 20px; padding: 40px 36px; max-width: 420px; width: 100%; text-align: center; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.popup-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-muted); line-height: 1; }
.popup-badge { display: inline-block; background: var(--brand); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: .8rem; font-weight: 700; margin-bottom: 16px; }
.popup-box h2 { font-size: 1.8rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 10px; }
.popup-price { font-size: 2rem; font-weight: 800; color: var(--brand); margin-bottom: 6px; }
.popup-sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; }
.popup-btn { width: 100%; justify-content: center; }

/* ===== FOOTER ===== */
.site-footer { background: var(--brand-dark); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); }
.footer-links h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: .4px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.45); text-align: center; }
@media(max-width:768px){
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media(max-width:480px){
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== RESELLER ===== */
.reseller-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.reseller-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: transform .2s, box-shadow .2s; }
.reseller-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.reseller-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 6px; }
.reseller-credits { font-size: 1rem; color: var(--brand); font-weight: 600; margin-bottom: 16px; }
.reseller-price { font-size: 2.2rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.highlight { color: var(--brand); }
.badge { display: inline-block; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: .8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }
