/* ===== Prime Quality TV – Variables ===== */
:root {
  /* Background: rich near-black (premium contrast) */
  --bg-dark: #020308;
  --bg-card: #0c0f14;
  --bg-elevated: #141820;
  /* Primary: saturated blue */
  --primary: #1d4ed8;
  --primary-bright: #3b82f6;
  --primary-glow: rgba(59, 130, 246, 0.68);
  --primary-glow-strong: rgba(96, 165, 250, 0.92);
  /* Secondary: gold (site-wide — slightly deeper) */
  --yellow: #ca8a04;
  --yellow-bright: #eab308;
  --yellow-glow: rgba(202, 138, 4, 0.52);
  /* Blue + gold accents (underlines, highlights) */
  --accent-underline: linear-gradient(90deg, var(--primary-bright) 0%, var(--yellow-bright) 100%);
  --accent-underline-glow: 0 0 12px var(--primary-glow), 0 0 22px var(--yellow-glow);
  --text: #ffffff;
  --text-muted: #d9e1ec;
  --success: #22c55e;
  --border: #2a3040;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.65);
  --shadow-deep: 0 24px 56px rgba(0, 0, 0, 0.75);
  --transition: 0.2s ease;
  --header-inner-h: 80px;
  --ticker-h: 34px;
  --ticker-visible-h: 0px;
  --site-header-h: calc(var(--header-inner-h) + var(--ticker-visible-h) + env(safe-area-inset-top, 0px));
}

html.page-home {
  --ticker-visible-h: var(--ticker-h);
}

html.page-home.ticker-collapsed {
  --ticker-visible-h: 0px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Avoid mobile browsers auto-inflating/shrinking text (often mistaken for “stuck zoom”) */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(37, 99, 235, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 70% 50% at 100% 60%, rgba(234, 179, 8, 0.14) 0%, transparent 48%),
    var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition), box-shadow var(--transition);
}

a:hover {
  color: var(--yellow-bright);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Buttons – Glowing blue, yellow hover ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn--with-icon .btn-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

/* Primary: glowing blue */
.btn-primary {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 42%, #3b82f6 100%);
  color: #fff;
  border: 1px solid rgba(147, 197, 253, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 24px var(--primary-glow),
    0 0 48px rgba(59, 130, 246, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 45%, #60a5fa 100%);
  border-color: rgba(234, 179, 8, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 32px var(--primary-glow-strong),
    0 0 56px rgba(59, 130, 246, 0.45),
    0 0 40px rgba(234, 179, 8, 0.15),
    0 8px 28px rgba(0, 0, 0, 0.5);
  color: var(--yellow-bright);
}

.btn-secondary {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow) 100%);
  color: #0a0a0a;
  border: 1px solid rgba(180, 83, 9, 0.85);
  font-weight: 700;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 28px var(--yellow-glow);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #fcd34d 0%, #ca8a04 100%);
  border-color: rgba(146, 64, 14, 0.9);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.5),
    0 0 36px var(--yellow-glow),
    0 0 48px rgba(202, 138, 4, 0.35);
  color: #0a0a0a;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow-bright);
  box-shadow: 0 0 16px var(--yellow-glow);
}

/* ===== Site header (fixed: logo bar + ticker) ===== */
.site-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(180deg, #030618 0%, #020410 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 48px rgba(37, 99, 235, 0.22);
}

.header {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-inner-h);
  gap: 1.5rem;
}

/* Scrolling promo ticker (homepage only — yellow bar below nav) */
.ticker-bar {
  width: 100%;
  flex-shrink: 0;
  max-height: var(--ticker-h);
  overflow: hidden;
  opacity: 1;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

html.page-home .ticker-bar {
  background: linear-gradient(
    90deg,
    #fde047 0%,
    var(--yellow-bright) 45%,
    #facc15 100%
  );
  border-top: 1px solid rgba(161, 98, 7, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 3px 12px rgba(0, 0, 0, 0.22);
}

html.page-home.ticker-collapsed .ticker-bar {
  max-height: 0;
  opacity: 0;
  border-top-color: transparent;
  box-shadow: none;
  pointer-events: none;
}

.header .container.header-inner {
  width: 100%;
}

.ticker-viewport {
  overflow: hidden;
  width: 100%;
  height: var(--ticker-h);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ticker {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
}

.ticker-item {
  flex-shrink: 0;
  padding: 0 1.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

html.page-home .ticker-item {
  color: #0c0a09;
  font-weight: 700;
  text-shadow: none;
}

.ticker-item::after {
  content: "•";
  margin-left: 1.75rem;
  font-size: 0.55rem;
  vertical-align: middle;
}

html.page-home .ticker-item::after {
  color: rgba(12, 10, 9, 0.4);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-bar {
    transition: none;
  }

  html.page-home.ticker-collapsed .ticker-bar {
    display: none;
  }

  .ticker {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0.35rem 0;
    padding: 0.35rem 0.75rem;
    height: auto;
    min-height: var(--ticker-h);
  }

  .ticker-viewport {
    height: auto;
    min-height: var(--ticker-h);
  }

  .ticker-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --ticker-h: 32px;
  }

  .ticker-item {
    font-size: 0.72rem;
    padding: 0 1.25rem;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-left: 0;
  padding: 0;
  min-height: 58px;
}

.logo-icon {
  display: block;
  height: 58px;
  width: 58px;
  min-width: 58px;
  min-height: 58px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  image-rendering: auto;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.4));
  transition: filter 0.2s ease;
  vertical-align: middle;
}

.logo-link:hover .logo-icon {
  filter: drop-shadow(0 0 14px rgba(37, 99, 235, 0.5)) drop-shadow(0 0 22px rgba(234, 179, 8, 0.12));
}

.logo-text {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.4)) drop-shadow(0 0 24px rgba(37, 99, 235, 0.2));
  transition: filter 0.2s ease;
}

.logo-link:hover .logo-img {
  filter: drop-shadow(0 0 14px rgba(37, 99, 235, 0.5)) drop-shadow(0 0 28px rgba(234, 179, 8, 0.15));
}


.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link--cta {
  color: var(--yellow-bright);
  background: rgba(234, 179, 8, 0.15);
}

.nav-link--cta:hover {
  background: rgba(234, 179, 8, 0.25);
  color: var(--yellow-bright);
}

.nav-link--contact {
  color: #fff;
  background: transparent;
  border: 1px solid var(--primary-bright);
  padding: 0.55rem 1.25rem;
  font-weight: 600;
  border-radius: 2rem;
}

.nav-link--contact:hover {
  color: #fff;
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--primary-bright);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.nav-link--active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.page-main {
  padding: calc(var(--site-header-h) + 2rem) 0 4rem;
  min-height: 50vh;
}

.page-hero {
  text-align: center;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.page-desc a {
  color: var(--primary-bright);
}

/* Pricing page – same structure as WatchOnTV */
.page-hero--cinematic {
  background: #050A30;
  position: relative;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 130, 246, 0.12), transparent);
  pointer-events: none;
}
.page-hero--cinematic .container {
  position: relative;
}
.page-title--pricing {
  margin-bottom: 0.5rem;
}
.title-underline {
  position: relative;
  display: inline-block;
}
.title-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--yellow));
  border-radius: 2px;
}
.pricing-devices-label {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.pricing-page .device-tabs {
  margin-bottom: 2.5rem;
}
.section--dark {
  background: #050A30;
  padding: 3rem 0 4rem;
}
.pricing-section .container {
  max-width: 1200px;
}
.pricing-page {
  background: #050A30;
}

/* Floating contact – right side (like WatchOnTV) */
.floating-contact {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 100;
}
.floating-contact-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.floating-contact--email {
  background: var(--primary);
}
.floating-contact--whatsapp {
  background: #25d366;
}
.floating-contact--telegram {
  background: #0088cc;
}

/* Reseller page – same style as WatchOnTV Reseller */
.reseller-page {
  background: #050A30;
}
.reseller-plans .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reseller-plans .section-header {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.reseller-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: stretch;
}
.reseller-plans-grid .plan-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* Liste: coche + texte 3la nafs l-ligne, left-aligned (b7al t-teswira) */
.reseller-plans-grid .plan-card ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  text-align: left;
  width: 100%;
}
.reseller-plans-grid .plan-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  padding-left: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.4;
}
.reseller-plans-grid .plan-card li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--yellow);
  font-weight: 700;
  position: static;
}
.reseller-why-grid {
  max-width: 1000px;
  margin: 0 auto;
}
.reseller-credits-intro {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.reseller-credits-intro strong {
  color: var(--text);
}
.reseller-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}
.btn--large {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .reseller-plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text) !important;
}

.logo:hover {
  color: var(--primary) !important;
}

.lang-select {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, var(--primary-bright) 0%, var(--primary) 100%);
  color: #fff;
  border: 1px solid rgba(147, 197, 253, 0.55);
  padding: 0.5rem 0.95rem;
  border-radius: 2rem;
  font-family: inherit;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 28px rgba(59, 130, 246, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.lang-btn:hover {
  background: linear-gradient(180deg, #60a5fa 0%, var(--primary-bright) 100%);
  border-color: rgba(234, 179, 8, 0.55);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 36px rgba(59, 130, 246, 0.55),
    0 0 24px rgba(234, 179, 8, 0.2);
}

.lang-flag {
  width: 1.35rem;
  height: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  border-radius: 0.18rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("assets/flags/gb.svg");
}

.lang-flag--de { background-image: url("assets/flags/de.svg"); }
.lang-flag--gb { background-image: url("assets/flags/gb.svg"); }
.lang-flag--tr { background-image: url("assets/flags/tr.svg"); }

.lang-chevron {
  font-size: 0.6rem;
  opacity: 0.9;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  list-style: none;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.lang-select:hover .lang-dropdown,
.lang-select.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
}

.lang-dropdown a[data-lang]::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.78rem;
  margin-right: 0.45rem;
  border-radius: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lang-dropdown a[data-lang="de"]::before { background-image: url("assets/flags/de.svg"); }
.lang-dropdown a[data-lang="en"]::before { background-image: url("assets/flags/gb.svg"); }
.lang-dropdown a[data-lang="tr"]::before { background-image: url("assets/flags/tr.svg"); }

.lang-dropdown a:hover {
  background: var(--bg-elevated);
  color: var(--yellow-bright);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--site-header-h) + 2rem) 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 70%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    linear-gradient(225deg, rgba(234, 179, 8, 0.08) 0%, transparent 50%),
    url('assets/iptv-hero-4k.jpg') 55% center / cover no-repeat;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, var(--bg-dark) 90%);
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.25);
  color: var(--primary-bright);
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px var(--primary-glow);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.1rem;
}

