/* ==========================================================================
   Zero IPTV - Premium German Dark Design System
   Brand Colors: German Black (#080A0D), Federal Gold (#FFCC00), German Red (#DD0000)
   ========================================================================== */

:root {
  --bg-main: #080A0D;
  --bg-secondary: #11151B;
  --bg-card: #151A21;
  --bg-card-hover: #1B222C;
  --bg-header: #030405;
  --bg-footer: #020203;
  --bg-promo: #151A21;
  
  --primary-gold: #FFCC00;
  --bright-gold: #FFD633;
  --deep-gold: #C99F00;
  --german-red: #DD0000;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20BA56;
  
  --text-main: #FFFFFF;
  --text-secondary: #C9CED6;
  --text-muted: #929AA6;
  
  --border-subtle: #2B323D;
  --border-accent: #FFCC00;
  --border-red: #DD0000;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(255, 204, 0, 0.25);
  
  --container-max: 1280px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Overflow Rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-main);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button, input, select, textarea {
  font: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

.highlight-gold {
  color: var(--primary-gold);
}

.highlight-red {
  color: var(--german-red);
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: #080A0D;
  border-color: var(--primary-gold);
  box-shadow: 0 4px 14px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--bright-gold);
  border-color: var(--bright-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--german-red);
}

.btn-secondary:hover {
  background-color: var(--german-red);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: var(--bg-card);
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  border-color: var(--whatsapp-green);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Top Promo Bar
   ========================================================================== */
.promo-bar {
  background-color: var(--bg-promo);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 16px;
  font-size: 13px;
  text-align: center;
  position: relative;
  z-index: 110;
}

.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
}

.promo-bar__tag {
  background-color: var(--german-red);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-bar__text {
  color: var(--text-main);
}

.promo-bar__text strong {
  color: var(--primary-gold);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.header__brand-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__brand-badge {
  font-size: 10px;
  background: var(--german-red);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 4px;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 0;
  position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--primary-gold);
}

.header__nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-gold);
  border-radius: 2px;
}

.header__cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.header__toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Mobile Drawer */
.header__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.header__mobile-menu.is-active {
  right: 0;
}

.header__mobile-overlay.is-active {
  display: block;
  opacity: 1;
}

.header__mobile-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 4px;
}

.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header__mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header__mobile-nav-link:hover,
.header__mobile-nav-link.active {
  color: var(--primary-gold);
}

.header__mobile-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Section Base Styles
   ========================================================================== */
.section {
  width: 100%;
  box-sizing: border-box;
  padding: 80px 0;
  position: relative;
}

.section--alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-tag--red {
  color: #ff5555;
  background: rgba(221, 0, 0, 0.1);
  border-color: rgba(221, 0, 0, 0.3);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 60px 0 70px 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 204, 0, 0.05) 0%, rgba(8, 10, 13, 1) 70%);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.hero__badge--gold {
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
}

.hero__badge--red {
  background: rgba(221, 0, 0, 0.15);
  border: 1px solid var(--german-red);
  color: #FFFFFF;
}

.hero__title {
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero__desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.hero__stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
  transition: var(--transition);
}

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

.hero__stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-gold);
  display: block;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.hero__value-box {
  background: rgba(255, 204, 0, 0.05);
  border-left: 3px solid var(--primary-gold);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 28px;
}

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

/* Hero Flash Sale Card (Right Column) */
.hero__offer-card {
  background: linear-gradient(145deg, #080A0D 0%, #151A21 58%, #2B2400 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  position: relative;
  text-align: center;
}

.hero__offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--german-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(221, 0, 0, 0.4);
}

.hero__offer-title {
  font-size: 24px;
  color: #FFFFFF;
  margin-top: 8px;
  margin-bottom: 6px;
}

.hero__offer-subtitle {
  color: var(--primary-gold);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero__offer-price-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.hero__offer-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.hero__offer-period {
  font-size: 14px;
  color: var(--text-muted);
}

.hero__offer-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 16px;
  margin-right: 8px;
}

