/* PROFESIONAL IPTV — Corporate Executive Charcoal Theme */

:root {
  --bg: #FAFAFA;
  --bg-alt: #F4F4F5;
  --surface: #FFFFFF;
  --border: #E4E4E7;
  --emerald: #A855F7;
  --emerald-dark: #7E22CE;
  --gold: #EAB308;
  --header-dark: #18181B;
  --text: #18181B;
  --muted: #71717A;
  --footer-bg: #09090B;
  --charcoal: #18181B;

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --font-mono: "Sora", ui-monospace, monospace;

  --nav-h: 64px;
  --radius: 4px;
  --card-radius: 8px;
  --section-py: 64px;
  --shadow: 0 6px 24px rgba(24, 24, 27, 0.08);
  --shadow-hover: 0 14px 36px rgba(234, 179, 8, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

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

a:hover {
  color: var(--emerald-dark);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.center {
  text-align: center;
}

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

.mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(1.85rem, 5vw, 2.8rem);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

/* Header — dark sticky */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header--dark {
  background: var(--header-dark);
}

.site-header--dark.scrolled,
.site-header.scrolled {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(234, 179, 8, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 12px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(300px, 52vw);
  line-height: 0;
}

.header-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.93rem;
  font-weight: 500;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover,
.nav a.active {
  color: #FFFFFF;
}

.nav--light a {
  color: rgba(255, 255, 255, 0.86);
}

.nav--light a:hover,
.nav--light a.active {
  color: #FFFFFF;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

.nav-cta:hover {
  box-shadow: 0 4px 18px rgba(234, 179, 8, 0.45);
  color: var(--charcoal) !important;
}

.hamburger,
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 4%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--header-dark);
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.mobile-nav a:hover {
  color: #FFFFFF;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--charcoal);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #27272A;
  box-shadow: 0 4px 20px rgba(24, 24, 27, 0.35);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.btn.alt {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--emerald);
}

.btn.alt:hover {
  background: rgba(5, 150, 105, 0.07);
  color: var(--emerald-dark);
}

.btn--gold {
  background: var(--gold) !important;
  color: #111827 !important;
  font-weight: 800;
}

.btn--gold:hover {
  background: #D97706 !important;
  color: #111827 !important;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.42);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Global section shells */
.section {
  padding: var(--section-py) 0;
  background: var(--bg);
}

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

/* Cards */
.card,
.panel,
.diag-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.card:hover,
.diag-card:hover,
.price-card:hover,
.review-card:hover,
.why-card:hover,
.channel-cell:hover,
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

/* Hero split 55/45 */
.hero-split {
  background: var(--bg);
  padding: calc(var(--nav-h) + 40px) 0 56px;
}

.hero-split__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-split__content .kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-badge {
  display: inline-block;
  background: rgba(234, 179, 8, 0.15);
  color: #A16207;
  border: 1px solid rgba(234, 179, 8, 0.45);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 48ch;
  margin-bottom: 0.5rem;
}

.hero-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-split__media img {
  width: 100%;
  height: auto;
}

.hero-stats {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.hero-stat {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
}

.hero-stat strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

/* Trust section with image overlay + indicators 2x2 */
.trust-section {
  position: relative;
  padding: 76px 0;
  color: #FFFFFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(6, 78, 59, 0.9) 10%,
    rgba(2, 44, 34, 0.72) 55%,
    rgba(2, 44, 34, 0.86) 100%
  );
  z-index: -1;
}

.trust-section .container {
  position: relative;
  z-index: 1;
}

.trust-section h2 {
  color: #FFFFFF;
}

.trust-section p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}

.trust-indicators {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 0.9rem;
  max-width: 700px;
}

.trust-indicator {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(167, 243, 208, 0.45);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  backdrop-filter: blur(2px);
}

.trust-indicator strong {
  display: block;
  color: #ECFDF5;
}

.trust-indicator span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  margin-top: 4px;
}

/* Trust bar */
.trust-bar {
  background: var(--bg-alt);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

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

.trust-bar__sep {
  color: #86EFAC;
  font-weight: 500;
}

/* Status widgets */
.status-widget-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  padding: 16px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}

.status-widget-inline strong {
  color: var(--text);
}

.status-widget-inline .status-online {
  color: var(--emerald);
  font-weight: 700;
}

.status-widget-inline .sep {
  color: #6EE7B7;
}

.status-widget {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--emerald);
  text-align: left;
}

.status-head {
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.55);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0);
  }
}