/* Hero: opaque CTAs on photo — solid colors, no “glass” bleed-through */
.hero-cta .btn {
  position: relative;
  z-index: 1;
  isolation: isolate;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.hero-cta .btn-secondary {
  background: linear-gradient(180deg, #eab308 0%, #ca8a04 45%, #a16207 100%);
  color: #0a0a0a;
  border: 1px solid rgba(120, 53, 15, 0.75);
  font-weight: 800;
  box-shadow:
    0 2px 0 rgba(120, 53, 15, 0.55),
    0 6px 20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 0 36px var(--yellow-glow);
}

.hero-cta .btn-secondary:hover {
  background: linear-gradient(180deg, #fcd34d 0%, #eab308 42%, #ca8a04 100%);
  color: #0a0a0a;
  border-color: rgba(120, 53, 15, 0.88);
  box-shadow:
    0 2px 0 rgba(120, 53, 15, 0.5),
    0 8px 26px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.32) inset,
    0 0 44px var(--yellow-glow);
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 22%, #2563eb 52%, #3b82f6 100%);
  color: #fff;
  border: 1px solid rgba(191, 219, 254, 0.75);
  font-weight: 700;
  box-shadow:
    0 2px 0 rgba(15, 40, 100, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 8px 26px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(59, 130, 246, 0.55),
    0 0 56px rgba(37, 99, 235, 0.35);
}

.hero-cta .btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 38%, #3b82f6 55%, #60a5fa 100%);
  color: #fff;
  border-color: rgba(234, 179, 8, 0.65);
  box-shadow:
    0 2px 0 rgba(15, 40, 100, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 10px 32px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(59, 130, 246, 0.65),
    0 0 48px rgba(234, 179, 8, 0.22);
}

.hero-cta .btn-primary .btn-icon {
  color: #fff;
  opacity: 1;
}

.hero-cta .btn-outline {
  background: linear-gradient(180deg, #111827 0%, #0b0f1a 100%);
  color: #eab308;
  border: 2px solid rgba(234, 179, 8, 0.92);
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.22) inset,
    0 8px 26px rgba(0, 0, 0, 0.55),
    0 0 32px var(--yellow-glow);
}

.hero-cta .btn-outline:hover {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #fcd34d;
  border-color: #eab308;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.25) inset,
    0 10px 32px rgba(0, 0, 0, 0.58),
    0 0 40px var(--yellow-glow);
}

.referral-teaser {
  width: min(100%, 620px);
  margin: 0.1rem auto 0.95rem;
  padding: 0.82rem 0.95rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.32);
  background:
    radial-gradient(ellipse 100% 80% at 50% 10%, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 62%),
    radial-gradient(ellipse 85% 70% at 15% 90%, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0) 70%),
    linear-gradient(135deg, rgba(7, 16, 34, 0.9), rgba(6, 9, 18, 0.94));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 24px rgba(59, 130, 246, 0.16);
  text-align: center;
}

.referral-teaser-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.45rem;
  border-radius: 0.6rem;
  background: linear-gradient(145deg, var(--primary-bright) 0%, var(--primary) 72%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 0 16px var(--primary-glow), 0 0 0 1px rgba(234, 179, 8, 0.24);
}

.referral-teaser h3 {
  font-size: 1.18rem;
  margin-bottom: 0.16rem;
}

.referral-teaser p {
  color: #d1d5db;
  font-size: 0.88rem;
  margin-bottom: 0.62rem;
}

.btn-referral {
  background: linear-gradient(92deg, var(--primary-bright) 0%, var(--primary) 56%, var(--yellow) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 0 18px var(--primary-glow), 0 0 24px var(--yellow-glow);
}

.btn-referral:hover {
  color: #fff;
  box-shadow: 0 0 24px var(--primary-glow-strong), 0 0 28px rgba(234, 179, 8, 0.35);
}

.hero-guarantee {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-email {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.hero-email a {
  color: var(--primary-bright);
  font-weight: 500;
}

.hero-email a:hover {
  color: var(--yellow-bright);
  text-decoration: underline;
}

/* ===== Rating badge – matches site (blue/dark + green stars) ===== */
:root {
  --rating-bg: linear-gradient(145deg, #080d18 0%, #0c101c 45%, #0a0e16 100%);
  --rating-glow: var(--primary-glow);
  --rating-glow-strong: var(--primary-glow-strong);
  --rating-star: #00b67a;
  --rating-star-glow: rgba(0, 182, 122, 0.45);
  --rating-text: #f5f5f5;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.6rem 1.25rem 0.6rem 1.1rem;
  background: var(--rating-bg);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 9999px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 24px var(--rating-glow),
    0 2px 8px rgba(0, 0, 0, 0.25);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}

.rating-badge:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 8px 28px rgba(0, 0, 0, 0.45),
    0 0 36px var(--rating-glow-strong),
    0 0 48px rgba(59, 130, 246, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.rating-badge-stars {
  display: flex;
  align-items: center;
  gap: 0.22rem;
}

.rating-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 4px;
  background: var(--rating-star);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 10px var(--rating-star-glow),
    0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.rating-badge:hover .rating-star {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 14px var(--rating-star-glow),
    0 0 18px rgba(0, 182, 122, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.25);
}

.rating-badge:hover .rating-star:nth-child(1) { transition-delay: 0s; }
.rating-badge:hover .rating-star:nth-child(2) { transition-delay: 0.03s; }
.rating-badge:hover .rating-star:nth-child(3) { transition-delay: 0.06s; }
.rating-badge:hover .rating-star:nth-child(4) { transition-delay: 0.09s; }
.rating-badge:hover .rating-star:nth-child(5) { transition-delay: 0.12s; }

.rating-star-inner {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
  transition: filter 0.3s ease;
}

.rating-badge:hover .rating-star-inner {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

.rating-badge-text {
  color: var(--rating-text);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .rating-badge {
    padding: 0.5rem 1rem 0.5rem 0.9rem;
    gap: 0.42rem;
    font-size: 0.8rem;
  }
  .rating-star {
    width: 1.15rem;
    height: 1.15rem;
  }
  .rating-star-inner {
    font-size: 0.65rem;
  }
  .rating-badge-text {
    white-space: nowrap;
    max-width: none;
    text-align: left;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .hero-cta .btn {
    width: min(100%, 280px);
    border-radius: 10px;
  }

  .referral-teaser {
    width: min(100%, 330px);
    border-radius: 0.9rem;
    padding: 0.82rem 0.78rem 0.9rem;
  }

  .referral-teaser h3 {
    font-size: 1.02rem;
  }

  .referral-teaser p {
    font-size: 0.84rem;
    margin-bottom: 0.65rem;
  }

  .referral-teaser .btn {
    width: min(100%, 250px);
    font-size: 0.86rem;
    padding-top: 0.56rem;
    padding-bottom: 0.56rem;
  }
}

/* ===== Section headers (professional style) ===== */
.section {
  scroll-margin-top: 5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-bright);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Feature cards – tab panels (b7al WatchOnTV) ===== */
.features-row {
  padding: 4rem 0;
  position: relative;
}

.features-row.money-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--primary-bright), var(--yellow), transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0.85;
  z-index: 1;
}

.section-header--offer {
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.section-header--offer .section-label--offer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 18px var(--yellow-glow), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.section-header--offer .section-label--offer .section-label-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.section-header--offer .section-title--offer {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 0.75rem;
}

.section-header--offer .section-title--offer::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--primary-bright));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--yellow-glow);
}

.section-header--offer .section-desc--offer {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0.6rem auto 0;
}

.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.feature-tab,
.feature-card-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: linear-gradient(180deg, #151a24 0%, #0e121a 100%);
  color: #d1d9e8;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.feature-tab:hover,
.feature-card-btn:hover {
  color: #fff;
  background: linear-gradient(180deg, #1a2230 0%, #121820 100%);
  border-color: rgba(96, 165, 250, 0.45);
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(59, 130, 246, 0.25);
}

.feature-tab.active,
.feature-card-btn.active {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 48%, #3b82f6 100%);
  border-color: rgba(234, 179, 8, 0.35);
  color: #fff;
  box-shadow:
    0 0 28px rgba(59, 130, 246, 0.55),
    0 0 52px rgba(59, 130, 246, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.45);
}

/* VOD / Live Sports / Biggest Events – kas b sefr (yellow) */
.feature-tab-icon {
  display: inline-block;
  margin-right: 0.35rem;
  font-style: normal;
}

.feature-tabs--yellow .feature-card-btn:hover {
  color: var(--text);
  background: rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.4);
  box-shadow: 0 0 16px rgba(234, 179, 8, 0.15);
}

.feature-tabs--yellow .feature-card-btn.active {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.9) 0%, rgba(234, 179, 8, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(234, 179, 8, 0.5), 0 0 48px rgba(234, 179, 8, 0.2);
}

.features-grid.feature-tab-panels {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

/* ===== Content carousels: Movies & Sport Events – Pro style ===== */
.content-carousels {
  background: #050A30;
  padding: 3.5rem 0 4.5rem;
  position: relative;
}

.content-carousels::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  opacity: 0.6;
}

.content-carousels .container--carousel {
  max-width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.carousel-row {
  margin-bottom: 2.75rem;
}

.carousel-row:last-child {
  margin-bottom: 0;
}

.carousel-header {
  margin-bottom: 1.25rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.carousel-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin: 0;
  position: relative;
  display: inline-block;
}

.carousel-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--yellow));
  border-radius: 2px;
}

/* Outer wrapper: relative so buttons can be positioned on sides */
.carousel-outer {
  position: relative;
  width: 100%;
}

.carousel-track {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
}

.carousel-slider {
  display: flex;
  gap: 0.875rem;
  width: max-content;
  padding: 0.25rem 0.25rem 0.35rem;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
}

/* Tesalaw ib9aw: cards stay lit for the whole move + a bit after (ite7rko b9aw t3awdo) */
.carousel-slider.is-moving .carousel-card {
  filter: brightness(1.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 20px rgba(59, 130, 246, 0.3);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

/* Buttons – pro style, same for Movies & Sport */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(147, 197, 253, 0.35);
  background: linear-gradient(165deg, #0f172a 0%, #050816 100%);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, opacity 0.25s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary-bright);
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(59, 130, 246, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
  transition-duration: 0.1s;
}

.carousel-btn--prev {
  left: 0.5rem;
}

.carousel-btn--next {
  right: 0.5rem;
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.carousel-btn--prev:hover svg {
  transform: translateX(-2px);
}

.carousel-btn--next:hover svg {
  transform: translateX(2px);
}

/* Cards – pro style, smooth movement on hover */
.carousel-card {
  flex-shrink: 0;
  width: 140px;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-card);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.3s ease;
  display: block;
}

.carousel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 24px var(--primary-glow), 0 0 48px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
}

.carousel-card:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.35s ease;
}

.carousel-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* Movies & Series – compact overlay cards (poster + title/rating on image) */
.carousel-row--movies .carousel-card-badge {
  display: none;
}

.carousel-row--movies .carousel-slider,
.carousel-row--sport .carousel-slider {
  gap: 0.65rem;
  padding: 0.2rem 0.2rem 0.3rem;
}

.carousel-row--sport .carousel-card {
  width: 118px;
  border-radius: 12px;
}

.carousel-row--sport .carousel-card img {
  object-position: center top;
}

.carousel-row--sport .carousel-card:hover {
  transform: translateY(-6px);
}

.carousel-card--media {
  flex-shrink: 0;
  width: 118px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.3s ease;
}

.carousel-card--media:hover {
  transform: translateY(-6px);
}

.carousel-card-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #05070a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.carousel-card--media:hover .carousel-card-poster {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 24px var(--primary-glow),
    0 0 48px rgba(59, 130, 246, 0.15);
}

.carousel-card--media .carousel-card-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.carousel-card--media:hover .carousel-card-poster img {
  transform: scale(1.08);
}

.carousel-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 38%,
    rgba(0, 0, 0, 0.12) 62%,
    transparent 100%
  );
}

.carousel-card-badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 3;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.92);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.carousel-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  padding: 0.48rem 0.52rem 0.52rem;
  pointer-events: none;
}

.carousel-card-rating {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 0 0.05rem;
  padding: 0;
  width: fit-content;
  background: none;
  border: none;
  box-shadow: none;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
}