.hero__countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero__count-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  min-width: 60px;
}

.hero__count-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-gold);
  display: block;
}

.hero__count-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.hero__offer-footer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ==========================================================================
   Continuous Logo & Icon Marquee
   ========================================================================== */
.marquee-section {
  padding: 30px 0;
  background-color: var(--bg-header);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 120px;
  transition: var(--transition);
  flex-shrink: 0;
}

.marquee-item:hover {
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.marquee-item img {
  max-height: 40px;
  max-width: 90px;
  object-fit: contain;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Hot Player UI Preview Dashboard (Dark Navy App Style)
   ========================================================================== */
.hotplayer-section {
  padding: 70px 0;
  background: radial-gradient(circle at 50% 50%, #0d1a2d 0%, #080a0d 80%);
}

.tv-content {
  background: linear-gradient(135deg, #0f1c30 0%, #08111e 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.15);
  max-width: 900px;
  margin: 0 auto;
}

.tv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.tv-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tv-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
}

.tv-logo-icon {
  width: 28px;
  height: 28px;
  color: #f59e0b;
}

.tv-version {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  color: #94a3b8;
}

.tv-sub-status .status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
}

.status-active {
  color: #f59e0b;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.status-expire {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.tv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tv-card:hover, .tv-card.active {
  background: rgba(245, 158, 11, 0.12);
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.tv-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
}

.tv-card-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.tv-card-icon svg {
  width: 36px;
  height: 36px;
}

.tv-card span {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.tv-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.tv-icon-group {
  display: flex;
  gap: 10px;
}

.tv-icon-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.tv-icon-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   Image Carousels & Galleries (Strict Image Aspect Ratios)
   ========================================================================== */
.gallery-grid {
  display: grid;
  gap: 20px;
}

.carousel--movies {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.movie-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.movie-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.movie-card img {
  width: 100%;
  aspect-ratio: 1 / 1.482;
  object-fit: cover;
  background: #11151b;
}

.movie-card__info {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sports Carousel */
.carousel--sports {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.sport-card:hover {
  border-color: var(--german-red);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(221, 0, 0, 0.3);
}

.sport-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #11151b;
}

/* Devices Carousel */
.carousel--devices {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.device-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
}

.device-card img {
  width: 72px;
  height: 72px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 10px;
}

.device-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

/* Preview Carousel */
.carousel--preview {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.preview-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* WhatsApp Experience Carousel */
.carousel--wtsp {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.wtsp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.wtsp-card:hover {
  border-color: var(--whatsapp-green);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.wtsp-card img {
  width: 100%;
  aspect-ratio: 473 / 1024;
  object-fit: cover;
}

/* ==========================================================================
   Comparison Table (Zero IPTV vs Cable / Satellite)
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  margin: 0 auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.compare-table th, 
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-table th {
  background-color: #0d1117;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compare-table th.highlight-th {
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--primary-gold);
  border-left: 1px solid var(--primary-gold);
  border-right: 1px solid var(--primary-gold);
}

.compare-table td.highlight-td {
  background-color: rgba(255, 204, 0, 0.04);
  color: var(--text-main);
  font-weight: 700;
  border-left: 1px solid rgba(255, 204, 0, 0.2);
  border-right: 1px solid rgba(255, 204, 0, 0.2);
}

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

.check-green {
  color: #22c55e;
  font-weight: bold;
}

.cross-red {
  color: var(--german-red);
  font-weight: bold;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--popular {
  background: var(--bg-card-hover);
  border: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
  transform: scale(1.03);
}

.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: #080A0D;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card__title {
  font-size: 22px;
  margin-bottom: 6px;
  text-align: center;
}

.pricing-card__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card__price-box {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-card__price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.pricing-card__per-day {
  font-size: 13px;
  color: var(--primary-gold);
  font-weight: 600;
  margin-top: 6px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature--check svg {
  color: var(--primary-gold);
}

.pricing-feature--cross svg {
  color: var(--text-muted);
}

.pricing-feature--disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Horizontal 1-Month Plan Card */
.pricing-horizontal {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  transition: var(--transition);
}

.pricing-horizontal:hover {
  border-color: var(--primary-gold);
}

.pricing-horizontal__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-horizontal__title {
  font-size: 20px;
  color: var(--text-main);
}

.pricing-horizontal__desc {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-horizontal__price-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pricing-horizontal__price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-gold);
}

/* Multi Screen Section */
.multiscreen-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin-bottom: 40px;
}

.multiscreen-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 30px auto;
}

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

.multiscreen-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

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

.multiscreen-card__title {
  font-size: 18px;
  color: var(--text-main);
}

.multiscreen-card__price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-gold);
}

.pricing-card__see-all {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-gold);
  margin-top: 10px;
  margin-bottom: 16px;
  text-decoration: underline;
  transition: var(--transition);
}

.pricing-card__see-all:hover {
  color: var(--bright-gold);
  text-decoration: none;
}

.payment-icons-wrap {
  text-align: center;
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.payment-icons-wrap img {
  max-width: 531px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   3-Step Activation
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
}

.step-card__num {
  font-size: 36px;
  font-weight: 900;
  color: var(--german-red);
  margin-bottom: 16px;
  line-height: 1;
}

.step-card__title {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.step-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Customer Reviews Section
   ========================================================================== */
.reviews-header-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid var(--primary-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

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

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.review-card__user-info {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.review-card__location {
  font-size: 12px;
  color: var(--text-muted);
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  margin-top: 2px;
}

.review-card__stars {
  color: var(--primary-gold);
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.feature-title {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--primary-gold);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.faq-icon {
  color: var(--german-red);
  font-size: 20px;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 20px;
  transition: max-height 0.4s ease-in-out;
}

/* ==========================================================================
   SEO Content Block (Rich Longform Typography)
   ========================================================================== */
.seo-content {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 60px 0;
}

.seo-content__inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 24px;
  margin: 32px 0 14px 0;
  color: var(--text-main);
}

.seo-content h3 {
  font-size: 18px;
  margin: 22px 0 10px 0;
  color: var(--primary-gold);
}

.seo-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 15px;
}

.seo-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 18px;
  color: var(--text-secondary);
}

.seo-content li {
  margin-bottom: 8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px 0;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary-gold);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-gold);
  transform: translateX(3px);
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 14px 0 20px 0;
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Floating Widgets (WhatsApp & Recent Order Notification)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background-color: var(--whatsapp-green);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background-color: var(--whatsapp-green-hover);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.recent-order-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 98;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  max-width: 320px;
  animation: slideUp 0.4s ease forwards;
}

.recent-order-popup.is-hidden {
  display: none !important;
}

.recent-order-popup__icon {
  color: #22c55e;
  font-size: 20px;
  flex-shrink: 0;
}

.recent-order-popup__content {
  font-size: 12px;
  color: var(--text-main);
  line-height: 1.4;
}

.recent-order-popup__content strong {
  color: var(--primary-gold);
}

.recent-order-popup__time {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
}

.recent-order-popup__close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 2px;
  align-self: flex-start;
}

.recent-order-popup__close:hover {
  color: #fff;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive & Mobile-First Overrides
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-card--popular {
    transform: none;
  }
  .pricing-card--popular:hover {
    transform: translateY(-4px);
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav, .header__cta-wrap {
    display: none;
  }
  
  .header__toggle {
    display: flex;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .hero {
    padding: 40px 0;
    text-align: center;
  }
  
  .hero__badges {
    justify-content: center;
  }
  
  .hero__stats {
    grid-template-columns: 1fr;
  }
  
  .hero__ctas {
    justify-content: center;
    flex-direction: column;
  }
  
  .hero__ctas .btn {
    width: 100%;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .multiscreen-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-horizontal {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-horizontal__price-wrap {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .pricing-horizontal__price-wrap .btn {
    width: 100%;
  }
  
  .tv-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .recent-order-popup {
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
    bottom: 86px;
  }
  
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
  }
}
