/* ── FONTS ─────────────────────────────────────────────── */
/* Barlow Condensed: self-hosted, headlines only */
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ─── */
:root {
  --bg: #141414;
  --bg2: #000000;
  --card: #1f1f1f;
  --orange: #16c761;
  --orange-glow: rgba(22, 199, 97, 0.25);
  --text: #ffffff;
  --muted: #aaaaaa;
  --border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  overflow-x: hidden;
}

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

a:hover {
  color: #12a550;
}

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

ul {
  list-style: none;
}

/* ─── FOCUS / SELECTION ─── */
*:focus {
  outline: 2px solid var(--orange) !important;
  outline-offset: 2px !important;
}

::selection {
  background: rgba(22, 199, 97, 0.35) !important;
  color: #fff !important;
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: relative;
  top: 0;
  z-index: 9999;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 6% !important;
  background: rgba(17, 17, 17, 0.97) !important;
  border-bottom: 1px solid var(--border) !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
}

.site-logo {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

/* play icon */
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  flex-shrink: 0;
}

/* IPTV — white bold */
.logo-iptv {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 1px;
}

/* space */
/* Accent — Green */
.logo-accent {
  color: #16c761;
  font-weight: 900;
  letter-spacing: 0.5px;
}

/* dot */
.logo-dot {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  margin: 0 1px;
}

/* Stream — muted white, lighter weight */
.logo-stream {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: var(--muted) !important;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--text) !important;
}

.nav-cta {
  background: var(--orange) !important;
  color: #000000 !important;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.85;
  color: #000000 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 20px 6%;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted) !important;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--text) !important;
}

/* ─── LAYOUT ─── */
section {
  padding: 80px 6%;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text) !important;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

h2 span {
  color: var(--orange);
}

h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800;
  text-transform: uppercase;
}

.sub {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 48px;
}

hr.div {
  border: none;
  border-top: 1px solid var(--border);
}

/* ─── BUTTONS ─── */
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-orange:hover {
  box-shadow: 0 0 30px var(--orange-glow);
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 30px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange) !important;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 6%;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(22, 199, 97, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(22, 199, 97, 0.04) 0%, transparent 60%),
    var(--bg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 199, 97, 0.12);
  border: 1px solid rgba(22, 199, 97, 0.35);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  font-size: 20px;
}

.trust-text {
  font-size: 13px;
  color: var(--muted);
}

.trust-text strong {
  color: var(--text);
}

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

.hero-screen {
  width: 100%;
  max-width: 480px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(22, 199, 97, 0.05);
}

.screen-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.screen-dot:nth-child(1) {
  background: #ff5f57;
}

.screen-dot:nth-child(2) {
  background: #febc2e;
}

.screen-dot:nth-child(3) {
  background: #28c840;
}

.screen-content {
  background: #0d0d0d;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 14px;
}