.carousel-card-rating::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23facc15'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carousel-card-rating::after {
  content: "IMDb";
  margin-left: 0.15rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: rgba(245, 197, 24, 0.9);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.carousel-card-title {
  order: 2;
  margin: 0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.carousel-card-meta {
  order: 3;
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6rem;
  line-height: 1.22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-slider.is-moving .carousel-card--media .carousel-card-poster {
  filter: brightness(1.06);
}

@media (min-width: 768px) {
  .carousel-card--media,
  .carousel-row--sport .carousel-card {
    width: 152px;
  }

  .carousel-row--movies .carousel-slider,
  .carousel-row--sport .carousel-slider {
    gap: 0.75rem;
  }

  .carousel-card-info {
    padding: 0.52rem 0.56rem 0.56rem;
  }

  .carousel-card-title {
    font-size: 0.76rem;
  }

  .carousel-card-rating {
    font-size: 0.7rem;
  }

  .carousel-card-meta {
    font-size: 0.62rem;
  }
}

@media (min-width: 1024px) {
  .carousel-card--media,
  .carousel-row--sport .carousel-card {
    width: 172px;
  }

  .carousel-row--movies .carousel-slider,
  .carousel-row--sport .carousel-slider {
    gap: 0.85rem;
    padding: 0.28rem 0.28rem 0.4rem;
  }

  .carousel-card-title {
    font-size: 0.8rem;
  }

  .carousel-card-rating {
    font-size: 0.74rem;
  }

  .carousel-card-meta {
    font-size: 0.65rem;
  }

  .carousel-card-badge {
    font-size: 0.58rem;
  }
}

@media (min-width: 1024px) {
  .content-carousels .container--carousel {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
  }
  .carousel-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .carousel-btn--prev {
    left: 1rem;
  }
  .carousel-btn--next {
    right: 1rem;
  }
}

@media (max-width: 992px) {
  .features-grid.feature-tab-panels {
    min-height: 380px;
  }
  .money-back [data-tab-panel="vod"] .feature-card-inner,
  .money-back [data-tab-panel="live-sports"] .feature-card-inner,
  .money-back [data-tab-panel="biggest-events"] .feature-card-inner {
    min-height: 380px;
    gap: 2rem;
  }
  .feature-card-image--vod,
  .feature-card-image--grid {
    max-width: 380px;
    min-height: 320px;
  }
  .feature-card-image--live-sports {
    max-width: 400px;
    min-height: 240px;
    max-height: 360px;
  }
}

.money-back .feature-card {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  z-index: 0;
}

.money-back .feature-card.entering {
  opacity: 0;
  transform: translateX(28px);
  visibility: visible;
  z-index: 1;
}

.money-back .feature-card:not(.hidden):not(.leaving):not(.entering) {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 1;
}

.money-back .feature-card.leaving {
  opacity: 0;
  transform: translateX(-28px);
  z-index: 0;
}

.money-back .feature-card.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px);
  z-index: -1;
}

.feature-card {
  background: linear-gradient(180deg, #0e1118 0%, #0a0c12 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.feature-card-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 320px;
}

/* VOD / Live Sports / Biggest Events: taller inner so full grid images show */
.money-back [data-tab-panel="vod"] .feature-card-inner,
.money-back [data-tab-panel="live-sports"] .feature-card-inner,
.money-back [data-tab-panel="biggest-events"] .feature-card-inner {
  min-height: 420px;
  gap: 2.5rem;
}

.feature-card-content {
  flex: 1;
  padding: 2rem 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.feature-icon-wrap {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #1e3a5f 0%, #152a45 45%, #101b2e 100%);
  border: 1px solid rgba(96, 165, 250, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(59, 130, 246, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.feature-icon-wrap:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(59, 130, 246, 0.45),
    0 0 56px rgba(234, 179, 8, 0.12);
  border-color: rgba(234, 179, 8, 0.45);
}

.feature-icon {
  font-size: 2.25rem;
  color: var(--primary-bright);
  display: block;
  transition: transform 0.3s ease, color 0.25s ease, filter 0.25s ease;
}

.feature-icon--custom {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  display: block;
}

.feature-icon-wrap:hover .feature-icon {
  transform: scale(1.08);
  color: var(--yellow-bright);
}

.feature-icon-wrap:hover .feature-icon--custom {
  filter: brightness(1.12) saturate(1.2) contrast(1.05);
}

.feature-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.feature-card-image {
  flex: 0 0 45%;
  max-width: 480px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* VOD / Live Sports / Biggest Events: full grid image visible, no crop – correct aspect ratio, centered */
.feature-card-image--vod,
.feature-card-image--grid {
  flex: 0 0 46%;
  max-width: 440px;
  min-height: 380px;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  padding: 0.5rem;
}

/* VOD: landscape poster grid – full image visible, no crop, container fits image */
.feature-card-image--vod {
  aspect-ratio: auto;
  min-height: 280px;
  max-height: none;
  align-self: flex-start;
  overflow: hidden;
}

.feature-card-image--vod img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.feature-card-image--live-sports {
  aspect-ratio: 16/9;
  min-height: 280px;
  max-height: 420px;
  align-self: center;
  flex: 0 0 48%;
  max-width: 460px;
}

.feature-card-image--live-sports img {
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.feature-card-image--grid img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card-image:hover img {
  transform: scale(1.06);
}

.money-back .feature-card-image.zoom-on-show img {
  animation: panelPosterZoom 0.8s ease;
}

@keyframes panelPosterZoom {
  0% { transform: scale(1); }
  40% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .features-row {
    padding: 2.5rem 0;
  }
  .features-row .section-header {
    margin-bottom: 1.5rem;
  }
  .features-row .section-title {
    font-size: clamp(1.5rem, 4vw, 1.85rem);
  }
  .features-row .section-desc {
    font-size: 0.9375rem;
  }
  .feature-tabs {
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
  }
  .feature-card-btn {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }
  .features-grid.feature-tab-panels {
    min-height: 520px;
    overflow: visible;
  }
  .feature-card-inner {
    flex-direction: column;
    min-height: auto;
    gap: 1.5rem;
    text-align: center;
  }
  .money-back [data-tab-panel="vod"] .feature-card-inner,
  .money-back [data-tab-panel="live-sports"] .feature-card-inner,
  .money-back [data-tab-panel="biggest-events"] .feature-card-inner {
    min-height: auto;
    gap: 1.5rem;
  }
  .feature-card-content {
    padding: 1.25rem 1rem;
    order: 1;
    max-width: 100%;
  }
  .feature-icon-wrap {
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
  }
  .feature-icon {
    font-size: 2rem;
  }
  .feature-icon--custom {
    width: 2rem;
    height: 2rem;
  }
  .feature-card-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    order: 2;
  }
  .feature-card-image--vod,
  .feature-card-image--grid {
    flex: 0 0 auto;
    width: 100%;
    max-width: min(100%, 340px);
    margin: 0 auto;
    min-height: 260px;
    aspect-ratio: 1;
    padding: 0.5rem;
  }
  .feature-card-image--vod {
    aspect-ratio: auto;
    max-width: 100%;
    min-height: 200px;
    max-height: none;
  }
  .feature-card-image--vod img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .feature-card-image--live-sports {
    aspect-ratio: 16/9;
    max-width: 100%;
    min-height: 180px;
    max-height: none;
    width: 100%;
  }
  .feature-tagline {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .feature-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .feature-card-image--grid img,
  .feature-card-image--live-sports img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  .feature-card-image--vod img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }
}

/* ===== Why us ===== */
/* ===== IPTV Features – pro header + pro cards ===== */
.why-us {
  padding: 4rem 0;
  position: relative;
  background: var(--bg-card);
}

.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.why-us .section-header {
  margin-bottom: 2rem;
}

.section-header--why .section-label--why {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 14px var(--primary-glow), 0 0 0 1px rgba(234, 179, 8, 0.22);
}

.section-header--why .section-label--why .section-label-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.section-header--why .section-title--why {
  position: relative;
  padding-bottom: 0.6rem;
  color: var(--text);
}

.section-header--why .section-title--why::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--accent-underline);
  border-radius: 2px;
  box-shadow: var(--accent-underline-glow);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.why-grid--six {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .why-grid--six {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-dark);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
  --why-deep: var(--primary);
  --why-bright: var(--primary-bright);
  --why-glow: var(--primary-glow);
  --why-glow-strong: var(--primary-glow-strong);
  --why-ring: rgba(234, 179, 8, 0.2);
  --why-ring-hover: rgba(234, 179, 8, 0.35);
  --why-border-hover: rgba(59, 130, 246, 0.45);
  --why-card-shadow: rgba(59, 130, 246, 0.1);
}

.why-grid--six .why-item:nth-child(1) {
  --why-deep: #1d4ed8;
  --why-bright: #3b82f6;
  --why-glow: rgba(59, 130, 246, 0.68);
  --why-glow-strong: rgba(96, 165, 250, 0.92);
  --why-ring: rgba(59, 130, 246, 0.35);
  --why-ring-hover: rgba(96, 165, 250, 0.45);
  --why-border-hover: rgba(59, 130, 246, 0.5);
  --why-card-shadow: rgba(59, 130, 246, 0.12);
}

.why-grid--six .why-item:nth-child(2) {
  --why-deep: #6d28d9;
  --why-bright: #a78bfa;
  --why-glow: rgba(167, 139, 250, 0.62);
  --why-glow-strong: rgba(196, 181, 253, 0.9);
  --why-ring: rgba(167, 139, 250, 0.35);
  --why-ring-hover: rgba(196, 181, 253, 0.45);
  --why-border-hover: rgba(167, 139, 250, 0.5);
  --why-card-shadow: rgba(139, 92, 246, 0.12);
}

.why-grid--six .why-item:nth-child(3) {
  --why-deep: #15803d;
  --why-bright: #22c55e;
  --why-glow: rgba(34, 197, 94, 0.62);
  --why-glow-strong: rgba(74, 222, 128, 0.88);
  --why-ring: rgba(34, 197, 94, 0.35);
  --why-ring-hover: rgba(74, 222, 128, 0.45);
  --why-border-hover: rgba(34, 197, 94, 0.5);
  --why-card-shadow: rgba(34, 197, 94, 0.12);
}

.why-grid--six .why-item:nth-child(4) {
  --why-deep: #0e7490;
  --why-bright: #06b6d4;
  --why-glow: rgba(6, 182, 212, 0.62);
  --why-glow-strong: rgba(34, 211, 238, 0.9);
  --why-ring: rgba(6, 182, 212, 0.35);
  --why-ring-hover: rgba(34, 211, 238, 0.45);
  --why-border-hover: rgba(6, 182, 212, 0.5);
  --why-card-shadow: rgba(6, 182, 212, 0.12);
}

.why-grid--six .why-item:nth-child(5) {
  --why-deep: #b45309;
  --why-bright: #f59e0b;
  --why-glow: rgba(245, 158, 11, 0.62);
  --why-glow-strong: rgba(251, 191, 36, 0.9);
  --why-ring: rgba(245, 158, 11, 0.35);
  --why-ring-hover: rgba(251, 191, 36, 0.45);
  --why-border-hover: rgba(245, 158, 11, 0.5);
  --why-card-shadow: rgba(245, 158, 11, 0.12);
}

.why-grid--six .why-item:nth-child(6) {
  --why-deep: #be123c;
  --why-bright: #f43f5e;
  --why-glow: rgba(244, 63, 94, 0.58);
  --why-glow-strong: rgba(251, 113, 133, 0.9);
  --why-ring: rgba(244, 63, 94, 0.35);
  --why-ring-hover: rgba(251, 113, 133, 0.45);
  --why-border-hover: rgba(244, 63, 94, 0.5);
  --why-card-shadow: rgba(244, 63, 94, 0.12);
}

.why-item:hover {
  border-color: var(--why-border-hover);
  box-shadow: 0 0 24px var(--why-card-shadow), 0 0 0 1px var(--why-ring);
}

.why-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--why-deep) 0%, var(--why-bright) 100%);
  border-radius: 50%;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 12px var(--why-glow), 0 0 0 1px var(--why-ring);
}

.why-item:hover .why-icon-wrap {
  box-shadow: 0 0 16px var(--why-glow-strong), 0 0 0 1px var(--why-ring-hover);
}

.why-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.why-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.why-icon-svg svg {
  width: 22px;
  height: 22px;
}

.why-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Setup – pro header + step icons (shop, WhatsApp, TV) ===== */
.setup {
  padding: 4rem 0;
  position: relative;
  background: var(--bg-dark);
}

.setup-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.setup .section-header {
  margin-bottom: 2rem;
}

.section-header--setup .section-label--setup {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 14px var(--primary-glow), 0 0 0 1px rgba(234, 179, 8, 0.22);
}

.section-header--setup .section-label--setup .section-label-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.section-header--setup .section-title--setup {
  position: relative;
  padding-bottom: 0.6rem;
  color: var(--text);
}

.section-header--setup .section-title--setup::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--accent-underline);
  border-radius: 2px;
  box-shadow: var(--accent-underline-glow);
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.setup-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
  --step-deep: var(--primary);
  --step-bright: var(--primary-bright);
  --step-glow: var(--primary-glow);
  --step-glow-strong: var(--primary-glow-strong);
  --step-ring: rgba(234, 179, 8, 0.2);
  --step-ring-hover: rgba(234, 179, 8, 0.32);
  --step-border-hover: rgba(59, 130, 246, 0.45);
  --step-card-shadow: rgba(59, 130, 246, 0.08);
}

