/* ==========================================================================
   realmiptv - Premium IPTV Web Application Stylesheet
   Design System: Midnight Navy (#172B4D), Amber Accent (#f59e0b), Pure White, Soft Gray (#F5F7F9)
   Mobile-First Architecture & Dynamic Layout Math
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Reset & Base Rules (Global Overflow Protection)
   -------------------------------------------------------------------------- */
:root {
  --primary-navy: #172B4D;
  --secondary-navy: #0f1c32;
  --accent-amber: #f59e0b;
  --accent-amber-hover: #d97706;
  --bg-white: #FFFFFF;
  --bg-soft-gray: #F5F7F9;
  --bg-dark-card: #1c293d;
  --text-charcoal: #17202A;
  --text-muted: #5E6C84;
  --text-light: #F4F5F7;
  --border-subtle: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(23, 43, 77, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section, header, footer, main, nav, article {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   2. Typography & Headings
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1.25rem;
  color: #334155;
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.15);
  color: #d97706;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.text-center { text-align: center; }
.section-header {
  margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   3. Navigation Header (Fixed Logo Overlap & Spacing)
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 20px;
}

.header__logo img {
  height: 38px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

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

.header__nav-item a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  padding: 6px 4px;
  white-space: nowrap;
}

.header__nav-item a:hover {
  color: var(--accent-amber);
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-amber);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: all var(--transition-fast);
  flex-shrink: 0;
  white-space: nowrap;
}

.header__cta-btn:hover {
  background-color: var(--accent-amber-hover);
  transform: translateY(-1px);
}

.header__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-navy);
  padding: 6px;
  z-index: 1002;
}

/* Mobile Side Drawer Menu */
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: var(--primary-navy);
  color: var(--bg-white);
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 30px 24px;
  transition: right var(--transition-normal);
  z-index: 1001;
  overflow-y: auto;
}

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

.header__mobile-menu .header__nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.header__mobile-menu .header__nav-item a {
  color: var(--bg-white);
  font-size: 1.1rem;
}

.header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 999;
}

.header__mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 769px) {
  .header__mobile-menu,
  .header__mobile-overlay,
  .header__toggle {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   4. Hero Section & Hot Player UI Mockup
   -------------------------------------------------------------------------- */
.hero {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #F5F7F9 0%, #FFFFFF 100%);
  padding: 60px 0 40px 0;
  box-sizing: border-box;
}

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

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.12);
  color: #b45309;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero__headline {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

.hero__subheadline {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-amber);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--accent-amber-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(23, 43, 77, 0.25);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background-color: #101e36;
  transform: translateY(-2px);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
}

.hero__quote {
  background-color: rgba(23, 43, 77, 0.04);
  border-left: 4px solid var(--accent-amber);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-navy);
  margin-top: 20px;
  width: 100%;
}

/* HOT PLAYER UI Mockup Box */
.hotplayer-frame {
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

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

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

.tv-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-amber);
  font-size: 1.2rem;
  font-weight: 700;
}

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

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

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
}

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

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

.status-expire {
  color: #cbd5e1;
}

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

.tv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tv-card:hover, .tv-card.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent-amber);
  transform: translateY(-3px);
}

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

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

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

.tv-card span {
  font-size: 0.9rem;
  font-weight: 600;
}

.tv-footer {
  display: flex;
  justify-content: flex-end;
}

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

.tv-icon-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.tv-icon-btn:hover {
  background: var(--accent-amber);
}

/* --------------------------------------------------------------------------
   5. Non-Stop Continuous Infinite Marquee / Carousels
   -------------------------------------------------------------------------- */
.section-gallery {
  padding: 60px 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.section-gallery--dark {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.section-gallery--dark h2, .section-gallery--dark h3 {
  color: #ffffff;
}

.section-gallery--dark p {
  color: #94a3b8;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

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

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

.marquee-card {
  flex-shrink: 0;
  background: rgba(245, 247, 249, 0.9);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.section-gallery--dark .marquee-card {
  background: rgba(28, 41, 61, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.marquee-card:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Aspect Ratio Selectors */
.carousel--logos img, .gallery--icons img, .marquee--icons img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  width: 220px;
}

.carousel--movies img, .gallery--movies img, .marquee--movies img {
  aspect-ratio: 1 / 1.482;
  object-fit: cover;
  width: 200px;
  border-radius: 10px;
}

.carousel--devices img, .gallery--devices img, .marquee--devices img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 180px;
  border-radius: 12px;
}

.carousel--sport img, .gallery--sports img, .marquee--sport img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  width: 180px;
  border-radius: 12px;
}

.carousel--wtsp img, .gallery--wtsp img, .marquee--wtsp img {
  aspect-ratio: 473 / 1024;
  object-fit: cover;
  width: 220px;
  border-radius: 16px;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

/* --------------------------------------------------------------------------
   6. Pricing Section & Cards
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 80px 0;
  background-color: var(--bg-soft-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border-color: var(--accent-amber);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-amber);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 20px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent-amber);
  font-weight: 800;
}

.pricing-features li.disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.pricing-features li.disabled::before {
  content: "✕";
  color: #cbd5e1;
}

.pricing-horizontal-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  border: 1px solid var(--border-subtle);
}

.pricing-multiscreen {
  margin-top: 50px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
}

.pricing-multiscreen h3 {
  color: #ffffff;
}

.pricing-multiscreen p {
  color: #cbd5e1;
}

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

.multiscreen-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.payment-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.payment-icons-container img {
  max-width: 531px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  padding: 6px;
  background: var(--bg-white);
}

/* --------------------------------------------------------------------------
   7. Compare Table & 3-Step Activation
   -------------------------------------------------------------------------- */
.compare-section {
  padding: 70px 0;
  background: var(--bg-white);
}

.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-white);
}

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

.compare-table th {
  background-color: var(--primary-navy);
  color: #ffffff;
  font-size: 1.05rem;
}

.compare-table tr:nth-child(even) {
  background-color: var(--bg-soft-gray);
}

.compare-table td:nth-child(2) {
  font-weight: 700;
  color: var(--accent-amber);
}

.steps-section {
  padding: 70px 0;
  background: var(--bg-soft-gray);
}

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

.step-card {
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.25);
  position: absolute;
  top: 16px;
  right: 20px;
}

/* --------------------------------------------------------------------------
   8. Customer Reviews & FAQs
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.rating-summary {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 30px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-soft-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  font-size: 1rem;
}

.review-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--accent-amber);
  font-size: 1.1rem;
}

.badge-verified {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-left: 6px;
}

.faq-section {
  padding: 70px 0;
  background: var(--bg-soft-gray);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.faq-answer {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. Footer (3 Columns, Responsive Collapse)
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer__column h4 {
  color: var(--accent-amber);
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer__column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--accent-amber);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer__list a:hover {
  color: var(--accent-amber);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   10. Media Queries & Responsive Design (Mobile-First Priorities)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid, .multiscreen-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card--popular {
    transform: none;
  }
  .pricing-horizontal-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__toggle {
    display: block;
  }
  .hero {
    padding: 60px 16px 40px 16px;
    text-align: center;
  }
  .hero__content {
    align-items: center;
  }
  .hero__actions {
    justify-content: center;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  .tv-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-multiscreen {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .tv-cards {
    grid-template-columns: 1fr;
  }
  .tv-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