.ch-dot {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.ch-info {
  flex: 1;
}

.ch-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.ch-cat {
  font-size: 11px;
  color: var(--muted);
}

.ch-live {
  font-size: 10px;
  font-weight: 700;
  background: #e53e3e;
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
}

.screen-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.stat-mini {
  background: rgba(22, 199, 97, 0.1);
  border: 1px solid rgba(22, 199, 97, 0.2);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.stat-mini-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
}

.stat-mini-label {
  font-size: 10px;
  color: var(--muted);
}

/* ─── APPS BANNER ─── */
.apps-banner {
  background: var(--bg2);
  padding: 28px 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.apps-banner p {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.apps-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.app-chip {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.app-chip:hover {
  border-color: var(--orange);
  color: var(--text) !important;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  border-color: rgba(22, 199, 97, 0.3);
  transform: translateY(-4px);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(22, 199, 97, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.feat-card h3 {
  font-size: 20px !important;
  margin-bottom: 10px;
}

.feat-card h3 span {
  color: var(--orange);
}

.feat-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── CONTENT SPLIT ─── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  margin: 20px 0 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.content-visual {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 12px 16px;
}

.compat-name {
  font-size: 14px;
  font-weight: 600;
}

.compat-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(22, 199, 97, 0.15);
  color: var(--orange);
}

/* ─── PRICING ─── */
.pricing {
  background: var(--bg2);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 199, 97, 0.3);
}

.plan-card.best {
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(22, 199, 97, 0.15);
}

.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
}

.plan-duration {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.plan-bonus {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.plan-features {
  list-style: none;
  margin: 20px 0 24px;
  text-align: left;
}

.plan-features li {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

.plan-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  display: block;
}

.plan-btn {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
}

.plan-btn-solid {
  background: var(--orange);
  border: none;
  color: #fff;
}

.plan-btn-solid:hover {
  box-shadow: 0 0 20px var(--orange-glow);
}

.plan-btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.plan-btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(22, 199, 97, 0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px !important;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── SEO BLOCK ─── */
.seo-block {
  background: var(--bg2);
}

.seo-block .prose {
  max-width: 820px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
}

.seo-block .prose h3 {
  font-size: 22px !important;
  color: var(--text);
  margin: 28px 0 10px;
}

.seo-block .prose strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--bg2);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(22, 199, 97, 0.04);
  border-top: 1px solid rgba(22, 199, 97, 0.15);
  border-bottom: 1px solid rgba(22, 199, 97, 0.15);
  margin-bottom: 56px;
}

.stat-block {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(22, 199, 97, 0.1);
}

.stat-block:last-child {
  border-right: none;
}

.stat-block-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-block-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(22, 199, 97, 0.07);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(22, 199, 97, 0.3);
  transform: translateY(-4px);
}

.review-stars {
  color: #16c761;
  font-size: 15px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  flex: 1;
}

.review-author {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22, 199, 97, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.review-location {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.review-verified {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

/* ─── FAQ ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.faq-wrap {
  max-width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22, 199, 97, 0.1);
  border: 1px solid rgba(22, 199, 97, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-q.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.trust-card {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.trust-block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.trust-badge:last-child {
  margin-bottom: 0;
}

.trust-badge-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.trust-badge-text strong {
  color: var(--text);
  display: block;
  font-size: 14px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.payment-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.payment-chip span {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.legal-badge {
  background: rgba(22, 199, 97, 0.06);
  border: 1px solid rgba(22, 199, 97, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.legal-badge-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.legal-badge-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.legal-badge-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── SUPPORT BOX ─── */
.support-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.support-box h3 {
  font-size: 28px !important;
  margin-bottom: 10px;
}

.support-box p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}

.blog-card:hover {
  border-color: rgba(22, 199, 97, 0.3);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: rgba(22, 199, 97, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

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

.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 18px !important;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card .read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card .read-more:hover {
  color: #12a550 !important;
}

.single-post {
  max-width: 820px;
  margin: 0 auto;
}

.single-post h1 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-content {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
}

.post-content h2 {
  font-size: 28px !important;
  margin: 40px 0 16px;
}

.post-content h3 {
  font-size: 22px !important;
  margin: 28px 0 12px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content strong {
  color: var(--text);
}

.post-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-content ul li {
  color: var(--muted);
  margin-bottom: 8px;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.legal-content h2 {
  font-size: 26px !important;
  margin: 36px 0 12px;
}

.legal-content h3 {
  font-size: 20px !important;
  margin: 24px 0 8px;
  color: var(--text) !important;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--orange);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--bg2);
  padding: 80px 6% 60px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 600px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg2);
  padding: 60px 6% 36px;
  border-top: 1px solid var(--border);
}

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

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--text) !important;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #141414;
  border-top: 1px solid rgba(22, 199, 97, 0.3);
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.cookie-text a {
  color: var(--orange);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE TABLET ─── */
@media (max-width: 900px) {
  section {
    padding: 56px 5%;
  }

  .site-header {
    padding: 12px 5% !important;
  }

  .main-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 5% 48px;
  }

  .hero-right {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .plans-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

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

  .trust-card {
    position: static;
  }

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

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

/* ─── RESPONSIVE MOBILE ─── */
@media (max-width: 560px) {
  section {
    padding: 48px 4%;
  }

  .site-header {
    padding: 12px 4% !important;
  }

  .site-logo {
    font-size: 20px;
  }

  .hero {
    padding: 44px 4% 40px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero p {
    font-size: 14px;
  }

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

  .btn-orange,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

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

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

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

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

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE (page-produkt.php)
═══════════════════════════════════════════════════════════ */

/* BREADCRUMB */
.breadcrumb {
  padding: 11px 6%;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted2);
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb span {
  color: var(--orange);
}

/* PRODUCT HERO */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 400px;
  min-height: 90vh;
  background: radial-gradient(ellipse 60% 80% at 25% 50%, rgba(22, 199, 97, 0.06) 0%, transparent 70%), var(--bg2);
}

/* LEFT */
.product-info {
  padding: 52px 5% 52px 6%;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(22, 199, 97, 0.08);
  border: 1px solid rgba(22, 199, 97, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}

.product-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-title span {
  color: var(--orange);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #16c761;
  font-size: 15px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 13px;
  color: var(--muted);
}

.rating-text strong {
  color: var(--text);
}

.product-desc {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 520px;
}

.product-desc strong {
  color: var(--text);
  font-weight: 600;
}

.selector-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.plan-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.plan-card:hover {
  border-color: rgba(22, 199, 97, 0.4);
  transform: translateY(-2px);
}

.plan-card.active {
  border-color: var(--orange);
  background: rgba(22, 199, 97, 0.07);
  box-shadow: 0 0 24px rgba(22, 199, 97, 0.12);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.plan-dur {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-price-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  margin-top: 4px;
}

.plan-per-sm {
  font-size: 10px;
  color: var(--muted2);
  margin-top: 2px;
}

.plan-save {
  font-size: 10px;
  color: #4ade80;
  font-weight: 700;
  margin-top: 4px;
}

.quick-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qf {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.qf::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* RIGHT — ORDER BOX */
.order-box {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  overflow-y: auto;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 8px;
  padding: 9px 14px;
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--muted);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.ob-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ob-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.selected-display {
  background: rgba(22, 199, 97, 0.07);
  border: 1px solid rgba(22, 199, 97, 0.25);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sd-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.sd-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.sd-bonus {
  font-size: 11px;
  color: #4ade80;
  font-weight: 700;
  margin-top: 3px;
}

.sd-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-align: right;
}

.sd-per {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  margin-top: 2px;
}

.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 7px;
}

.field-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field-select:focus {
  outline: none;
  border-color: var(--orange);
}

.field-select option {
  background: #222;
}

.order-summary {
  background: var(--card);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
}

.os-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
}

.os-row.total {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 6px;
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
}

.os-row.total span:last-child {
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: #fff !important;
  border: none;
  border-radius: 30px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
  margin-bottom: 10px;
}

.btn-whatsapp:hover,
.btn-whatsapp:visited,
.btn-whatsapp:focus,
.btn-whatsapp:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  color: #fff !important;
  text-decoration: none !important;
}

.btn-whatsapp svg {
  fill: #fff !important;
  color: #fff !important;
  flex-shrink: 0;
}

.ob-note {
  font-size: 11px;
  color: var(--muted2);
  text-align: center;
  margin-bottom: 18px;
}

.guarantees {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

.g-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--muted);
}

.g-row strong {
  color: var(--text);
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.pay-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

/* SECTIONS BELOW HERO */
.section {
  padding: 64px 6%;
}

.section.alt {
  background: var(--bg2);
}

.sec-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.sec-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-h2 span {
  color: var(--orange);
}

.sec-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
  max-width: 680px;
}

/* INCLUDED GRID */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.inc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  transition: border-color 0.2s, transform 0.2s;
}

.inc-card:hover {
  border-color: rgba(22, 199, 97, 0.25);
  transform: translateY(-3px);
}

.inc-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.inc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.inc-val {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* COMPARISON TABLE */
.compare-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: center;
  background: var(--card);
  color: var(--muted);
  border-bottom: 2px solid var(--border);
}

.compare-table th.hl {
  background: rgba(22, 199, 97, 0.08);
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

.compare-table td {
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.compare-table td.feat {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
}

.compare-table td.hl {
  background: rgba(22, 199, 97, 0.04);
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tr:hover td.hl {
  background: rgba(22, 199, 97, 0.06);
}

.chk {
  color: #4ade80;
}

.crs {
  color: #f87171;
}

/* DEVICE CHIPS */
.dev-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dev-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.dev-chip:hover {
  border-color: rgba(22, 199, 97, 0.25);
  color: var(--text);
}

/* PRODUCT PAGE REVIEWS */
.rev-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.2s;
}

.rev-card:hover {
  border-color: rgba(22, 199, 97, 0.25);
  transform: translateY(-3px);
}

.rev-stars {
  color: #16c761;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.rev-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.rev-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(22, 199, 97, 0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.rev-name {
  font-size: 13px;
  font-weight: 700;
}

.rev-loc {
  font-size: 11px;
  color: var(--muted2);
}

/* PRODUCT PAGE — RESPONSIVE */
@media (max-width: 1024px) {
  .product-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-info {
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
  }

  .order-box {
    border-left: none;
  }

  .inc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .product-info,
  .order-box {
    padding: 36px 5%;
  }
}


/* ═══════════════════════════════════════════════════════════
   v2.1 ADDITIONS — Cookie Banner, Blog, Header scroll,
   Footer WA button, Self-hosted font fallbacks
═══════════════════════════════════════════════════════════ */

/* ── FONT VARIABLES ─────────────────────────────────────── */
:root {
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
}

body {
  font-family: var(--font-body) !important;
}

h1,
h2,
h3,
.site-logo,
.hero h1,
.feat-num,
.plan-price,
.stat-block-num,
.step-num,
.section-tag,
.product-title,
.ob-title,
.plan-dur,
.plan-price-sm,
.sd-name,
.sd-price,
.sec-h2,
.inc-name,
.compare-table th {
  font-family: var(--font-heading) !important;
}

/* ── HEADER SCROLL EFFECT ────────────────────────────────── */
.site-header {
  transition: box-shadow 0.3s, background 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  background: rgba(17, 17, 17, 0.98) !important;
  backdrop-filter: blur(12px);
}

/* ── COOKIE BANNER (DSGVO v2) ────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1e1e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 6%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.cookie-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-content {
  flex: 1;
}

.cookie-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.cookie-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: var(--orange);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  padding: 10px 20px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.cookie-accept {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-accept:hover {
  background: #e05300;
  transform: translateY(-1px);
}

/* ── FOOTER WHATSAPP BUTTON ──────────────────────────────── */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* ── BLOG PAGE ───────────────────────────────────────────── */
.blog-section {
  padding: 60px 6%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-o);
  transform: translateY(-4px);
}

.blog-card-img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(22, 199, 97, 0.06);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.blog-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.blog-card-date {
  font-size: 11px;
  color: var(--muted2);
}

.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-title a {
  color: var(--text);
}

.blog-card-title a:hover {
  color: var(--orange);
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.blog-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}

.blog-card-link:hover {
  text-decoration: underline;
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.blog-pagination .page-numbers {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* Blog empty state */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 480px;
  margin: 0 auto;
}

.blog-empty-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.blog-empty h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.blog-empty p {
  color: var(--muted);
  line-height: 1.7;
}

/* ── SINGLE POST ─────────────────────────────────────────── */
.post-hero {
  padding: 60px 6% 40px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  width: 100%;
  box-sizing: border-box;
}

.post-hero .post-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.post-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  max-width: 900px;
}

.post-content {
  width: 100%;
  box-sizing: border-box;
  padding: 48px 6%;
}

.post-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 14px;
  color: var(--text);
}

.post-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}

.post-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}

.post-content ul,
.post-content ol {
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.post-content li {
  margin-bottom: 6px;
}

.post-content strong {
  color: var(--text);
  font-weight: 600;
}

.post-content a {
  color: var(--orange);
}

.post-content a.btn-whatsapp,
.post-content a.btn-whatsapp:hover,
.post-content a.btn-whatsapp:visited {
  color: #fff !important;
  text-decoration: none !important;
}

.post-content a.btn-whatsapp svg,
.order-box a.btn-whatsapp svg {
  fill: #fff !important;
  color: #fff !important;
}

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

/* ── RESPONSIVE BLOG ─────────────────────────────────────── */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    gap: 8px;
  }
}


/* ═══════════════════════════════════════════════════════════
   v2.2 — Impressum TODOs, Floating WhatsApp, Admin bar fixes
═══════════════════════════════════════════════════════════ */

/* Impressum TODO highlights — visible to everyone until filled in */
mark.impressum-todo {
  background: rgba(255, 92, 0, 0.18);
  color: #16c761;
  border: 1px dashed rgba(255, 92, 0, 0.5);
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* Floating WhatsApp button — bottom right on all pages */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  z-index: 8000;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.wa-float svg {
  flex-shrink: 0;
}

/* Tooltip on hover */
.wa-float::before {
  content: 'WhatsApp Support';
  position: absolute;
  right: 68px;
  background: #1e1e1e;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wa-float:hover::before {
  opacity: 1;
}

/* Push floating button up when cookie banner is showing */
.cookie-banner.show~.wa-float,
body.cookie-visible .wa-float {
  bottom: 120px;
}

/* Admin bar compensation */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ─── FORCE FULL WIDTH ON SINGLE POSTS ──────────────────
   Override any WordPress global styles or theme.json
   max-width injections on single post pages            */
.single .post-hero,
.single .post-content,
.single article,
.wp-site-blocks,
.is-layout-constrained,
.is-layout-flow,
.entry-content {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   SINGLE POST - FULL WIDTH OVERRIDE
   Forces blog posts to be full-width like the homepage
   ═══════════════════════════════════════════════════════════ */

/* Kill ALL WordPress layout constraints on single posts */
.single,
.single body,
.single #page,
.single #content,
.single #primary,
.single #main,
.single .site-content,
.single .content-area,
.single .wp-site-blocks,
.single .entry-content,
.single .is-layout-constrained,
.single .is-layout-constrained>*,
.single .is-layout-flow,
.single .wp-block-group,
.single .wp-block-group__inner-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Post hero - full width dark banner matching homepage sections */
.post-hero {
  width: 100% !important;
  max-width: 100% !important;
  padding: 60px 6% 40px !important;
  background: var(--bg2) !important;
  border-bottom: 1px solid var(--border) !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.post-hero .post-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.post-hero .post-meta a {
  color: var(--orange) !important;
  text-decoration: none;
  font-weight: 600;
}

.post-hero h1 {
  font-size: clamp(28px, 4vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
  max-width: 900px;
  margin: 0 !important;
}

/* Post body wrapper - full width */
.post-body-wrap {
  width: 100% !important;
  max-width: 100% !important;
  background: var(--bg) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Post content - readable width centered but full background */
.post-content {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 56px 6% !important;
  margin: 0 auto !important;
  background: var(--bg) !important;
}

/* Content max-width for readability */
.post-content>*:not(.order-box):not(script) {
  max-width: 860px;
}

/* Order widget stays full width within its container */
.post-content .order-box {
  max-width: 520px !important;
  margin: 56px auto !important;
}

/* ─── BLOG TYPOGRAPHY matching homepage ─── */
.post-content h2 {
  font-size: clamp(20px, 3vw, 28px) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  color: var(--text) !important;
  margin: 48px 0 16px !important;
  line-height: 1.15 !important;
}

.post-content h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 12px;
  border-radius: 2px;
}

.post-content h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  margin: 32px 0 12px !important;
}

.post-content p {
  font-size: 16px !important;
  line-height: 1.9 !important;
  color: var(--muted) !important;
  margin-bottom: 20px !important;
}

.post-content ul,
.post-content ol {
  padding-left: 24px !important;
  margin-bottom: 24px !important;
  color: var(--muted) !important;
}

.post-content li {
  font-size: 16px !important;
  line-height: 1.8 !important;
  margin-bottom: 10px !important;
  color: var(--muted) !important;
}

.post-content strong {
  color: var(--text) !important;
  font-weight: 700 !important;
}

.post-content a {
  color: var(--orange) !important;
}

.post-content a:hover {
  text-decoration: underline !important;
}

/* WhatsApp button always white */
.post-content a.btn-whatsapp,
.post-content a.btn-whatsapp:hover,
.post-content a.btn-whatsapp:visited,
.post-content a.btn-whatsapp:focus {
  color: #fff !important;
  text-decoration: none !important;
}

.post-content a.btn-whatsapp svg,
.order-box .btn-whatsapp svg {
  fill: #fff !important;
  color: #fff !important;
}

/* ─── ORDERED LISTS ─── */
.post-content ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0 !important;
}

.post-content ol li {
  counter-increment: item;
  padding-left: 36px;
  position: relative;
}

.post-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 2px;
  background: var(--orange);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .post-hero {
    padding: 40px 5% 30px !important;
  }

  .post-content {
    padding: 40px 5% !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   PAGE TEMPLATE - FULL WIDTH OVERRIDE
   Forces all page templates (blog, pricing, etc.) to be
   full-width like the homepage — no WordPress containers
   ═══════════════════════════════════════════════════════════ */

.page #page,
.page #content,
.page #primary,
.page #main,
.page .site-content,
.page .content-area,
.page .wp-site-blocks,
.page .entry-content,
.page .is-layout-constrained,
.page .is-layout-constrained>*,
.page .is-layout-flow,
.page .wp-block-group,
.page .wp-block-group__inner-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Also target any generic wrapping containers WordPress may inject */
.page .wp-site-blocks>* {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   PAGE & SINGLE - UNIFIED FULL WIDTH OVERRIDE
   Forces ALL page templates and single posts to render
   edge-to-edge like the homepage — no WordPress containers
   ═══════════════════════════════════════════════════════════ */

/* Kill WordPress layout wrappers on pages AND posts */
.page #page,
.page #content,
.page #primary,
.page #main,
.page .site-content,
.page .content-area,
.page .wp-site-blocks,
.page .entry-content,
.page .is-layout-constrained,
.page .is-layout-constrained>*,
.page .is-layout-flow,
.page .wp-block-group,
.page .wp-block-group__inner-container,
.single #page,
.single #content,
.single #primary,
.single #main,
.single .site-content,
.single .content-area,
.single .wp-site-blocks,
.single .entry-content,
.single .is-layout-constrained,
.single .is-layout-constrained>*,
.single .is-layout-flow,
.single .wp-block-group,
.single .wp-block-group__inner-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  float: none !important;
}

/* WordPress global styles inject :where() layout rules — kill them */
:where(.is-layout-constrained)> :not(.alignleft):not(.alignright):not(.alignfull) {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

:where(.wp-site-blocks)>* {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Page hero — full width, matching homepage section style */
.page-hero {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

/* Blog section — full width grid */
.blog-section {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 60px 6% !important;
  margin: 0 !important;
}

/* Blog grid — use full available width */
.blog-grid {
  width: 100% !important;
  max-width: 100% !important;
}

.pricing .plan-note {
  margin-top: 8px !important;
}

/* ═══════════════════════════════════════════════════════════
   v2.4 — FIX LEFT-ALIGNED CONTENT
   ═══════════════════════════════════════════════════════════ */

/* 1) Kill the old rule that was left-aligning everything */
.post-content>*:not(.order-box):not(script) {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 2) Strip all padding from outer wrapper so it goes edge-to-edge */
.post-body-wrap,
.post-content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* 3) The inner wrapper is the ONLY thing that controls width */
.post-content-inner {
  display: block !important;
  max-width: 860px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 56px 6% !important;
  box-sizing: border-box !important;
}

/* 4) Pricing/embed blocks break out full-width */
.post-content-inner .np-embed-wrap,
.post-content-inner .iptv-pricing-wrap,
.post-content-inner .plans-row {
  width: calc(100% + 12%) !important;
  margin-left: -6% !important;
  margin-right: -6% !important;
  box-sizing: border-box !important;
  padding: 0 6% !important;
}

/* 5) Mobile */
@media (max-width: 768px) {
  .post-content-inner {
    padding: 40px 5% !important;
  }

  .post-content-inner .np-embed-wrap,
  .post-content-inner .iptv-pricing-wrap,
  .post-content-inner .plans-row {
    width: calc(100% + 10%) !important;
    margin-left: -5% !important;
    margin-right: -5% !important;
    padding: 0 5% !important;
  }
}
header.site-header nav.main-nav a.nav-cta {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}