.setup-step:nth-child(1) {
  --step-deep: #1d4ed8;
  --step-bright: #3b82f6;
  --step-glow: rgba(59, 130, 246, 0.68);
  --step-glow-strong: rgba(96, 165, 250, 0.92);
  --step-ring: rgba(59, 130, 246, 0.35);
  --step-ring-hover: rgba(96, 165, 250, 0.45);
  --step-border-hover: rgba(59, 130, 246, 0.5);
  --step-card-shadow: rgba(59, 130, 246, 0.12);
}

.setup-step:nth-child(2) {
  --step-deep: #15803d;
  --step-bright: #22c55e;
  --step-glow: rgba(34, 197, 94, 0.62);
  --step-glow-strong: rgba(74, 222, 128, 0.88);
  --step-ring: rgba(34, 197, 94, 0.35);
  --step-ring-hover: rgba(74, 222, 128, 0.45);
  --step-border-hover: rgba(34, 197, 94, 0.5);
  --step-card-shadow: rgba(34, 197, 94, 0.12);
}

.setup-step:nth-child(3) {
  --step-deep: #b45309;
  --step-bright: #f59e0b;
  --step-glow: rgba(245, 158, 11, 0.62);
  --step-glow-strong: rgba(251, 191, 36, 0.9);
  --step-ring: rgba(245, 158, 11, 0.35);
  --step-ring-hover: rgba(251, 191, 36, 0.45);
  --step-border-hover: rgba(245, 158, 11, 0.5);
  --step-card-shadow: rgba(245, 158, 11, 0.12);
}

.setup-step:hover {
  border-color: var(--step-border-hover);
  box-shadow: 0 0 24px var(--step-card-shadow), 0 0 0 1px var(--step-ring);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--step-deep) 0%, var(--step-bright) 100%);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 14px var(--step-glow), 0 0 0 1px var(--step-ring);
  color: #fff;
}

.setup-step:hover .step-icon {
  box-shadow: 0 0 18px var(--step-glow-strong), 0 0 0 1px var(--step-ring-hover);
}

.step-icon svg {
  width: 20px;
  height: 20px;
}

.setup-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.setup-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Compatible With – horizontal row, red icons (image 2 style) ===== */
.compatible-section {
  padding: 4rem 0;
  position: relative;
  background: #0a0a0c;
  overflow: hidden;
}

.compatible-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.compatible-section .container {
  position: relative;
}

.compatible-header {
  text-align: center;
  margin-bottom: 2rem;
}

.compatible-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.compatible-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

.compatible-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.compatible-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: rgba(26, 26, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.compatible-item:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-2px);
}

.compatible-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  flex-shrink: 0;
}

.compatible-item-icon iconify-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.compatible-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 600px) {
  .compatible-row {
    flex-direction: column;
    align-items: center;
  }

  .compatible-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ===== Pricing – pro header (pill + underline) ===== */
.pricing {
  padding: 4rem 0;
  position: relative;
  background: var(--bg-card);
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.pricing .section-header {
  margin-bottom: 1.5rem;
}

.section-header--pricing .section-label--pricing {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 14px var(--primary-glow);
}

.section-header--pricing .section-label--pricing .section-label-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.section-header--pricing .section-title--pricing {
  position: relative;
  padding-bottom: 0.6rem;
  color: var(--text);
}

.section-header--pricing .section-title--pricing::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary-glow);
}

.pricing .section-desc {
  margin-top: 0.5rem;
}

.device-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.device-tab {
  padding: 0.6rem 1.25rem;
  background: var(--bg-dark);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.device-tab:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.device-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
}

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

.plans-grid.hidden {
  display: none;
}

.plan-card {
  position: relative;
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

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

.plan-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 0 20px var(--primary-glow);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  box-shadow: 0 0 12px var(--primary-glow);
}

.plan-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.plan-conn {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
  /* Solid premium gold — matches site tokens (deeper yellow) */
  color: var(--yellow);
  text-shadow:
    0 1px 0 rgba(66, 32, 6, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.55);
}

.price-cents {
  font-size: 0.6em;
  font-weight: 700;
  opacity: 1;
  color: var(--yellow-bright);
}

.plan-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.plan-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.plan-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.plan-card .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}

.plan-guarantee {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== Compare table ===== */
.compare {
  padding: 4rem 0;
}

.compare .section-header {
  margin-bottom: 2rem;
}

.compare .section-header .section-title {
  position: relative;
  padding-bottom: 0.6rem;
}

.compare .section-header .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--accent-underline);
  border-radius: 2px;
  box-shadow: var(--accent-underline-glow);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto;
}

.compare .compare-table-wrap {
  box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.06);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: var(--bg-elevated);
  font-weight: 600;
}

.compare .compare-table th:nth-child(2) {
  background: linear-gradient(180deg, rgba(234, 179, 8, 0.12) 0%, rgba(37, 99, 235, 0.06) 100%);
  border-left: 1px solid rgba(234, 179, 8, 0.2);
  border-right: 1px solid rgba(234, 179, 8, 0.2);
}

.compare .compare-table td:nth-child(2) {
  border-left: 1px solid rgba(234, 179, 8, 0.2);
  border-right: 1px solid rgba(234, 179, 8, 0.2);
  background: rgba(234, 179, 8, 0.04);
  color: var(--yellow-bright);
  font-weight: 600;
  text-shadow: 0 0 24px rgba(234, 179, 8, 0.25);
}

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

/* ===== Refer a friend page ===== */
.refer-main {
  padding-top: calc(var(--site-header-h) + 1.5rem);
  padding-bottom: 3rem;
}

.refer-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.refer-header h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 0.4rem;
}

.refer-header p {
  color: var(--text-muted);
}

.refer-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.refer-card {
  background:
    radial-gradient(ellipse 95% 70% at 80% -10%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 70%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.98), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 0 22px rgba(59, 130, 246, 0.1);
}

.refer-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.refer-card-title {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  line-height: 1.2;
  color: #f3f4f6;
  position: relative;
  padding-bottom: 0.7rem;
  width: 100%;
}

.refer-card-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 45, 45, 0.95), rgba(255, 45, 45, 0.08));
  border-radius: 999px;
}

.refer-card-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: #ff2d2d;
}

.refer-card-title-icon svg {
  width: 1rem;
  height: 1rem;
}

.refer-steps {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.refer-steps li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.55rem;
  align-items: start;
}

.refer-step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.22), 0 0 0 1px rgba(234, 179, 8, 0.2);
}

.refer-step-copy strong {
  display: block;
  margin-bottom: 0.15rem;
}

.refer-step-copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.refer-reward {
  margin-top: 0.9rem;
  padding: 0.7rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 52, 52, 0.42);
  border-radius: 0.7rem;
  background: linear-gradient(180deg, rgba(18, 10, 10, 0.96), rgba(11, 8, 8, 0.96));
  color: #fff;
}

.refer-reward-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #ff3535, #d81e1e);
  box-shadow: 0 0 14px rgba(255, 36, 36, 0.28);
  flex-shrink: 0;
}

.refer-reward-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.refer-reward-copy strong {
  color: #ff4f4f;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.refer-reward-copy small {
  color: #c3c8d0;
  font-size: 0.92rem;
}

.refer-channels {
  display: grid;
  gap: 0.65rem;
}

.refer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.72rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: var(--bg-elevated);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.refer-link span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.refer-link-main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.refer-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.refer-link-icon svg {
  width: 1rem;
  height: 1rem;
}

.refer-link--whatsapp .refer-link-icon {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.22);
}

.refer-link--telegram .refer-link-icon {
  color: #2aabee;
  border-color: rgba(42, 171, 238, 0.35);
  background: rgba(42, 171, 238, 0.1);
  box-shadow: 0 0 10px rgba(42, 171, 238, 0.22);
}

.refer-link--email .refer-link-icon {
  color: #eab308;
  border-color: rgba(234, 179, 8, 0.35);
  background: rgba(234, 179, 8, 0.08);
  box-shadow: 0 0 10px rgba(234, 179, 8, 0.18);
}

.refer-link:hover {
  border-color: rgba(234, 179, 8, 0.4);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.22), 0 0 26px rgba(234, 179, 8, 0.12);
  transform: translateY(-1px);
  color: #fff;
}

.refer-link:hover .refer-link-icon {
  transform: scale(1.04);
}

.refer-note {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.refer-back {
  margin-top: 1.4rem;
  text-align: center;
}

.refer-back a {
  color: var(--text-muted);
}

.refer-back a:hover {
  color: var(--text);
}

/* ===== FAQ – pro style (pill label, underline, accordion) ===== */
.faq {
  padding: 4rem 0;
}

.faq--pro {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%);
  position: relative;
}

.faq--pro .section-header--faq {
  margin-bottom: 2.5rem;
}

.section-header--faq .section-label--faq {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 14px var(--primary-glow);
}

.section-header--faq .section-title--faq {
  position: relative;
  padding-bottom: 0.6rem;
  color: var(--text);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02em;
}

.section-header--faq .section-title--faq::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
}

.section-header--faq .section-desc--faq {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem 1.75rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ accordion – pro: refined cards, accent, chevron */
.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.3s ease, background 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.faq-accordion-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.faq-accordion-item.is-open {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2), 0 0 24px rgba(59, 130, 246, 0.12);
  background: rgba(13, 13, 13, 0.6);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.75rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.faq-accordion-trigger:hover {
  color: var(--primary-bright);
}

.faq-accordion-item.is-open .faq-accordion-trigger {
  color: var(--primary-bright);
}

.faq-accordion-trigger:focus {
  outline: none;
}

.faq-accordion-trigger:focus-visible {
  outline: 2px solid var(--primary-bright);
  outline-offset: 2px;
}

.faq-accordion-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}

.faq-accordion-item.is-open .faq-accordion-icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-accordion-icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-60%, -70%) rotate(45deg);
  transition: border-color 0.25s ease;
}