.status-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.status-row:last-child {
  border-bottom: none;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}

.pricing-grid.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  border-radius: var(--card-radius);
  background: #FFFFFF;
  border: 1px solid var(--border);
}

.price-card.popular {
  border-color: var(--border);
  border-top: 4px solid var(--charcoal);
  box-shadow: 0 10px 32px rgba(24, 24, 27, 0.12);
}

.badge-pop {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.price-tag {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--emerald);
  margin: 0.55rem 0;
}

.price-old s {
  opacity: 0.65;
}

.price-card ul {
  list-style: none;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card li {
  padding: 4px 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Why choose 3x2 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Devices split 55/45 */
.devices-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 2.5rem;
  align-items: center;
}

.devices-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.devices-split__media img {
  width: 100%;
  height: auto;
}

.devices-note {
  margin: 1rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.device-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 1.25rem 0;
  font-weight: 500;
}

.device-item {
  font-size: 0.95rem;
}

.devices-img {
  max-width: 720px;
  margin: 1.5rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.devices-list {
  font-family: var(--font-head);
  font-weight: 700;
  margin-top: 1rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-num,
.step-circle {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--gold);
  background: var(--charcoal);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 8px;
  box-shadow: 0 5px 14px rgba(5, 150, 105, 0.25);
}

/* Comparison table */
.cmp-wrap {
  overflow-x: auto;
  margin-top: 1.25rem;
  -webkit-overflow-scrolling: touch;
}

table.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: #FFFFFF;
}

table.cmp th,
table.cmp td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}

table.cmp th {
  background: var(--bg-alt);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
}

table.cmp td:first-child {
  color: var(--muted);
  font-weight: 500;
}

table.cmp .col-good {
  color: var(--emerald);
  font-weight: 700;
}

table.cmp tr:nth-child(even) td {
  background: #F0FDF4;
}

/* Channels and reviews */
.channels-section {
  padding: var(--section-py) 0;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.channel-cell {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-left 0.2s, transform 0.2s;
}

.channel-flag {
  font-size: 1.25rem;
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.channels-col h3 {
  margin-bottom: 0.75rem;
}

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

.review-card .review-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--emerald);
  margin-bottom: 4px;
}

