/* IPTV SMARTERS PLAYER — Sleek Tech Indigo Silver */

:root {
  --bg: #FAFBFF;
  --bg-alt: #F0F4FF;
  --surface: #FFFFFF;
  --border: #E0E7FF;
  --indigo: #4F46E5;
  --indigo-dark: #3730A3;
  --silver: #94A3B8;
  --header-dark: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --footer-bg: #1E1B4B;
  --charcoal: #0F172A;

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

  --nav-h: 72px;
  --radius: 8px;
  --card-radius: 14px;
  --section-py: 64px;
  --shadow: 0 6px 24px rgba(24, 24, 27, 0.08);
  --shadow-hover: 0 14px 36px rgba(79, 70, 229, 0.22);
}

*,
*::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(--indigo);
  text-decoration: none;
}

a:hover {
  color: var(--indigo-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 — light sticky */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.site-header--light {
  background: #FFFFFF;
}

.site-header--light .nav a,
.site-header .nav--dark a {
  color: var(--muted);
}

.site-header--light .nav a:hover,
.site-header--light .nav a.active,
.site-header .nav--dark a:hover,
.site-header .nav--dark a.active {
  color: var(--indigo);
}

.site-header--light.scrolled,
.site-header.scrolled {
  box-shadow: 0 2px 18px rgba(17, 24, 39, 0.08);
  border-bottom-color: var(--border);
}

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

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

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  line-height: 0;
}

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

.header-actions {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

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

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

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

.nav--dark a:hover,
.nav--dark a.active {
  color: var(--indigo);
}

.nav-cta {
  background: var(--indigo) !important;
  color: #FFFFFF !important;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 0.88rem;
}

.nav-cta--header-mobile {
  display: none;
  padding: 8px 12px;
  font-size: 0.78rem;
}

.nav-cta:hover {
  box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35);
  color: #FFFFFF !important;
  background: var(--indigo-dark) !important;
}

.hamburger,
.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 4%;
  border-top: 1px solid var(--border);
  background: #FFFFFF;
}

.mobile-nav a {
  color: var(--text);
}

.mobile-nav a:hover {
  color: var(--indigo);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--indigo);
  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: var(--indigo-dark);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
  transform: translateY(-1px);
  color: #FFFFFF;
}

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

.btn.alt:hover {
  background: rgba(79, 70, 229, 0.07);
  color: var(--indigo-dark);
}

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

.btn--gold:hover {
  background: #3730A3 !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(--silver);
}

/* Hero split — left copy + right image */
.hero-split {
  background: var(--bg);
  padding: calc(var(--nav-h) + 24px) 0 48px;
}

.hero-split__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "title media"
    "details media";
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.hero-title-block {
  grid-area: title;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-title-block .hero-badge--indigo {
  margin-bottom: 0;
}

.hero-split__title {
  margin: 0;
  line-height: 1.12;
}

.hero-split__media {
  grid-area: media;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-details-block {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-details-block .hero-sub {
  margin: 0;
  max-width: 48ch;
}

.hero-split__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-split__media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}


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

.hero-badge {
  display: inline-block;
  background: rgba(234, 179, 8, 0.15);
  color: #3730A3;
  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-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: #EEF2FF;
}

.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: #C7D2FE;
  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(--indigo);
  font-weight: 700;
}

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

.status-widget {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--indigo);
  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(--indigo);
  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-left: 5px solid var(--indigo);
  box-shadow: 0 10px 32px rgba(79, 70, 229, 0.15);
}

.badge-pop {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--silver);
  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(--indigo);
  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(--silver);
  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(--indigo);
  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(--indigo);
  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(--indigo), #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(--indigo);
  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(--silver);
  color: #111827;
}

.cta-strip--deep .btn:hover {
  background: #3730A3;
  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(--silver);
  color: #111827;
}

.cta-strip--cyan .btn:hover {
  background: #3730A3;
  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(--silver);
  color: #111827;
}

.cta-strip--copper .btn:hover {
  background: #3730A3;
  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(2, minmax(260px, 340px));
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto 2rem;
  width: fit-content;
  max-width: 100%;
}

.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(--indigo);
  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);
  width: 100%;
  object-fit: cover;
  min-height: 180px;
}

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

.quality-card h3 {
  color: var(--indigo-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(--silver);
  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: #A5B4FC;
}

.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: #A5B4FC;
}

/* 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 !important;
  }

  .header-actions {
    display: flex;
  }

  .nav-cta--header-mobile {
    display: inline-block;
  }

  .hamburger,
  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    min-height: 56px;
    padding: 8px 0;
    gap: 8px;
  }

  .header-logo {
    flex: 1 1 auto;
    max-width: calc(100% - 132px);
  }

  .header-logo img {
    height: 42px !important;
    max-height: 42px !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .hero-split__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-title-block,
  .hero-split__media,
  .hero-details-block {
    width: 100%;
  }

  .hero-split__media img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  .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: minmax(260px, 340px);
    justify-content: center;
  }

  .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;
  }
}

/* IPTV NAK — minimal stats row */
.minimal-stats {
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.minimal-stats__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.minimal-stats__item {
  flex: 1 1 140px;
  text-align: center;
  padding: 12px 24px;
}

.minimal-stats__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
}