.faq-accordion-trigger:hover .faq-accordion-icon,
.faq-accordion-item.is-open .faq-accordion-icon {
  color: #fff;
}

.faq-accordion-icon::after {
  display: none;
}

.faq-accordion-panel {
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-accordion-panel[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.faq-accordion-panel:not([hidden]) {
  height: auto;
  visibility: visible;
}

.faq-accordion-panel p {
  margin: 0;
  padding: 1.1rem 1.75rem 1.4rem;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  letter-spacing: 0.01em;
}

/* ===== Devices – pro style: pill label, underline, card wrap ===== */
.devices {
  padding: 4rem 0;
  position: relative;
  background: var(--bg-card);
}

.devices-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.devices .section-header {
  margin-bottom: 2rem;
}

.section-header--devices .section-label--devices {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 14px var(--primary-glow), 0 0 0 1px rgba(234, 179, 8, 0.22);
}

.section-label-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.section-header--devices .section-title--devices {
  position: relative;
  padding-bottom: 0.6rem;
  color: var(--text);
}

.section-header--devices .section-title--devices::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--accent-underline);
  border-radius: 2px;
  box-shadow: var(--accent-underline-glow);
}

.devices .section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.device-buttons-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(234, 179, 8, 0.06) inset;
}

.device-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.device-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 9999px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
  --device-accent: var(--primary-bright);
  --device-accent-hover: #60a5fa;
  --device-border-hover: rgba(59, 130, 246, 0.65);
  --device-glow: rgba(59, 130, 246, 0.45);
}

.device-buttons .device-btn:nth-child(1) {
  --device-accent: #3b82f6;
  --device-accent-hover: #60a5fa;
  --device-border-hover: rgba(59, 130, 246, 0.65);
  --device-glow: rgba(59, 130, 246, 0.45);
}

.device-buttons .device-btn:nth-child(2) {
  --device-accent: #22c55e;
  --device-accent-hover: #4ade80;
  --device-border-hover: rgba(34, 197, 94, 0.65);
  --device-glow: rgba(34, 197, 94, 0.4);
}

.device-buttons .device-btn:nth-child(3) {
  --device-accent: #e2e8f0;
  --device-accent-hover: #f8fafc;
  --device-border-hover: rgba(226, 232, 240, 0.55);
  --device-glow: rgba(226, 232, 240, 0.28);
}

.device-buttons .device-btn:nth-child(4) {
  --device-accent: #f97316;
  --device-accent-hover: #fb923c;
  --device-border-hover: rgba(249, 115, 22, 0.65);
  --device-glow: rgba(249, 115, 22, 0.42);
}

.device-buttons .device-btn:nth-child(5) {
  --device-accent: #06b6d4;
  --device-accent-hover: #22d3ee;
  --device-border-hover: rgba(6, 182, 212, 0.65);
  --device-glow: rgba(6, 182, 212, 0.42);
}

.device-btn:hover {
  border-color: var(--device-border-hover);
  box-shadow: 0 0 18px var(--device-glow), 0 2px 12px rgba(0, 0, 0, 0.25);
  color: var(--text);
}

.device-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--device-accent);
  flex-shrink: 0;
  transition: color var(--transition);
}

.device-btn-icon svg {
  width: 100%;
  height: 100%;
}

.device-btn:hover .device-btn-icon {
  color: var(--device-accent-hover);
}

@media (max-width: 768px) {
  .device-buttons-wrap {
    padding: 1.25rem 1rem;
  }
  .device-buttons {
    gap: 0.75rem;
  }
  .device-btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.88rem;
  }
  .device-btn-icon {
    width: 17px;
    height: 17px;
  }
}

/* ===== Contact Us – layout like reference, yellow & blue theme ===== */
.contact {
  padding: 4rem 0;
  position: relative;
}

.contact--themed {
  background: linear-gradient(135deg, rgba(26, 26, 40, 0.97) 0%, rgba(15, 15, 25, 0.98) 50%, rgba(30, 28, 20, 0.97) 100%);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse 60% 50% at 80% 80%, rgba(234, 179, 8, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.contact-header {
  margin-bottom: 2rem;
}

.section-header--contact .section-label--contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 14px var(--primary-glow);
}

.section-header--contact .section-label--contact .section-label-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.contact-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.section-header--contact .section-title--contact {
  position: relative;
  padding-bottom: 0.6rem;
}

.section-header--contact .section-title--contact::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary-glow);
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0.5rem auto 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  display: block;
  background: linear-gradient(165deg, #12161f 0%, #0a0d14 100%);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  color: inherit;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.contact-card:hover {
  border-color: rgba(234, 179, 8, 0.35);
  transform: translateY(-3px);
  color: inherit;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(59, 130, 246, 0.2),
    0 0 48px rgba(234, 179, 8, 0.08);
}

/* Icon circles – blue / yellow / blue */
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  color: #fff;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
}

.contact-icon--wa {
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.35);
}

.contact-icon--tg {
  background: #eab308;
  color: #1a1a1a;
}

.contact-icon--tg svg {
  color: #fff;
}

.contact-icon--email {
  background: #2563eb;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-email-address {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-bright);
  margin-bottom: 0.5rem;
  word-break: break-all;
}

.contact-desc {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/* CTA button inside card – blue / yellow / blue */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #fff;
  transition: opacity var(--transition);
}

.contact-card:hover .contact-btn {
  opacity: 0.92;
}

.contact-card--wa .contact-btn {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 52%, #34d399 100%) !important;
  border: 1px solid rgba(52, 211, 153, 0.5) !important;
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 28px rgba(37, 211, 102, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.45);
}

.contact-card--wa .contact-btn:hover {
  background: linear-gradient(135deg, #25d366 0%, #34d399 55%, #4ade80 100%) !important;
  border-color: rgba(167, 243, 208, 0.65) !important;
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 32px rgba(37, 211, 102, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.48);
}

.contact-card--tg .contact-btn {
  background: #eab308;
  color: #1a1a1a;
}

.contact-card--email .contact-btn {
  background: #2563eb;
}

.contact-btn-icon {
  font-size: 0.9rem;
}

.contact-btn-arrow {
  margin-left: 0.15rem;
}

/* ===== Contact page – dark theme, blue + gold, sharp text, pro banana watermark ===== */
.contact-page-body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(165deg, #05070d 0%, #0a0e18 38%, #080b12 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

/* Logo colors: blue → cyan → gold; one crisp SVG (big + nano bananas, no blur) */
.contact-page-body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 360'%3E%3Cdefs%3E%3ClinearGradient id='pq' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop stop-color='%231d4ed8'/%3E%3Cstop offset='42%25' stop-color='%233b82f6'/%3E%3Cstop offset='78%25' stop-color='%2322d3ee'/%3E%3Cstop offset='100%25' stop-color='%23eab308'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg opacity='0.2' fill='url(%23pq)'%3E%3Cpath transform='translate(248 268) rotate(-24)' d='M-102 12c-18-58 22-118 88-132s124 28 128 92-36 108-100 118c-38 6-72-6-96-38s-18-40-20-40z'/%3E%3C/g%3E%3Cg opacity='0.11' fill='url(%23pq)'%3E%3Cpath transform='translate(42 292) scale(0.26) rotate(18)' d='M-102 12c-18-58 22-118 88-132s124 28 128 92-36 108-100 118c-38 6-72-6-96-38s-18-40-20-40z'/%3E%3C/g%3E%3Cg opacity='0.09' fill='url(%23pq)'%3E%3Cpath transform='translate(308 72) scale(0.2) rotate(-12)' d='M-102 12c-18-58 22-118 88-132s124 28 128 92-36 108-100 118c-38 6-72-6-96-38s-18-40-20-40z'/%3E%3C/g%3E%3Cpath fill='none' stroke='%23eab308' stroke-width='2.5' stroke-linecap='round' opacity='0.32' transform='translate(248 268) rotate(-24)' d='M-78 8c24 20 52 28 84 22'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 110% 85% at 50% -5%, rgba(37, 99, 235, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 100% 85%, rgba(234, 179, 8, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 0% 40%, rgba(59, 130, 246, 0.06) 0%, transparent 55%);
  background-position:
    100% 100%,
    center top,
    bottom right,
    left center;
  background-size:
    min(420px, 58vw) auto,
    100% 55%,
    100% 100%,
    100% 100%;
  background-repeat: no-repeat;
}

.contact-cards-section {
  padding: 3rem 0 4rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.contact-cards-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-cards-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 14px var(--primary-glow);
}

.contact-cards-section-label-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.contact-cards-section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  display: block;
}

.contact-cards-desc {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.contact-page-body .free-trial-form-section {
  position: relative;
  z-index: 1;
}

.contact-page-body .footer {
  position: relative;
  z-index: 1;
}

.contact-cards-section .contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-cards-section .contact-card {
  background: linear-gradient(165deg, #12161f 0%, #080b12 100%);
  border: 1px solid rgba(59, 130, 246, 0.22);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.contact-cards-section .contact-card:hover {
  border-color: rgba(234, 179, 8, 0.35);
  transform: translateY(-3px);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.62),
    0 0 36px rgba(59, 130, 246, 0.2);
}

.contact-card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  color: #fff;
}

.contact-card--wa .contact-card-icon-wrap {
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card--tg .contact-card-icon-wrap {
  background: #0088cc;
}

.contact-card--email .contact-card-icon-wrap {
  background: #dc2626;
}

.contact-card-icon {
  width: 28px;
  height: 28px;
}

.contact-card-icon-wrap iconify-icon,
.contact-card-icon-wrap .contact-card-icon-svg {
  color: #fff !important;
  display: block;
}

.contact-card-icon-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-card-btn-icon-svg {
  flex-shrink: 0;
  vertical-align: middle;
  color: #fff;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-card-desc {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition), background var(--transition);
}

.contact-card-btn:hover {
  opacity: 0.95;
}

/* WhatsApp card: brand green (overrides .btn-primary on contact page) */
.contact-cards-section .contact-card--wa .contact-card-btn,
.contact-card.contact-card--wa .contact-card-btn {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 50%, #34d399 100%) !important;
  border: 1px solid rgba(52, 211, 153, 0.55) !important;
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 28px rgba(37, 211, 102, 0.38),
    0 6px 22px rgba(0, 0, 0, 0.45);
}

.contact-cards-section .contact-card--wa .contact-card-btn:hover,
.contact-card.contact-card--wa .contact-card-btn:hover {
  background: linear-gradient(135deg, #25d366 0%, #34d399 55%, #4ade80 100%) !important;
  border-color: rgba(167, 243, 208, 0.65) !important;
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 36px rgba(37, 211, 102, 0.45),
    0 8px 26px rgba(0, 0, 0, 0.48);
}

.contact-cards-section .contact-card--tg .contact-card-btn:hover,
.contact-cards-section .contact-card--email .contact-card-btn:hover {
  background: var(--primary-bright) !important;
  border-color: rgba(147, 197, 253, 0.55) !important;
}

.contact-card-btn iconify-icon {
  font-size: 1.1rem;
}

/* Free trial / order form — gold + blue dark UI (opaque panels) */
.order-form-section,
.free-trial-form-section {
  --ft-cyan: #38bdf8;
  --ft-cyan-dim: rgba(56, 189, 248, 0.65);
  --ft-blue-soft: #bae6fd;
  --ft-gold: #f59e0b;
  --ft-gold-muted: #d97706;
  --ft-gold-glow: rgba(217, 119, 6, 0.48);
  --ft-panel: #0a0e18;
  --ft-input-bg: #111827;
  --ft-surface-raised: #1a2233;
}

/* contact.html?buy=1 — class set on <html> before first paint (inline script top of body) */
html.contact-buy [data-contact-block] {
  display: none;
}

html.contact-buy [data-order-form].free-trial-form-section {
  display: block;
}

.free-trial-form-section {
  position: relative;
  isolation: isolate;
  padding: 2.5rem 0 4rem;
  display: none;
  overflow: hidden;
  background: var(--bg-dark);
}

.free-trial-form-section::before,
.free-trial-form-section::after {
  display: none;
}

.free-trial-form-section > .container {
  position: relative;
  z-index: 1;
}

.free-trial-form-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.75rem;
  text-align: center;
  letter-spacing: 0.03em;
}

.free-trial-form.order-form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--ft-panel);
  padding: 2rem 1.75rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.free-trial-form-row {
  margin-bottom: 1.35rem;
}

.free-trial-form-row:last-of-type {
  margin-bottom: 0;
}

.ft-field-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.55rem;
}