.review-device {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.review-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.review-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(140deg, var(--emerald), #10B981);
}

/* FAQ */
.faq-list {
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(2, 44, 34, 0.05);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: #FFFFFF;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-q span {
  color: var(--emerald);
  font-weight: 800;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

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

.faq-item.open .faq-a {
  max-height: 600px;
}

.faq-a-inner {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA strips */
.cta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.cta-strip h2 {
  margin-bottom: 0.5rem;
}

.cta-strip p {
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 1.25rem;
}

.cta-strip--deep {
  background: var(--header-dark);
  border: none;
}

.cta-strip--deep h2,
.cta-strip--deep p {
  color: #FFFFFF;
}

.cta-strip--deep p {
  color: rgba(255, 255, 255, 0.86);
}

.cta-strip--deep .btn {
  background: var(--gold);
  color: #111827;
}

.cta-strip--deep .btn:hover {
  background: #D97706;
  color: #111827;
}

/* Legacy modifier kept for parity */
.cta-strip--cyan {
  background: var(--header-dark);
  border: none;
}

.cta-strip--cyan h2,
.cta-strip--cyan p {
  color: #FFFFFF;
}

.cta-strip--cyan .btn {
  background: var(--gold);
  color: #111827;
}

.cta-strip--cyan .btn:hover {
  background: #D97706;
  color: #111827;
}

.cta-strip--copper {
  background: #064E3B;
  border: none;
  padding: 48px 0;
}

.cta-strip--copper h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-strip--copper .btn {
  background: var(--gold);
  color: #111827;
}

.cta-strip--copper .btn:hover {
  background: #D97706;
  color: #111827;
}

.cta-strip--royal {
  background: #022C22;
  border: none;
  padding: 48px 0;
}

.cta-strip--royal h2 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.cta-strip--royal p {
  color: rgba(255, 255, 255, 0.84);
}

/* Page hero */
.page-hero {
  padding: 56px 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero--img {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 72px 0;
  border-bottom: none;
  color: #FFFFFF;
}

.page-hero--img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6, 78, 59, 0.7) 0%,
    rgba(2, 44, 34, 0.62) 55%,
    rgba(2, 44, 34, 0.74) 100%
  );
}

.page-hero--img .container {
  position: relative;
  z-index: 1;
}

.page-hero--img h1,
.page-hero--img .hero-inner h1 {
  color: #FFFFFF !important;
  font-size: clamp(2rem, 5vw, 52px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.page-hero--img .hero-sub,
.page-hero--img .hero-sub--light {
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.page-hero--img .hero-meta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.page-hero--img .hero-meta a {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero--img .hero-meta a:hover {
  color: #D1FAE5;
}

.page-hero--img .hero-cta {
  justify-content: center;
  margin-top: 1.25rem;
}

.page-hero--img .hero-cta .btn {
  color: #FFFFFF;
}

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card--large {
  text-align: center;
  padding: 2rem 1.5rem;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.16);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

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

.article-prose {
  max-width: 72ch;
}

.article-prose p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.article-prose h2 {
  margin-top: 1.75rem;
  color: var(--text);
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1rem 1.25rem;
  color: var(--muted);
}

.blog-thumb {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

/* Quality grid */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.quality-card h3 {
  color: var(--emerald-dark);
  margin-bottom: 0.75rem;
}

.quality-ours {
  color: var(--text);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: #D1FAE5;
  padding: 48px 0 24px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-weight: 700;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer a {
  color: #A7F3D0;
  font-size: 0.9rem;
}

.footer a:hover {
  color: #FFFFFF;
}

.footer .muted {
  color: #6EE7B7;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  line-height: 0;
  margin-bottom: 4px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #6EE7B7;
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2, 44, 34, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--border);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.popup-close:hover {
  color: var(--text);
}

/* Floating action buttons */
.float-buy {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 55;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: 0 4px 24px rgba(24, 24, 27, 0.45);
}

.float-buy:hover {
  color: #FFFFFF;
  box-shadow: 0 6px 30px rgba(24, 24, 27, 0.56);
}

.sticky-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

/* Accessibility + utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.kicker {
  font-size: 0.85rem;
}

.pricing-row-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

#reseller-pricing {
  grid-template-columns: repeat(3, 1fr);
}

/* Tablet + mobile responsiveness (forumiptv-de style) */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hamburger,
  .nav-toggle {
    display: block;
  }

  .hero-split__grid {
    grid-template-columns: 1fr;
  }

  .hero-split__media {
    order: -1;
    max-height: 280px;
  }

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

  .trust-indicators {
    grid-template-columns: 1fr 1fr;
  }

  .devices-split {
    grid-template-columns: 1fr;
  }

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

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

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

  .pricing-grid.pricing-grid--3 {
    grid-template-columns: 1fr;
  }

  .trust-bar__sep {
    display: none;
  }

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

  .status-widget-inline {
    flex-direction: column;
    text-align: center;
  }

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

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

  #reseller-pricing {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .trust-indicators {
    grid-template-columns: 1fr;
  }

  .device-items {
    grid-template-columns: 1fr;
  }
}

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

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

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

@media (max-width: 375px) {
  :root {
    --section-py: 48px;
  }

  .btn-row {
    flex-direction: column;
  }

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

  h1 {
    font-size: 1.65rem;
  }

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

  .sticky-wa {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  table.cmp {
    font-size: 0.8rem;
  }

  table.cmp th,
  table.cmp td {
    padding: 8px 10px;
  }
}