.minimal-stats__item span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 4px;
}

.minimal-stats__divider {
  width: 1px;
  height: 48px;
  background: var(--indigo);
  flex-shrink: 0;
}

/* NAK principle section */
.nak-principle {
  position: relative;
  padding: 76px 0;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.nak-principle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(249, 249, 249, 0.88) 100%);
  z-index: -1;
}

.nak-principle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.nak-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  border-left: 4px solid var(--indigo);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nak-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-hover);
}

.nak-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nak-card p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.hero-badge--teal {
  background: rgba(45, 212, 191, 0.12);
  color: var(--indigo-dark);
  border: 1px solid var(--indigo);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
  display: inline-block;
}

.hero-trust-line {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* Black numbered step squares */
.steps-grid--square .step-square {
  width: 48px;
  height: 48px;
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-bottom: 12px;
}

.steps-grid--square .card {
  border-left: none;
}

.popup-card--nak {
  border: 2px solid #000000;
  border-top: 4px solid var(--indigo);
}

.float-buy {
  border: none;
  background: var(--indigo);
  border-radius: 50%;
}

.float-buy::after {
  content: "€";
  font-weight: 800;
  font-size: 1.25rem;
}

.cta-strip--indigo {
  background: #052E16 !important;
  border: none;
  padding: 56px 0;
}

.cta-strip--indigo h2 {
  color: var(--silver) !important;
}

.cta-strip--indigo p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.cta-strip--indigo .btn {
  background: var(--indigo) !important;
  color: #FFFFFF !important;
}

.cta-strip--indigo .btn:hover {
  background: #15803D !important;
}

.badge-savings,
.badge-value {
  display: inline-block;
  background: var(--silver);
  color: #3730A3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .minimal-stats__divider {
    display: none;
  }

  .minimal-stats__inner {
    gap: 16px;
  }

  .nak-principle__grid {
    grid-template-columns: 1fr;
  }

  .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;
  }
}

/* Cost breakdown */
.cost-breakdown {
  padding: var(--section-py) 0;
}

.cost-breakdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cost-breakdown__media img {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.cost-savings-banner {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 18px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid var(--indigo);
  border-radius: var(--radius);
  color: var(--indigo-dark);
  font-weight: 700;
}

.price-savings {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--indigo);
  font-weight: 600;
}

/* Savings calculator */
.savings-calc {
  position: relative;
  overflow: hidden;
}

.savings-calc__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.savings-calc__inner {
  position: relative;
  z-index: 1;
}

.savings-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.savings-scenario {
  text-align: center;
  border-left: 4px solid var(--indigo);
}

.savings-scenario .savings-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--indigo);
  margin: 0.5rem 0;
}

.savings-scenario .savings-from {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-badge--gold {
  display: inline-block;
  background: rgba(148, 163, 184, 0.2);
  color: #3730A3;
  border: 1px solid var(--silver);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero-price-hint {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--indigo);
}

.steps-grid .step-circle {
  width: 52px;
  height: 52px;
  background: var(--indigo);
  color: #FFFFFF;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.1rem;
}

.col-good {
  color: var(--indigo);
  font-weight: 700;
}

@media (max-width: 900px) {
  .cost-breakdown__grid,
  .savings-scenarios {
    grid-template-columns: 1fr;
  }
}


/* Indigo theme extras */
.hero-badge--indigo {
  display: inline-block;
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo-dark);
  border: 1px solid var(--indigo);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero-compat {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.setup-guide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.setup-steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.setup-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.setup-step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--indigo);
  color: #FFFFFF;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-app-note {
  margin-top: 1.25rem;
  padding: 12px 16px;
  background: rgba(79, 70, 229, 0.06);
  border-left: 4px solid var(--indigo);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.setup-guide__visuals {
  display: flex;
  align-items: center;
  justify-content: center;
}

.setup-guide__visuals img {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.cta-strip--indigo {
  background: #4F46E5;
  color: #FFFFFF;
  padding: 56px 0;
}

.cta-strip--indigo h2 {
  color: #FFFFFF;
}

.cta-strip--indigo .muted {
  color: rgba(255, 255, 255, 0.85);
}

.cta-strip--indigo .btn {
  background: #FFFFFF;
  color: #0F172A;
}

.cta-strip--indigo .btn:hover {
  background: #F8FAFC;
  color: #0F172A;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.col-good {
  color: var(--indigo);
  font-weight: 700;
}

.price-card.popular {
  border-color: var(--indigo);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.2);
}

.badge-value {
  display: inline-block;
  background: var(--indigo);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.float-buy {
  background: var(--indigo) !important;
}

.popup-card {
  border: 2px solid var(--indigo) !important;
}

.device-list li::before {
  color: var(--indigo);
}

.steps-grid .step-circle {
  background: var(--indigo);
}

.contact-card--indigo {
  border-top: 4px solid var(--indigo);
}

@media (max-width: 900px) {
  .setup-guide__grid {
    grid-template-columns: 1fr;
  }

  .setup-guide__visuals img {
    max-width: 100%;
  }
}