.ft-label-accent {
  width: 4px;
  height: 1.05rem;
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--yellow-bright);
}

.free-trial-label-hint {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.ft-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1rem 0 0.65rem;
  min-height: 3.15rem;
  background: var(--ft-input-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s ease;
}

.ft-input-wrap:focus-within {
  border-color: var(--primary-bright);
}

.ft-input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ft-surface-raised);
  border: 1px solid var(--border);
  color: #fff;
}

.ft-input-icon--field {
  background: var(--ft-surface-raised);
  border: 1px solid var(--border);
  color: var(--primary-bright);
}

.ft-input-icon--user iconify-icon {
  color: var(--ft-blue-soft);
}

/* WhatsApp : vert officiel net, sans halo jaune flou */
.ft-input-icon--whatsapp {
  width: 2.65rem;
  height: 2.65rem;
  padding: 0.22rem;
  background: #142018;
  border: 2px solid #25d366;
}

.ft-input-icon--whatsapp > iconify-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  filter: none;
}

.ft-input-icon--whatsapp > iconify-icon svg {
  display: block;
}

.ft-input-icon iconify-icon {
  font-size: 1.2rem;
}

.free-trial-input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0;
  /* ≥16px prevents iOS Safari from zooming the whole page on input focus */
  font-size: max(1rem, 16px);
  font-family: inherit;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
}

.free-trial-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Native select hidden when custom picker mounts */
.free-trial-select.ft-country-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* No-JS fallback: styled native select */
.ft-country-picker > select.free-trial-select:not(.ft-country-select-native) {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.65rem 2.5rem 0.65rem 1rem;
  font-family: inherit;
  font-size: max(1rem, 16px);
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--ft-input-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f5a623' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.ft-country-picker > select.free-trial-select:not(.ft-country-select-native) option {
  background: #1a2130;
  color: #fff;
}

.ft-country-picker {
  position: relative;
}

.ft-country-trigger {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 3.15rem;
  padding: 0 1rem 0 0.65rem;
  font-family: inherit;
  font-size: max(1rem, 16px);
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: var(--ft-input-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s ease;
}

.ft-country-trigger:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.ft-country-trigger:focus {
  outline: none;
  border-color: var(--primary-bright);
}

.ft-country-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-gold);
}

.ft-country-pin svg {
  display: block;
  stroke: currentColor;
}

.ft-country-trigger-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ft-country-trigger-text {
  flex: 1;
  min-width: 0;
  font-weight: 500;
}

.ft-country-chevron {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--ft-gold);
  flex-shrink: 0;
  margin-right: 0.15rem;
}

.ft-country-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 50;
  background: #1a2130;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.ft-country-dropdown-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(240, 193, 75, 0.1);
  background: #141a24;
}

.ft-globe-icons {
  display: inline-flex;
  gap: 0.15rem;
  font-size: 1rem;
  line-height: 1;
}

.ft-country-list {
  max-height: 260px;
  overflow-y: auto;
  padding: 0.35rem 0 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #3d4a62 #1a2130;
}

.ft-country-list::-webkit-scrollbar {
  width: 7px;
}

.ft-country-list::-webkit-scrollbar-track {
  background: #1a2130;
  border-radius: 8px;
}

.ft-country-list::-webkit-scrollbar-thumb {
  background: #3d4454;
  border-radius: 8px;
}

.ft-country-group-label {
  padding: 0.45rem 1rem 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
}

/* Country flags: fixed tile so every row aligns (icons mendemin) */
.ft-flag-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.ft-flag-slot .ft-flag,
.ft-flag-slot .ft-flag-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}

.ft-flag-slot--trigger {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.ft-flag-slot--empty {
  background: linear-gradient(135deg, #2a3448 0%, #1c2434 100%);
  border: 1px dashed rgba(240, 193, 75, 0.28);
}

.ft-flag-slot--empty .ft-flag {
  display: none !important;
}

.ft-country-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.55rem 1rem;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: background 0.15s ease;
}

.ft-country-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.ft-country-option.is-selected {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.4), rgba(240, 193, 75, 0.12));
  box-shadow: inset 3px 0 0 var(--ft-gold);
}

.ft-country-option-name {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}

/* Contact method toggles */
.ft-contact-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ft-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: var(--ft-surface-raised);
  border: 1px solid rgba(240, 193, 75, 0.2);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(46, 182, 255, 0.08) inset;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ft-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ft-toggle:has(input:checked) {
  color: var(--ft-gold);
  border-color: var(--ft-gold);
  background: var(--ft-input-bg);
}

/* Period buttons — gold active + gradient ring */
.ft-period-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ft-period-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: var(--ft-surface-raised);
  border: 1px solid rgba(240, 193, 75, 0.22);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(46, 182, 255, 0.1) inset;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ft-period-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ft-period-btn:has(input:checked) {
  color: var(--ft-gold);
  border-color: var(--ft-gold);
  background: var(--ft-input-bg);
}

/* Device grid — card tiles + icon wells (blue / gold) */
.ft-device-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.ft-device-btn {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ft-device-btn-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.1rem;
  padding: 0.55rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.96);
  background: var(--ft-surface-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease;
}

.ft-device-btn:hover .ft-device-btn-inner {
  border-color: rgba(255, 255, 255, 0.18);
}

.ft-device-btn:active .ft-device-btn-inner {
  transform: translateY(0);
}

.ft-device-btn:has(input:focus-visible) .ft-device-btn-inner {
  outline: 2px solid var(--ft-cyan);
  outline-offset: 2px;
}

.ft-device-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--ft-input-bg);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ft-device-btn-text {
  flex: 1;
  min-width: 0;
}

.ft-device-btn:has(input:checked) .ft-device-btn-inner {
  border-color: var(--ft-gold);
  background: var(--ft-input-bg);
}

.ft-device-btn:has(input:checked) .ft-device-icon-wrap {
  border-color: var(--ft-gold);
  background: var(--ft-surface-raised);
}

.ft-device-btn input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.ft-device-btn .ft-device-icon-wrap .ft-device-logo,
.ft-device-btn .ft-device-icon-wrap iconify-icon {
  display: inline-block;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  min-height: 22px;
  color: var(--ft-blue-soft) !important;
  flex-shrink: 0;
  vertical-align: middle;
  transition: color 0.2s ease, filter 0.2s ease;
}

.ft-device-btn .ft-device-icon-wrap .ft-device-logo svg,
.ft-device-btn .ft-device-icon-wrap iconify-icon svg {
  width: 100%;
  height: 100%;
}

.ft-device-btn:has(input:checked) .ft-device-icon-wrap .ft-device-logo,
.ft-device-btn:has(input:checked) .ft-device-icon-wrap iconify-icon {
  color: var(--ft-gold) !important;
}

.free-trial-form-actions {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.ft-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, #24aaeb 0%, #0787cb 48%, #0468a3 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    0 4px 0 rgba(0, 40, 80, 0.35),
    0 8px 24px rgba(0, 120, 200, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ft-submit-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 5px 0 rgba(0, 40, 80, 0.32),
    0 12px 28px rgba(0, 140, 220, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ft-submit-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 2px 0 rgba(0, 40, 80, 0.4),
    0 4px 16px rgba(0, 100, 180, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ft-submit-play {
  font-size: 1.15rem;
  opacity: 0.95;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.ft-submit-status {
  font-size: 0.88rem;
  margin-top: 0.85rem;
  color: rgba(226, 232, 240, 0.72);
}

.ft-submit-status--success {
  color: var(--success);
}

.ft-submit-status--error {
  color: #fb923c;
}

/* ===== Subscribe flow (?buy=1) — clean, simple UI ===== */
.free-trial-form-section.subscribe-premium {
  --sp-cyan: var(--primary-bright);
  --sp-gold: var(--yellow-bright);
  padding: 3.25rem 0 5.5rem;
  min-height: min(92vh, 980px);
  overflow: visible;
  background: var(--bg-dark) !important;
}

.subscribe-premium__ambient,
.subscribe-premium__mesh,
.subscribe-premium__particles,
.subscribe-premium__streaks {
  display: none !important;
}

.subscribe-premium__ambient {
  position: absolute;
  inset: -15% -8% -10% -8%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(56, 189, 248, 0.28) 0%, transparent 40%),
    radial-gradient(circle at 82% 18%, rgba(234, 179, 8, 0.22) 0%, transparent 36%),
    radial-gradient(circle at 72% 88%, rgba(167, 139, 250, 0.2) 0%, transparent 42%);
  animation: sp-ambient-float 16s ease-in-out infinite alternate;
}

@keyframes sp-ambient-float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.96;
  }
  to {
    transform: translate3d(1.5%, -2%, 0) scale(1.04);
    opacity: 1;
  }
}

.subscribe-premium__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, black 12%, transparent 70%);
  animation: sp-mesh-shift 22s linear infinite;
}

@keyframes sp-mesh-shift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-48px, -48px, 0); }
}

.subscribe-premium__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.subscribe-premium__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(224, 242, 254, 0.85);
  box-shadow: 0 0 10px var(--sp-cyan-glow), 0 0 20px rgba(34, 211, 238, 0.25);
  animation: sp-dot-rise 14s ease-in-out infinite;
}

.subscribe-premium__dot:nth-child(1) { left: 8%; bottom: 12%; animation-delay: 0s; }
.subscribe-premium__dot:nth-child(2) { left: 18%; bottom: 28%; animation-delay: -1.2s; }
.subscribe-premium__dot:nth-child(3) { left: 28%; bottom: 8%; animation-delay: -2.4s; }
.subscribe-premium__dot:nth-child(4) { left: 42%; bottom: 35%; animation-delay: -0.6s; }
.subscribe-premium__dot:nth-child(5) { left: 55%; bottom: 15%; animation-delay: -3s; }
.subscribe-premium__dot:nth-child(6) { left: 68%; bottom: 42%; animation-delay: -1.8s; }
.subscribe-premium__dot:nth-child(7) { left: 78%; bottom: 18%; animation-delay: -2.1s; }
.subscribe-premium__dot:nth-child(8) { left: 88%; bottom: 32%; animation-delay: -0.9s; }
.subscribe-premium__dot:nth-child(9) { left: 12%; bottom: 55%; animation-delay: -4s; width: 2px; height: 2px; }
.subscribe-premium__dot:nth-child(10) { left: 35%; bottom: 62%; animation-delay: -3.3s; width: 2px; height: 2px; }
.subscribe-premium__dot:nth-child(11) { left: 62%; bottom: 58%; animation-delay: -2.7s; }
.subscribe-premium__dot:nth-child(12) { left: 92%; bottom: 48%; animation-delay: -1.5s; width: 2px; height: 2px; }
.subscribe-premium__dot:nth-child(13) { left: 22%; bottom: 72%; animation-delay: -5s; background: rgba(234, 179, 8, 0.9); box-shadow: 0 0 12px var(--sp-gold-glow); }
.subscribe-premium__dot:nth-child(14) { left: 48%; bottom: 78%; animation-delay: -4.2s; background: rgba(234, 179, 8, 0.75); box-shadow: 0 0 10px var(--sp-gold-glow); }
.subscribe-premium__dot:nth-child(15) { left: 74%; bottom: 68%; animation-delay: -3.6s; }

