:root {
  --primary: #D00418;
  --primary-dark: #a00314;
  --background: #1F2235;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-light-gray: #d1d5db;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-brand: 'Orbitron', sans-serif;
  --font-company: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.hidden {
  display: none !important;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--background);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1rem;
}

.navbar-logo {
  margin-left: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 32px;
  width: auto;
}

.logo-text {
  font-family: var(--font-company);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-white);
  white-space: nowrap;
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-gray);
}

.chevron {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.2s;
}

.dropdown-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 50;
}

.dropdown-right .dropdown-menu {
  left: auto;
  right: 0;
}

.dropdown-wide {
  min-width: 18rem;
}

.nav-item:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu > a,
.dropdown-menu > button {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  background-color: #fff;
  transition: all 0.2s;
}

.dropdown-item:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

.dropdown-item:hover {
  background-color: #f3f4f6;
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon {
  display: none;
}

.mobile-menu-btn[aria-expanded="true"] .close-icon {
  display: flex;
}

.mobile-menu {
  background-color: rgba(31, 34, 53, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 1rem;
  position: relative;
  z-index: 999;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.mobile-dropdown-menu {
  padding-left: 1rem;
  padding-bottom: 0.75rem;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-light-gray);
  transition: color 0.2s;
}

.mobile-dropdown-item:hover {
  color: var(--text-white);
}

.navbar-spacer {
  height: 64px;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(31, 34, 53, 0.5);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

.hero-logo {
  position: absolute;
  z-index: 20;
  top: 1rem;
  left: 1rem;
}

.hero-logo img {
  width: clamp(120px, 13vw, 220px);
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-logo {
    top: 60px;
    left: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    top: 60px;
    left: 158px;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-light-gray);
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 300;
}

.hero-partner {
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  color: #e3e3e3;
}

.hero-partner .brand {
  font-family: var(--font-brand);
  font-weight: 700;
}

.page-hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  text-align: center;
}

.page-hero h1 .highlight {
  color: var(--primary);
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.region-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.region-btn {
  width: 100%;
  max-width: 340px;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white);
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .region-selector {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .region-btn {
    width: auto;
    min-width: 280px;
    max-width: none;
  }
}

.region-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.region-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #000;
}

.customer-tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  margin: 2rem auto 3rem;
  width: fit-content;
}

.tab-btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active[data-type="private"] {
  background-color: var(--primary);
  color: #000;
}

.tab-btn.active[data-type="business"] {
  background-color: #2563eb;
  color: #fff;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
}

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

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

@media (min-width: 1024px) {
  .pricing-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  background-color: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(208, 4, 24, 0.3);
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--primary);
  color: var(--text-white);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.card-badge.blue {
  background-color: #2563eb;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.card-description {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.card-body {
  padding: 1.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-light-gray);
}

.features-list svg,
.features-list .lucide-feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(208, 4, 24, 0.1);
  border: 1px solid rgba(208, 4, 24, 0.3);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.speed-badge .speed {
  font-weight: 700;
  color: var(--primary);
}

.badge-container {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 10;
}