/* Curved ambient streaks (bottom-right, reference UI) */
.subscribe-premium__streaks {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.subscribe-premium__streaks::before,
.subscribe-premium__streaks::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: none;
  opacity: 1;
}

.subscribe-premium__streaks::before {
  width: min(85vw, 520px);
  height: min(55vw, 340px);
  bottom: -18%;
  right: -22%;
  background: radial-gradient(ellipse at 42% 42%, rgba(234, 179, 8, 0.42) 0%, rgba(245, 158, 11, 0.18) 38%, transparent 72%);
  animation: sp-streak-float 20s ease-in-out infinite alternate;
}

.subscribe-premium__streaks::after {
  width: min(70vw, 420px);
  height: min(45vw, 280px);
  bottom: -8%;
  right: -8%;
  background: radial-gradient(ellipse at 58% 48%, rgba(34, 211, 238, 0.32) 0%, rgba(56, 189, 248, 0.12) 42%, transparent 72%);
  animation: sp-streak-float 26s ease-in-out infinite alternate-reverse;
}

@keyframes sp-streak-float {
  from { transform: translate3d(0, 0, 0) rotate(-6deg); }
  to { transform: translate3d(-2%, -3%, 0) rotate(4deg); }
}

@keyframes sp-dot-rise {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(6px, -28px, 0) scale(1.2);
    opacity: 1;
  }
}

.subscribe-premium__container {
  position: relative;
  z-index: 2;
}

.subscribe-premium__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.subscribe-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.subscribe-premium__eyebrow-icon {
  flex-shrink: 0;
  color: var(--yellow-bright) !important;
}

.subscribe-premium__title {
  width: 100%;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem !important;
  color: inherit;
  text-align: center;
}

.subscribe-premium__title .subscribe-premium__title-text {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
  color: var(--text);
}

.subscribe-premium__sub {
  width: 100%;
  max-width: 26rem;
  margin: 0;
  padding: 0 0.35rem;
  box-sizing: border-box;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.82);
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
}

.subscribe-premium__sub > span {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
}

/* Trust row under card (reference) */
.subscribe-premium__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  margin-top: 1.85rem;
  padding: 0 0.75rem 0.25rem;
  position: relative;
  z-index: 1;
}

.subscribe-premium__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.92);
}

.subscribe-premium__trust-emoji {
  font-size: 1rem;
  line-height: 1;
}

.subscribe-premium__trust-sep {
  width: 1px;
  height: 1.1rem;
  background: var(--border);
  flex-shrink: 0;
}

.free-trial-form-section.subscribe-premium .free-trial-form.order-form-card.subscribe-premium__card {
  max-width: 600px;
  position: relative;
  z-index: 6;
  touch-action: manipulation;
  padding: 2.35rem 2rem 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  overflow: visible;
}

.free-trial-form-section.subscribe-premium .subscribe-premium__card::before,
.free-trial-form-section.subscribe-premium .subscribe-premium__card::after {
  display: none;
}

.free-trial-form-section.subscribe-premium .free-trial-form-row.free-trial-form-row--country {
  z-index: 30;
  margin-bottom: 0.25rem;
}

.free-trial-form-section.subscribe-premium .ft-country-picker {
  position: relative;
}

.free-trial-form-section.subscribe-premium .free-trial-form-row {
  position: relative;
  z-index: 1;
}

.free-trial-form-section.subscribe-premium .free-trial-form-actions {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
}

.free-trial-form-section.subscribe-premium .ft-submit-status {
  position: relative;
  z-index: 1;
}

.free-trial-form-section.subscribe-premium .ft-field-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(248, 250, 252, 0.92);
  text-transform: uppercase;
}

.free-trial-form-section.subscribe-premium .ft-label-accent {
  width: 3px;
  height: 1.1rem;
  border-radius: 2px;
  background: var(--yellow-bright);
}

.free-trial-form-section.subscribe-premium .free-trial-label-hint {
  color: rgba(226, 232, 240, 0.42);
  font-weight: 500;
}

.free-trial-form-section.subscribe-premium .ft-input-wrap {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--ft-input-bg);
  transition: border-color 0.2s ease;
}

.free-trial-form-section.subscribe-premium .ft-input-wrap:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.free-trial-form-section.subscribe-premium .ft-input-wrap:focus-within {
  border-color: var(--primary-bright);
}

.free-trial-form-section.subscribe-premium .ft-input-icon--user {
  color: var(--primary-bright);
  border-color: var(--border);
}

.free-trial-form-section.subscribe-premium .ft-input-icon--user iconify-icon {
  color: var(--primary-bright) !important;
  filter: none;
}

.free-trial-form-section.subscribe-premium .ft-input-icon--whatsapp {
  box-shadow: none;
}

.free-trial-form-section.subscribe-premium .ft-period-btn {
  border-radius: 12px;
  padding: 0.68rem 1.2rem;
  background: var(--ft-surface-raised);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, color 0.2s ease;
  box-shadow: none;
}

.free-trial-form-section.subscribe-premium .ft-period-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.free-trial-form-section.subscribe-premium .ft-period-btn:has(input:checked) {
  border-color: var(--sp-gold);
  color: var(--sp-gold);
  background: var(--ft-input-bg);
  box-shadow: none;
}

.free-trial-form-section.subscribe-premium .ft-device-btn-inner {
  border-radius: 16px;
  background: var(--ft-surface-raised);
  border: 1px solid var(--border);
  box-shadow: none;
}

.free-trial-form-section.subscribe-premium .ft-device-btn:hover .ft-device-btn-inner {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.free-trial-form-section.subscribe-premium .ft-device-btn:has(input:checked) .ft-device-btn-inner {
  border-color: var(--sp-gold);
  box-shadow: none;
}

.free-trial-form-section.subscribe-premium .ft-country-trigger {
  border-radius: 14px;
  background: var(--ft-input-bg);
  border: 1px solid var(--border);
  box-shadow: none;
}

.free-trial-form-section.subscribe-premium .ft-country-dropdown {
  z-index: 100;
  background: var(--ft-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-deep);
}

.free-trial-form-section.subscribe-premium .ft-submit-btn--premium {
  position: relative;
  padding: 1.15rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  background: var(--primary);
  border: none;
  color: #fff;
  text-shadow: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  overflow: visible;
}

.free-trial-form-section.subscribe-premium .ft-submit-btn--premium:hover {
  background: var(--primary-bright);
  filter: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.free-trial-form-section.subscribe-premium .ft-submit-btn--premium:active {
  transform: translateY(1px);
}

.free-trial-form-section.subscribe-premium .ft-submit-btn--premium::before {
  display: none;
}

@keyframes sp-shine {
  0%, 80% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.free-trial-form-section.subscribe-premium .ft-submit-btn--premium span {
  position: relative;
  z-index: 1;
}

body.subscribe-flow .site-header-fixed {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.subscribe-flow .header {
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (min-width: 900px) {
  body.subscribe-flow .floating-contact.floating-contact--bottom {
    top: 50%;
    bottom: auto;
    right: 1.35rem;
    transform: translateY(-50%);
    gap: 0.75rem;
  }

  body.subscribe-flow .floating-contact-circle {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  }

  body.subscribe-flow .floating-contact-circle--email {
    background: #dc2626 !important;
    border-color: rgba(252, 165, 165, 0.35);
  }

  body.subscribe-flow .floating-contact-circle--whatsapp {
    background: #16a34a !important;
    border-color: rgba(52, 211, 153, 0.35);
  }

  body.subscribe-flow .floating-contact-circle--telegram {
    background: #0284c7 !important;
    border-color: rgba(56, 189, 248, 0.35);
  }

  body.subscribe-flow .floating-contact-circle:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow:
      0 0 32px rgba(34, 211, 238, 0.35),
      0 12px 36px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 768px) {
  .free-trial-form-section.subscribe-premium {
    padding: 2.25rem 0 4.5rem;
    min-height: auto;
  }

  .free-trial-form-section.subscribe-premium .free-trial-form.order-form-card.subscribe-premium__card {
    padding: 1.75rem 1.25rem 2rem;
    min-width: 0;
    max-width: 100%;
  }

  .subscribe-premium__trust {
    gap: 0.5rem 0.65rem;
    margin-top: 1.5rem;
  }

  .subscribe-premium__trust-item {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .subscribe-premium__trust-sep {
    height: 0.95rem;
  }

  .subscribe-premium__eyebrow {
    letter-spacing: 0.16em;
    padding-left: 0.65rem;
    padding-right: 0.85rem;
  }

  .subscribe-premium__title {
    font-size: clamp(1.22rem, 4.2vw, 1.65rem);
  }

  @keyframes sp-mesh-shift-mobile {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-24px, -24px, 0); }
  }

  @keyframes sp-ambient-float-mobile {
    from {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 0.96;
    }
    to {
      transform: translate3d(0, -1.5%, 0) scale(1.02);
      opacity: 1;
    }
  }

  .subscribe-premium__mesh {
    animation: sp-mesh-shift-mobile 22s linear infinite;
  }

  .subscribe-premium__ambient {
    inset: -8% 0 -6% 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    animation: sp-ambient-float-mobile 16s ease-in-out infinite alternate;
  }

  .header-inner {
    gap: 0.5rem;
    min-width: 0;
  }

  .logo-link {
    min-width: 0;
    flex-shrink: 1;
  }

  .logo-text {
    max-width: min(128px, 38vw);
    height: auto;
    max-height: 40px;
    object-fit: contain;
  }

  .logo-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subscribe-premium__ambient,
  .subscribe-premium__mesh,
  .subscribe-premium__dot,
  .subscribe-premium__streaks::before,
  .subscribe-premium__streaks::after,
  .free-trial-form-section.subscribe-premium .ft-submit-btn--premium::before {
    animation: none !important;
  }
}

/* Contact page footer grid (WatchOnTV style) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-page-body .footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #fff;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.contact-page-body .footer-col a {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

.contact-page-body .footer-col a:hover {
  color: #60a5fa;
}

.footer-logo {
  display: block;
  margin-bottom: 0.75rem;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-page-body .footer-tagline {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
  max-width: 260px;
}

.footer-get-in-touch li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-touch-icon {
  display: inline-flex;
  color: #fff;
}

.footer-touch-icon iconify-icon,
.footer-touch-icon svg {
  font-size: 1.1rem;
  color: #fff !important;
  flex-shrink: 0;
  display: block;
}

.contact-page-body .footer-copy {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
}

/* Floating contact – bottom, circles like reference (red, green, blue) */
.floating-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
}

.floating-contact--bottom {
  bottom: 1.5rem;
  right: 1.5rem;
  top: auto;
  transform: none;
}

.floating-contact-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.floating-contact-circle svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

.floating-contact-circle--email {
  background: #dc2626;
}

.floating-contact-circle--whatsapp {
  background: #25D366;
}

.floating-contact-circle--telegram {
  background: #0088cc;
}

.floating-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), opacity var(--transition), filter var(--transition);
}

.floating-contact-email {
  background: #dc2626;
}

.floating-contact-whatsapp {
  background: #25D366;
}

.floating-contact-telegram {
  background: #0088cc;
}

.contact-page-body .floating-contact-pill:hover {
  opacity: 0.95;
  filter: brightness(1.1);
  transform: translateX(-2px);
}

.floating-contact-pill iconify-icon,
.floating-contact-pill .floating-pill-icon-svg {
  font-size: 1.2rem;
  color: #fff !important;
  flex-shrink: 0;
  display: block;
}

/* ===== شريط سفلي للموبايل – Free Trial, Pricing, FAQ, Contact ===== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(3.65rem + env(safe-area-inset-bottom, 0));
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, #0a1022 0%, #050810 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.28);
    padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom, 0));
    gap: 0.45rem;
    box-shadow:
      0 -8px 36px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 40px rgba(37, 99, 235, 0.12);
  }

  .mobile-bottom-bar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.12rem;
    padding: 0.32rem 0.15rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: clamp(0.6rem, 2.6vw, 0.6875rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    min-width: 0;
    transition: transform 0.15s ease, opacity 0.2s ease;
    line-height: 1.15;
  }

  .mobile-bottom-bar__btn:active {
    transform: scale(0.97);
  }

  .mobile-bottom-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
  }

  .mobile-bottom-bar__icon svg {
    width: 15px;
    height: 15px;
    display: block;
  }

  .mobile-bottom-bar__label {
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .mobile-bottom-bar__btn--trial {
    background: linear-gradient(165deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 1px 6px rgba(34, 197, 94, 0.35), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
  }

  .mobile-bottom-bar__btn--trial .mobile-bottom-bar__icon { color: #fff; fill: #fff; }
  .mobile-bottom-bar__btn--trial .mobile-bottom-bar__icon svg { fill: currentColor; }

  .mobile-bottom-bar__btn--pricing {
    background: linear-gradient(165deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 1px 6px rgba(239, 68, 68, 0.3), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
  }

  .mobile-bottom-bar__btn--pricing .mobile-bottom-bar__icon { color: #fff; }
  .mobile-bottom-bar__btn--pricing .mobile-bottom-bar__icon svg { stroke: currentColor; }

  .mobile-bottom-bar__btn--dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-bottom-bar__btn--dark .mobile-bottom-bar__icon { color: #fff; }
  .mobile-bottom-bar__btn--dark .mobile-bottom-bar__icon svg { stroke: currentColor; fill: none; }

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

  .ft-period-buttons {
    justify-content: center;
  }

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

  /* Orphan last row (odd count): center full-width so tile matches visual rhythm */
  .ft-device-btn:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }

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

  .footer-tagline {
    max-width: none;
  }

  .floating-contact {
    bottom: calc(3.35rem + env(safe-area-inset-bottom, 0));
    right: 1rem;
  }
}

/* Very narrow phones — keep bar readable without crowding */
@media (max-width: 380px) {
  .mobile-bottom-bar {
    gap: 0.3rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .mobile-bottom-bar__icon svg {
    width: 14px;
    height: 14px;
  }

  .mobile-bottom-bar__btn {
    font-size: 0.58rem;
    padding: 0.28rem 0.1rem;
  }
}

/* ===== Payment (pill label + underline match site blue theme) ===== */
.payment {
  padding: 4rem 0;
  background: var(--bg-dark);
}

/* Payment section header – pill label, underline (site primary) */
.section-header--payment .section-label--payment {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 16px var(--primary-glow);
}

.section-header--payment .section-title--payment {
  position: relative;
  padding-bottom: 0.5rem;
}

.section-header--payment .section-title--payment::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-bright);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
}

.section-header--payment .section-desc--payment {
  color: #CCCCCC;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.payment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.payment-card {
  background: #212121;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Payment icons – circular, colored */
.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
}

.payment-icon--paypal {
  background: #0070BA;
  font-family: inherit;
}

.payment-icon--crypto {
  background: #FFA500;
}

.payment-icon--bank {
  background: #AAAAAA;
}

.payment-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.payment-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.payment-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
}

.payment-desc {
  font-size: 0.9rem;
  color: #CCCCCC;
  margin-bottom: 1rem;
  line-height: 1.45;
}

.payment-features {
  list-style: none;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #fff;
  text-align: left;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.payment-features li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
}

.payment-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: #4CAF50;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

/* Payment buttons – colored per method */
.btn-payment {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  color: #fff !important;
  text-align: center;
  transition: opacity var(--transition), transform 0.15s ease;
}

.btn-payment:hover {
  opacity: 0.9;
  color: #fff !important;
}

.btn-payment--paypal {
  background: #0070BA;
}

.btn-payment--crypto {
  background: #FFA500;
}

.btn-payment--bank {
  background: #555555;
}

.payment-security {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.payment-security-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
}

.payment-security-icon svg {
  width: 22px;
  height: 22px;
}

.payment-security h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.payment-security-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto 1.35rem;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.security-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-badge-icon svg {
  display: block;
}

.security-badge--ssl {
  color: var(--text);
}

.security-badge--ssl .security-badge-icon {
  color: var(--primary-bright);
}

.security-badge--pci {
  color: var(--text);
}

.security-badge--pci .security-badge-icon {
  color: var(--success);
}

.security-badge--verified {
  color: var(--text);
}

.security-badge--verified .security-badge-icon {
  color: var(--yellow-bright);
}

.payment-help {
  font-size: 0.88rem !important;
  color: var(--text-muted);
  margin: 0 !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ===== Order form (contact.html?buy=1) – site colors ===== */
.container--narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.order-form-section:not(.free-trial-form-section) {
  padding: 2.5rem 0 4rem;
  background: var(--bg-card);
}

.order-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.order-form {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.order-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.order-label--full {
  grid-column: 1 / -1;
}

.required {
  color: var(--primary-bright);
}

.order-input,
.order-select {
  padding: 0.6rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.order-input:focus,
.order-select:focus {
  outline: none;
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.order-input::placeholder {
  color: var(--text-muted);
}

.order-period-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.order-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
}

.order-radio input {
  accent-color: var(--primary-bright);
}

.order-checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem 1rem;
}

.order-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
}

.order-check input {
  accent-color: var(--primary-bright);
}

.btn--order-submit {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .order-form-grid {
    grid-template-columns: 1fr;
  }
  .order-form {
    padding: 1.25rem;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(180deg, #05070e 0%, #020308 55%, #000 100%);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

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

.contact-page-body .footer .container {
  display: block;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.footer-logo-icon {
  height: 36px;
  width: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-text {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  align-items: start;
}

@media (max-width: 1200px) {
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--yellow-bright);
}

/* Footer: chevrons on link columns */
.footer-col--arrow a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-col--arrow a::before {
  content: '›';
  color: var(--primary-bright);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-col--arrow a:hover::before {
  color: var(--yellow-bright);
}

/* Footer: contact — compact icons aligned with text */
.footer-col--contact {
  min-width: 0;
  -webkit-font-smoothing: antialiased;
}

.footer-col--contact > a.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  text-align: left;
  margin-bottom: 0.45rem;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.footer-col--contact > a.footer-contact-row:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  /* Optical align with first line of adjacent text (iOS / Android) */
  position: relative;
  top: 0.5px;
}

.footer-contact-icon--wa {
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
}

.footer-contact-icon--tg {
  background: linear-gradient(145deg, #37aee2 0%, #1e96c8 100%);
}

.footer-contact-icon--email {
  background: linear-gradient(145deg, #ea4335 0%, #c5221f 100%);
}

.footer-contact-icon svg {
  display: block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.footer-contact-text {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.footer-contact-row:hover .footer-contact-icon {
  filter: brightness(1.06);
}

/* Footer contact — desktop / PC: same balance as mobile, compact column */
@media (min-width: 769px) {
  .footer {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  }

  .footer-col--contact {
    max-width: 17rem;
  }

  .footer-col--contact > a.footer-contact-row {
    min-height: 2.5rem;
    padding: 0.15rem 0;
    gap: 0.625rem;
  }

  .footer-col--contact .footer-contact-icon {
    top: 0;
  }

  .footer-col--contact .footer-contact-text {
    font-size: 0.84375rem;
    line-height: 1.42;
  }
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

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

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

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

  .lang-select {
    display: block;
  }

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

  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header-inner-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
  }

  .nav.open .nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }

  .hero-cta .btn {
    width: min(100%, 300px);
    padding: 0.6rem 0.95rem;
    font-size: 0.89rem;
  }

  .referral-teaser {
    width: min(100%, 480px);
    margin-top: 0.1rem;
    padding: 0.78rem 0.82rem 0.82rem;
  }

  .referral-teaser h3 {
    font-size: 1.05rem;
  }

  .referral-teaser p {
    font-size: 0.82rem;
  }

  .referral-teaser .btn {
    width: min(100%, 260px);
  }

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

  .refer-main {
    padding-top: calc(var(--site-header-h) + 1rem + env(safe-area-inset-top, 0px));
  }

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

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

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

  .footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .footer-logo-link {
    justify-content: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col--arrow a {
    justify-content: center;
  }

  /* Contact: centered column, rows left-aligned so icon + text stay balanced on iPhone */
  .footer-col--contact {
    max-width: 20.5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .footer-col--contact h4 {
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .footer-col--contact > a.footer-contact-row {
    justify-content: flex-start;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.2rem 0;
    margin-bottom: 0.35rem;
  }

  .footer-col--contact .footer-contact-icon {
    top: 0;
  }

  .footer-col--contact .footer-contact-text {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-col--contact {
    max-width: 100%;
    padding: 0 0.25rem;
  }

  .footer-col--contact .footer-contact-text {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .container {
    padding: 0 1rem;
  }

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

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

  /* Channels section: extra small screens */
  .features-row {
    padding: 2rem 0;
  }
  .features-row .section-header {
    margin-bottom: 1.25rem;
  }
  .features-row .section-title {
    font-size: 1.4rem;
  }
  .features-row .section-desc {
    font-size: 0.875rem;
  }
  .feature-tabs {
    gap: 0.35rem;
    margin-bottom: 1rem;
  }
  .feature-card-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }
  .feature-card-content {
    padding: 1rem 0.75rem;
  }
  .feature-icon-wrap {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0.875rem;
    border-radius: 0.65rem;
  }
  .feature-icon {
    font-size: 1.75rem;
  }
  .feature-icon--custom {
    width: 1.75rem;
    height: 1.75rem;
  }
  .feature-card-image--vod,
  .feature-card-image--grid {
    max-width: 100%;
    min-height: 220px;
    padding: 0.4rem;
  }
  .feature-card-image--vod {
    aspect-ratio: auto;
    min-height: 180px;
    max-height: none;
  }
  .feature-card-image--vod img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .feature-card-image--live-sports {
    min-height: 160px;
  }
  .feature-tagline {
    font-size: 1.1rem;
  }
  .feature-desc {
    font-size: 0.875rem;
  }
}

/* ===== Premium solid uplift — deeper surfaces, less wash-out (site-wide) ===== */
.rating-badge {
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 8px 28px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(59, 130, 246, 0.35);
}

.rating-badge:hover {
  border-color: rgba(147, 197, 253, 0.55);
}

.section-title,
.contact-cards-section-title,
.free-trial-form-title:not(.subscribe-premium__title) {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.section-desc {
  color: rgba(248, 250, 252, 0.88);
}

.contact-cards-desc {
  color: rgba(255, 255, 255, 0.94);
}

.free-trial-form-section.subscribe-premium .free-trial-form .free-trial-input {
  color: #f8fafc;
}

.free-trial-form-section.subscribe-premium .free-trial-form .free-trial-input::placeholder {
  color: rgba(226, 232, 240, 0.62);
}