.setup-badge,
.bestseller-badge {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(to left, var(--primary), #9333ea);
  color: var(--text-white);
  border-radius: 0 0.75rem 0 0.5rem;
}

.badge-container > *:only-child {
  border-radius: 0 0.75rem 0 0.5rem;
}

.badge-container > *:first-child:not(:only-child) {
  border-radius: 0 0.75rem 0 0.25rem;
}

.badge-container > *:last-child:not(:only-child) {
  margin-top: 0.125rem;
  border-radius: 0 0 0 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-white);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

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

.accordion-trigger[aria-expanded="true"] {
  color: var(--primary);
}

.accordion-trigger svg {
  transition: transform 0.2s;
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem 1.25rem;
  color: #ffffff;
  display: none;
}

.accordion-content.show {
  display: block;
}

.info-box {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
}

.router-section {
  margin-bottom: 4rem;
}

.router-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

.router-image {
  display: flex;
  justify-content: center;
}

.router-image img {
  max-height: 320px;
  object-fit: contain;
}

.router-info {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.router-info ul {
  list-style: none;
}

.router-info li {
  color: var(--text-light-gray);
  margin-bottom: 0.75rem;
}

.router-info li:last-child {
  margin-bottom: 0;
}

.router-info .highlight {
  color: var(--primary);
  font-weight: 500;
}

.router-order-img {
  order: 1;
}

.router-order-text {
  order: 2;
}

.router-ext-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.router-ext-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.feature-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.feature-link:hover {
  color: var(--primary);
}

.webhost-grid {
  display: grid;
  gap: 2rem;
}

.bestseller-card {
  border-color: rgba(208, 4, 24, 0.5) !important;
  box-shadow: 0 0 0 1px rgba(208, 4, 24, 0.5);
}

.webhost-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.webhost-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.webhost-feature-list li .lucide-feature-icon {
  margin-top: 2px;
  color: var(--primary);
  flex-shrink: 0;
}

.webhost-feature-list .feature-detail {
  font-size: 0.7rem;
  color: #9ca3af;
  display: block;
  line-height: 1.4;
  margin-top: 0.125rem;
}

.feature-excluded .lucide-feature-icon {
  color: #9ca3af;
}

.feature-excluded {
  opacity: 0.75;
}

.webhost-download-box {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

/* === IPTV / TV-Streaming === */
.channel-logos-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.channel-logo-item {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border-radius: 0.5rem;
  padding: 0.375rem 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none;
}

.channel-logo-item img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.iptv-card-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.3s;
}

.glass-card:hover {
  border-color: rgba(208,4,24,0.3);
}

.card-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.card-description {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.card-price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.card-price-period {
  font-size: 0.875rem;
  color: #9ca3af;
}

.card-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.card-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.card-feature-list .lucide-feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-text {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.iptv-promo {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
}

.iptv-illustration {
  max-width: 56rem;
  margin: 4rem auto 0;
}

.iptv-illustration img {
  width: 100%;
  height: auto;
}

.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  margin-top: -1rem;
}

.store-badges img {
  height: 3rem;
  object-fit: contain;
}

.iptv-devices-text {
  text-align: center;
  color: #d1d5db;
  max-width: 56rem;
  margin: 0 auto 3rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.iptv-feature-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-box {
  border: 1px solid var(--primary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.feature-box-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: block;
}

.feature-box ul {
  list-style: none;
  color: var(--text-white);
  font-size: 0.875rem;
}

.feature-box ul li {
  margin-bottom: 0.5rem;
}

.feature-box ul li:last-child {
  margin-bottom: 0;
}

.feature-box p {
  color: var(--text-white);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.feature-box p.text-gray {
  color: #9ca3af;
}

.feature-box-title {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.iptv-agb {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 3rem;
}

.iptv-section {
  background: var(--bg-dark);
  padding: 4rem 1rem;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}
.channel-logo-item:nth-child(3n+1) { animation: floatA 3s ease-in-out infinite; }
.channel-logo-item:nth-child(3n+2) { animation: floatB 4s ease-in-out infinite 0.5s; }
.channel-logo-item:nth-child(3n)   { animation: floatC 3.5s ease-in-out infinite 1s; }

.feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-detail {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.legal-box {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
}

.legal-box h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.legal-box h2:first-of-type {
  margin-top: 0;
}

.legal-box p {
  color: var(--text-light-gray);
  margin-bottom: 1rem;
}

.legal-box ul {
  list-style: disc;
  margin-left: 1.5rem;
  color: var(--text-light-gray);
}

.legal-box li {
  margin-bottom: 0.5rem;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 1.5rem 0;
}

.footer {
  background-color: var(--background);
  padding: 1.5rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-section p,
.footer-section a {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.footer-company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text-white) !important;
  margin-bottom: 0.5rem;
}

.footer-address,
.footer-contact,
.footer-phone,
.footer-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
}

.footer-follow {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.social-link {
  transition: opacity 0.2s;
}

.social-link:hover {
  opacity: 0.8;
}

.footer-hours {
  color: var(--text-gray);
}

.footer-hours-title {
  color: var(--text-white) !important;
  margin-bottom: 0.25rem;
}

.footer-legal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-privacy-notice {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.footer-privacy-notice p {
  font-size: 0.875rem;
  color: var(--text-gray);
}

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

.footer-copyright p {
  font-size: 0.875rem;
  color: var(--text-white);
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(208, 4, 24, 0.3);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.locations-info {
  text-align: center;
  color: var(--text-light-gray);
  font-size: 0.875rem;
  max-width: 48rem;
  margin: 1.5rem auto 0;
}

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

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.brand {
  font-family: var(--font-brand);
}

@media (min-width: 768px) {
  .channel-logo-item {
    display: flex;
  }

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

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

  .router-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .router-grid.reverse {
    grid-template-columns: 1fr 1.5fr;
  }

  .router-order-img,
  .router-order-text {
    order: initial;
  }

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

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-hours {
    text-align: center;
  }

  .footer-company,
  .footer-address,
  .footer-contact,
  .footer-phone,
  .footer-email,
  .footer-social {
    justify-content: flex-start;
  }

  .footer-legal-title,
  .footer-links a {
    justify-content: flex-start;
  }

  .logo-img {
    height: 40px;
  }

  .logo-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .navbar-menu {
    display: flex;
    flex: 1;
    justify-content: center;
  }

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

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

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

/* === Animierte Download/Upload Balken (ersetzt speed-badge) === */
.speed-section {
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.speed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.speed-row .speed-label {
  color: #d1d5db;
}
.speed-row .speed-dl {
  color: var(--primary);
  font-family: monospace;
  font-weight: 700;
  font-size: 1.125rem;
}
.speed-row .speed-ul {
  color: #d1d5db;
  font-family: monospace;
}
.speed-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  margin: 0.5rem 0;
  overflow: hidden;
}
.speed-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--secondary, #a855f7), var(--primary, #D00418));
  border-radius: 9999px;
  animation: speedBarGrow 1s ease-out 0.2s forwards;
}
@keyframes speedBarGrow {
  from { width: 0; }
  to   { width: 100%; }
}
