/* ============================================================
   OTT Engine — Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --ott-blue-primary:   #2563EB;
  --ott-blue-light:     #3B82F6;
  --ott-blue-dark:      #1D4ED8;
  --ott-bg-dark:        #0A0A0F;
  --ott-bg-card:        #0F1117;
  --ott-bg-surface:     #161B27;
  --ott-border:         #1E2A3D;
  --ott-text-primary:   #F1F5F9;
  --ott-text-secondary: #94A3B8;
  --ott-text-accent:    #60A5FA;
  --ott-success:        #10B981;
  --ott-gradient-hero:  linear-gradient(135deg, #0A0A0F 0%, #0F172A 50%, #0A0A0F 100%);

  /* Platform accent colors */
  --platform-roku:    #6C2E9C;
  --platform-firetv:  #FF9900;
  --platform-appletv: #A0A0A0;
  --platform-accent:  var(--ott-blue-primary);
}

/* Platform body classes */
.page-roku     { --platform-accent: #6C2E9C; }
.page-firetv   { --platform-accent: #FF9900; }
.page-appletv  { --platform-accent: #A0A0A0; }

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--ott-bg-dark);
  color: var(--ott-text-primary);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--ott-text-primary);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

p { color: var(--ott-text-secondary); margin-bottom: 1rem; }

a { color: var(--ott-text-accent); text-decoration: none; }
a:hover { color: var(--ott-blue-light); }

/* ---------- Eyebrow Labels ---------- */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ott-text-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.platform-eyebrow {
  color: var(--platform-accent);
}

/* ---------- Buttons ---------- */
.btn-ott-primary {
  background: var(--ott-blue-primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-ott-primary:hover {
  background: var(--ott-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  color: #fff;
}

.btn-ott-outline {
  background: transparent;
  color: var(--ott-text-primary);
  border: 1.5px solid var(--ott-border);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-ott-outline:hover {
  border-color: var(--ott-blue-light);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-1px);
  color: var(--ott-text-primary);
}

.btn-platform {
  background: var(--platform-accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-platform:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}

/* ---------- Navigation ---------- */
.ott-navbar {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ott-border);
  padding: 0.875rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s;
}

.ott-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ott-text-primary);
}
.ott-navbar .navbar-brand img { height: 32px; width: auto; }

.ott-navbar .nav-link {
  color: var(--ott-text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem !important;
  transition: color 0.2s;
}
.ott-navbar .nav-link:hover,
.ott-navbar .nav-link:focus,
.ott-navbar .nav-link.show,
.ott-navbar .nav-link.active { color: var(--ott-text-primary) !important; }

/* Platforms dropdown */
.ott-navbar .dropdown-menu {
  background: var(--ott-bg-surface);
  border: 1px solid var(--ott-border);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  min-width: 280px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.platform-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  border-left: 3px solid transparent;
}
.platform-dropdown-item:hover { background: rgba(255,255,255,0.04); }
.platform-dropdown-item.active { border-left-color: var(--platform-accent); }

.platform-dropdown-item .pdi-icon {
  font-size: 1.25rem;
  width: 1.75rem;
  text-align: center;
  color: var(--ott-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Force consistent square size for fav images in dropdown */
.platform-dropdown-item .pdi-icon .strip-amazon-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.platform-dropdown-item .pdi-name {
  font-weight: 600;
  color: var(--ott-text-primary);
  font-size: 0.9375rem;
  display: block;
  line-height: 1.2;
}
.platform-dropdown-item .pdi-desc {
  font-size: 0.8125rem;
  color: var(--ott-text-secondary);
  display: block;
}

/* Navbar toggler */
.ott-navbar .navbar-toggler {
  border-color: var(--ott-border);
  color: var(--ott-text-primary);
  padding: 0.375rem 0.625rem;
}
.ott-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28241, 245, 249, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Cards ---------- */
.ott-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ott-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.ott-card-platform:hover {
  border-color: rgba(var(--platform-accent-rgb, 59, 130, 246), 0.35);
}

.feature-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--ott-text-accent);
  display: block;
}

.platform-feature-card .feature-icon {
  color: var(--platform-accent);
}

/* ---------- Sections ---------- */
.section-dark { background: var(--ott-bg-dark); }
.section-surface { background: var(--ott-bg-surface); }
.section-card { background: var(--ott-bg-card); }

/* ---------- Hero Sections ---------- */
.hero-section {
  background: var(--ott-gradient-hero);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Platform hero — split layout */
.platform-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--ott-bg-dark);
  overflow: hidden;
  position: relative;
}

.platform-hero-text {
  padding: 5rem 3rem 5rem max(3rem, calc((100vw - 1200px) / 2 + 1.5rem));
  z-index: 2;
  position: relative;
}

.platform-hero-image {
  position: relative;
  align-self: stretch;  /* stretch to fill grid row regardless of align-items: center */
  min-height: 92vh;
}
.platform-hero-image img {
  position: absolute;   /* fill container reliably — height:100% fails with min-height parent */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.platform-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ott-bg-dark) 0%, rgba(10,10,15,0.4) 40%, transparent 70%);
  z-index: 1;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--ott-text-secondary);
  font-weight: 500;
}
.trust-item .check {
  color: var(--platform-accent);
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- Stat Cards ---------- */
.stat-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}
.stat-card .stat-icon {
  font-size: 2rem;
  color: var(--platform-accent);
  margin-bottom: 1rem;
  display: block;
}
.stat-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* ---------- Builder Section (2-col) ---------- */
.builder-section {
  background: var(--ott-bg-surface);
  padding: 6rem 0;
}
.builder-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.builder-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.4rem 0;
  color: var(--ott-text-secondary);
  font-size: 0.9375rem;
}
.builder-checklist li .check-icon {
  color: var(--ott-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- CSS UI Mockup Schematics ---------- */
.ui-mockup {
  background: #0A0A18;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #1A2035;
  position: relative;
  overflow: hidden;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #1A2035;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1A2035;
}
.mockup-dot.active { background: var(--platform-accent); }

.mockup-channel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 1.25rem;
}
.mockup-channel-icon {
  height: 52px;
  background: var(--ott-bg-surface);
  border-radius: 6px;
  border: 1px solid #1E2A3D;
  transition: border-color 0.2s;
}
.mockup-channel-icon.hl { background: var(--ott-blue-dark); border-color: var(--ott-blue-primary); }

.mockup-shelf {
  margin-bottom: 1rem;
}
.mockup-shelf-label {
  height: 8px;
  width: 100px;
  background: #1E2A3D;
  border-radius: 4px;
  margin-bottom: 8px;
}
.mockup-shelf-row {
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.mockup-thumb {
  height: 75px;
  min-width: 115px;
  background: var(--ott-bg-surface);
  border-radius: 6px;
  border: 1px solid #1E2A3D;
  flex-shrink: 0;
}
.mockup-thumb.hl { background: var(--ott-blue-dark); border-color: rgba(37,99,235,0.4); }
.mockup-thumb.accent { background: var(--platform-accent); opacity: 0.25; }

/* Roku remote */
.roku-remote-wrap {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 48px;
}
.roku-remote {
  width: 48px;
  background: #1A1F2E;
  border-radius: 24px;
  border: 1px solid #2A3040;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.roku-remote-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #252A3A;
  border: 1px solid #2A3040;
}
.roku-remote-dpad {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #252A3A;
  border: 1px solid #2A3040;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fire TV Alexa bar */
.firetv-alexa-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--platform-firetv);
  opacity: 0.7;
  border-radius: 0 0 14px 14px;
}
.firetv-alexa-bar::before {
  content: 'Alexa';
  position: absolute;
  right: 1rem;
  bottom: 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--platform-firetv);
  letter-spacing: 0.05em;
}

/* Apple TV top shelf */
.appletv-top-shelf {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, var(--ott-blue-dark), #0F172A);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
}
.appletv-top-shelf::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,15,0.6));
  border-radius: 8px;
}

.appletv-remote-wrap {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}
.appletv-remote {
  width: 32px;
  background: #1C1C1E;
  border-radius: 14px;
  border: 1px solid #2C2C2E;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.appletv-remote-touch {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #2C2C2E;
  border: 1px solid #3A3A3C;
}
.appletv-remote-btn {
  width: 18px; height: 6px;
  border-radius: 3px;
  background: #2C2C2E;
}

/* ---------- Steps Section ---------- */
.steps-section { padding: 6rem 0; }
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--platform-accent);
  color: var(--platform-accent);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--ott-bg-dark);
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}
.step-icon {
  font-size: 1.25rem;
  color: var(--platform-accent);
  margin-bottom: 0.625rem;
  display: block;
}
.step-connector { display: none; } /* replaced by row::before */

/* Continuous connector line across all 3 steps */
.steps-section .row.position-relative::before {
  content: '';
  position: absolute;
  top: 27px; /* half of 56px step-number */
  left: calc(100% / 6);    /* center of col 1 */
  right: calc(100% / 6);   /* center of col 3 from right */
  height: 2px;
  background: var(--ott-border);
  z-index: 0;
}
@media (max-width: 767.98px) {
  .steps-section .row.position-relative::before { display: none; }
}

/* ---------- Monetization Cards ---------- */
.mono-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.mono-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-3px);
}
.mono-card .mono-icon {
  font-size: 2rem;
  color: var(--platform-accent);
  margin-bottom: 1rem;
  display: block;
}
.mono-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ---------- FAQ Accordion ---------- */
.ott-accordion .accordion-item {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 10px !important;
  margin-bottom: 0.625rem;
  overflow: hidden;
}
.ott-accordion .accordion-button {
  background: var(--ott-bg-card);
  color: var(--ott-text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}
.ott-accordion .accordion-button:not(.collapsed) {
  background: var(--ott-bg-surface);
  color: var(--ott-text-primary);
  box-shadow: none;
}
.ott-accordion .accordion-button::after {
  filter: invert(1) brightness(0.7);
}
.ott-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}
.ott-accordion .accordion-body {
  background: var(--ott-bg-surface);
  color: var(--ott-text-secondary);
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Platform CTA override */
.cta-banner-platform {
  background: var(--ott-bg-surface);
  border-top: 1px solid var(--ott-border);
}

/* ---------- Platform Strip ---------- */
.platform-strip { background: var(--ott-bg-surface); }
.platform-strip-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--ott-text-primary);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color 0.2s, transform 0.15s;
}
.platform-strip-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-2px);
  color: var(--ott-text-primary);
}

.strip-amazon-icon {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  padding: 2px 4px;
  line-height: 1;
}
.strip-amazon-icon img {
  height: 16px;
  width: auto;
  display: block;
}

/* ---------- Footer ---------- */
.ott-footer {
  background: var(--ott-bg-card);
  border-top: 1px solid var(--ott-border);
  padding: 4rem 0 2rem;
}
.footer-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--ott-text-secondary);
  margin-bottom: 1.5rem;
}
.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ott-text-secondary);
  margin-bottom: 1rem;
}
.footer-link {
  display: block;
  color: var(--ott-text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--ott-text-primary); }
.footer-divider {
  border-color: var(--ott-border);
  margin: 2.5rem 0 1.5rem;
}
.footer-bottom {
  font-size: 0.875rem;
  color: var(--ott-text-secondary);
}

/* ---------- Home Page Specific ---------- */
.hero-home {
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: var(--ott-gradient-hero);
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--ott-text-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.platform-logos-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.platform-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ott-bg-surface);
  border: 1px solid var(--ott-border);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ott-text-secondary);
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 16px;
  padding: 2.25rem;
  height: 100%;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.pricing-card.popular {
  border-color: var(--ott-blue-primary);
  box-shadow: 0 0 0 1px var(--ott-blue-primary);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ott-blue-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-plan-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ott-text-secondary);
  margin-bottom: 0.5rem;
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  line-height: 1;
}
.pricing-amount sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; }
.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--ott-text-secondary); }
.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
}
.pricing-feature-list li .pi { color: var(--ott-success); flex-shrink: 0; }

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-3px);
}
.blog-card-link { text-decoration: none; display: block; height: 100%; }
.blog-card-thumb {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-thumb-icon { font-size: 2.5rem; opacity: 0.9; color: #fff; }
.blog-thumb-roku        { background: linear-gradient(135deg, #3d1a6e 0%, #6C2E9C 100%); }
.blog-thumb-fast        { background: linear-gradient(135deg, #0f3460 0%, #1a6fa8 100%); }
.blog-thumb-monetization{ background: linear-gradient(135deg, #1a4731 0%, #059669 100%); }
.blog-thumb-firetv      { background: linear-gradient(135deg, #7a2d00 0%, #FF9900 100%); }
.blog-thumb-appletv     { background: linear-gradient(135deg, #1a1a2e 0%, #4a4a6a 100%); }
.blog-thumb-industry    { background: linear-gradient(135deg, #0f2a4a 0%, #1e5a8e 100%); }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ott-text-accent);
  margin-bottom: 0.625rem;
  display: block;
}
.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  margin-bottom: 0.625rem;
  line-height: 1.4;
}
.blog-meta {
  font-size: 0.8125rem;
  color: var(--ott-text-secondary);
}

/* ---------- Contact Form ---------- */
.ott-form-control {
  background: var(--ott-bg-card);
  border: 1.5px solid var(--ott-border);
  border-radius: 8px;
  color: var(--ott-text-primary);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ott-form-control:focus {
  outline: none;
  border-color: var(--ott-blue-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  background: var(--ott-bg-card);
}
.ott-form-control::placeholder { color: var(--ott-text-secondary); }
.ott-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ott-text-secondary);
  margin-bottom: 0.375rem;
  display: block;
}

/* ---------- About Page ---------- */
.team-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ott-bg-surface);
  border: 2px solid var(--ott-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
}

/* ---------- Utilities ---------- */
.text-accent { color: var(--ott-text-accent); }
.text-success-ott { color: var(--ott-success); }
.text-muted-ott { color: var(--ott-text-secondary); }
.bg-surface { background: var(--ott-bg-surface) !important; }
.bg-card { background: var(--ott-bg-card) !important; }
.border-ott { border-color: var(--ott-border) !important; }

.section-pad { padding: 2rem 0; }
.section-pad-sm { padding: 1.5rem 0; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--ott-blue-light), #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.ott-divider {
  border: none;
  border-top: 1px solid var(--ott-border);
  margin: 0;
}

/* Badge */
.ott-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.ott-badge-blue {
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--ott-text-accent);
}

/* Platform badge */
.platform-badge {
  background: var(--platform-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.625rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .platform-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .platform-hero-text {
    padding: 4rem 1.5rem 2.5rem;
  }
  .platform-hero-image {
    min-height: 300px;
    height: 300px;
  }
  .platform-hero-image::before {
    background: linear-gradient(to bottom, var(--ott-bg-dark) 0%, transparent 30%);
  }
  .step-connector { display: none; }
}

@media (max-width: 767.98px) {
  .platform-hero-image { min-height: 220px; height: 220px; }
  .hero-home { min-height: auto; padding: 5rem 0; }
  .section-pad { padding: 2rem 0; }
  .section-pad-sm { padding: 1.5rem 0; }
  .cta-banner { padding: 3.5rem 0; }
  .trust-strip { gap: 0.5rem 1rem; }
}

/* ---------- Scroll Animations (light) ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SEO + accessibility: always show content if JS hasn't run or motion is reduced */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
noscript .fade-in-up,
.fade-in-up:not([class*="visible"]) {
  animation: none;
}

/* ============================================================
   MISSING CLASS DEFINITIONS
   (classes referenced in HTML that were not previously defined)
   ============================================================ */

/* ---------- Utility ---------- */
.rounded-lg { border-radius: 12px !important; }
.text-secondary-ott { color: var(--ott-text-secondary); }

/* ---------- Hero Typography ---------- */
.hero-h1 {
  font-size: clamp(1.875rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ott-text-primary);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: var(--ott-text-secondary);
  line-height: 1.75;
}

/* ---------- Section Typography ---------- */
.section-h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ott-text-primary);
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--ott-text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-body {
  font-size: 1rem;
  color: var(--ott-text-secondary);
  line-height: 1.75;
}

/* ---------- CTA Typography ---------- */
.cta-h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ott-text-primary);
}
.cta-sub {
  font-size: 1.0625rem;
  color: var(--ott-text-secondary);
}

/* ---------- Page Hero (non-home) ---------- */
.page-hero {
  background: var(--ott-gradient-hero);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Stat Cards (index hero) ---------- */
.stat-number {
  font-size: clamp(1.375rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--ott-text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--ott-text-secondary);
  font-weight: 500;
}

/* ---------- How It Works Steps ---------- */
.how-step { padding: 2rem 1.5rem; }
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  margin-bottom: 0.625rem;
}
.step-body {
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
  margin-bottom: 0;
}
/* Override step-number for how-it-works context (not platform steps) */
.how-step .step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ott-text-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
  width: auto;
  height: auto;
  border: none;
  background: none;
}
.how-step .step-icon {
  font-size: 1.75rem;
  color: var(--ott-text-accent);
  margin-bottom: 0.625rem;
  display: block;
}

/* ---------- Platform Cards (index) ---------- */
.platform-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.platform-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.platform-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  margin-bottom: 0.5rem;
}
.platform-card-desc {
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ---------- Platform Chips ---------- */
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--ott-bg-surface);
  border: 1px solid var(--ott-border);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ott-text-secondary);
}

/* ---------- Hero Image Wrap ---------- */
.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.hero-banner-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.nab-banner-img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
}

/* ---------- Pricing Teaser (index) ---------- */
.pricing-teaser-card {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-teaser-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}
.pricing-teaser-popular {
  border-color: var(--ott-blue-primary);
  box-shadow: 0 0 0 1px var(--ott-blue-primary);
}
.pt-popular-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ott-text-accent);
  margin-bottom: 0.25rem;
  display: block;
}
.pt-plan {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ott-text-secondary);
  margin-bottom: 0.375rem;
}
.pt-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  line-height: 1;
}
.pt-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ott-text-secondary);
}

/* ---------- Pricing Cards (pricing.html) ---------- */
.pricing-card-popular {
  border-color: var(--ott-blue-primary);
  box-shadow: 0 0 0 1px var(--ott-blue-primary), 0 0 40px rgba(37, 99, 235, 0.15);
}
.pricing-card-enterprise { background: var(--ott-bg-surface); }
.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ott-blue-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ott-text-secondary);
}
.pricing-desc {
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
  margin-bottom: 0;
}
.pricing-divider { border-color: var(--ott-border); margin: 1.25rem 0; }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
}
.pricing-features li .bi-check2 {
  color: var(--ott-success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Add-on Cards (pricing.html) ---------- */
.addon-card { padding: 1.75rem; }
.addon-icon {
  font-size: 1.75rem;
  color: var(--ott-text-accent);
  margin-bottom: 1rem;
  display: block;
}
.addon-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  margin-bottom: 0.375rem;
}
.addon-price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  margin-bottom: 0.75rem;
}
.addon-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ott-text-secondary);
}
.addon-desc {
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
  margin-bottom: 0;
}

/* ---------- Feature List (features.html) ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
}
.feature-list li .bi { color: var(--ott-success); flex-shrink: 0; margin-top: 2px; }

/* ---------- Feature Visual (features.html) ---------- */
.feature-visual {
  background: var(--ott-bg-card);
  border: 1px solid var(--ott-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.feature-visual-inner { text-align: center; }
.fv-icon-large {
  font-size: 3.5rem;
  color: var(--ott-text-accent);
  margin-bottom: 1rem;
  display: block;
}
.fv-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ott-text-primary);
  margin-bottom: 1rem;
}
.fv-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.fv-chip {
  background: var(--ott-bg-surface);
  border: 1px solid var(--ott-border);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ott-text-secondary);
}

/* ---------- Contact Page ---------- */
.contact-form-card { padding: 2.5rem; }
.contact-form-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ott-text-primary);
}
.contact-submit-btn {
  padding: 0.875rem 1.75rem;
  font-size: 1.0625rem;
  justify-content: center;
}
.contact-form-disclaimer {
  font-size: 0.8125rem;
  color: var(--ott-text-secondary);
  text-align: center;
  margin-bottom: 0;
}
.ott-form-feedback {
  font-size: 0.8125rem;
  color: #EF4444;
  margin-top: 0.25rem;
  display: none;
}
.ott-form-textarea { resize: vertical; min-height: 120px; }
.contact-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.5rem;
}
.contact-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ott-bg-card);
  border: 1.5px solid var(--ott-border);
  border-radius: 8px;
  padding: 0.5rem 0.875rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ott-text-secondary);
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.contact-checkbox-item:has(input:checked) {
  border-color: var(--ott-blue-primary);
  background: rgba(37, 99, 235, 0.08);
  color: var(--ott-text-primary);
}
.contact-checkbox-item input { display: none; }
.contact-checkbox-box { display: none; }
.contact-info-panel { padding-top: 1rem; }
.contact-info-heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ott-text-primary);
}
.contact-info-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ott-text-primary);
}
.contact-checklist { list-style: none; padding: 0; margin: 0; }
.contact-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
}
.contact-checklist li .bi { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-divider { border-color: var(--ott-border); }
.contact-reach-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-reach-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.contact-reach-item .bi { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact-reach-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ott-text-secondary);
  margin-bottom: 0.125rem;
}
.contact-reach-value { font-size: 0.9375rem; color: var(--ott-text-primary); }
a.contact-reach-value { color: var(--ott-text-accent); }
.btn-copy-email {
  background: none;
  border: 1px solid var(--ott-border);
  border-radius: 4px;
  color: var(--ott-text-secondary);
  cursor: pointer;
  padding: 0.125rem 0.3rem;
  font-size: 0.6875rem;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
  vertical-align: middle;
}
.btn-copy-email:hover { color: var(--ott-text-accent); border-color: var(--ott-text-accent); }
.btn-copy-email.copied { color: #10B981; border-color: #10B981; }

/* ============================================================
   RESPONSIVE IMPROVEMENTS
   Mobile 375px | Tablet 768px | Desktop 1200px+
   ============================================================ */

/* ---------- Tablet / Nav collapse (≤ 991px) ---------- */
@media (max-width: 991.98px) {
  /* Style the expanded mobile menu */
  .ott-navbar .navbar-collapse {
    background: rgba(15, 17, 23, 0.98);
    border: 1px solid var(--ott-border);
    border-radius: 12px;
    margin-top: 0.75rem;
    padding: 0.75rem;
  }
  .ott-navbar .nav-link {
    padding: 0.625rem 0.875rem !important;
    border-radius: 8px;
  }
  .ott-navbar .nav-link:hover { background: rgba(255, 255, 255, 0.04); }
  /* Mobile dropdown: render inline, not floating */
  .ott-navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: 1px solid var(--ott-border);
    margin: 0.25rem 0 0.25rem 0.75rem;
    min-width: unset;
  }
  /* Book a Demo CTA button full-width in mobile nav */
  .ott-navbar .ms-lg-3 { margin: 0.5rem 0 0 0 !important; }
  .ott-navbar .ms-lg-3 .btn-ott-primary {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* ---------- Mobile (≤ 767px) ---------- */
@media (max-width: 767.98px) {
  /* Fix hero-section min-height (different class from hero-home) */
  .hero-section { min-height: auto; padding: 3rem 0; }
  .hero-image-wrap { margin-top: 1.5rem; }

  /* Page hero */
  .page-hero { padding: 4rem 0 2.5rem; }

  /* Typography tweaks */
  .hero-h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .cta-h2 br { display: none; } /* remove forced line break in CTA */

  /* Stat cards: reduce padding so col-4 works at small widths */
  .stat-card { padding: 1rem 0.75rem; }
  .stat-number { font-size: 1.25rem; }
  .stat-label { font-size: 0.6875rem; }

  /* Pricing teaser */
  .pricing-teaser-card { padding: 1.25rem 0.875rem; }
  .pt-price { font-size: 1.25rem; }

  /* NAB banner */
  .nab-banner-img { max-width: 100%; }

  /* Contact page */
  .contact-form-card { padding: 1.5rem 1.25rem; }
  .contact-info-panel { padding-top: 0; }

  /* Mockup grid: reduce columns so cells stay readable */
  .mockup-channel-grid { grid-template-columns: repeat(4, 1fr); }

  /* Platform hero text padding */
  .platform-hero-text { padding: 3rem 1.25rem 2rem; }
}

/* ---------- Small Mobile (≤ 480px) ---------- */
@media (max-width: 480px) {
  /* Tighten section padding */
  .section-pad { padding: 1rem 0; }
  .section-pad-sm { padding: 0.75rem 0; }

  /* Buttons */
  .btn-ott-primary,
  .btn-ott-outline,
  .btn-platform { padding: 0.625rem 1.25rem; font-size: 0.9375rem; }

  /* Hero */
  .hero-section { padding: 2rem 0; }
  .hero-sub { font-size: 0.9375rem; }
  .platform-chips { gap: 0.375rem !important; }
  .platform-chip { font-size: 0.8125rem; padding: 0.25rem 0.625rem; }

  /* Stat cards: at 375px col-4 ≈ 117px — need minimal padding */
  .stat-card { padding: 0.75rem 0.5rem; border-radius: 8px; }
  .stat-number { font-size: 1.125rem; }
  .stat-label { font-size: 0.625rem; }

  /* How it works */
  .how-step { padding: 1.5rem 1.25rem; }

  /* Platform cards */
  .platform-card { padding: 1.5rem 1.25rem; }

  /* Pricing teaser — 2-per-row at 375px */
  .pricing-teaser-card { padding: 1rem 0.75rem; }
  .pt-price { font-size: 1.125rem; }
  .pt-plan { font-size: 0.75rem; }

  /* Pricing cards */
  .pricing-card { padding: 1.75rem 1.25rem; }
  .pricing-price { font-size: 2rem; }

  /* Addon cards */
  .addon-card { padding: 1.25rem; }

  /* Contact */
  .contact-form-card { padding: 1.25rem 1rem; }
  .contact-checkbox-group { gap: 0.375rem; }
  .contact-checkbox-item { padding: 0.375rem 0.625rem; font-size: 0.875rem; }

  /* Mockup grid */
  .mockup-channel-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .ott-footer { padding: 3rem 0 1.5rem; }
}

/* ---------- Desktop (≥ 1200px) ---------- */
@media (min-width: 1200px) {
  .hero-section { padding: 3rem 0; }
  .platform-hero { min-height: 88vh; }
  .section-pad { padding: 3rem 0; }
  .hero-h1 { font-size: 3.5rem; }
}

/* ---------- Pricing Card — Flex Layout for Button Alignment ---------- */
.pricing-card {
  display: flex !important;
  flex-direction: column !important;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--ott-text-secondary);
}
.pricing-features li .bi {
  color: var(--ott-success);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price .pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ott-text-secondary);
}
.pricing-desc {
  color: var(--ott-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.pricing-divider {
  border-color: var(--ott-border);
  margin: 1rem 0;
}
.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ott-blue-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-card-popular {
  border-color: var(--ott-blue-primary);
  box-shadow: 0 0 0 1px var(--ott-blue-primary);
}

/* ---------- Platform Brand Logos ---------- */
/* Platform card logos — sprite from supported_platforms.png (1002×200px)
   Scale 0.24 → bg-size 240×48px
   Roku  x79-329  → pos -19px  width 60px
   FireTV x399-679 → pos -96px  width 67px
   AppleTV x753-925 → pos -181px width 41px */
.plat-logo {
  display: inline-block;
  background-image: url('../images/supported_platforms.png');
  background-repeat: no-repeat;
  background-size: 240px 48px;
  height: 48px;
}
.plat-logo-roku   { width: 60px; background-position: -19px 0; }
.plat-logo-firetv { width: 67px; background-position: -96px 0; }
.plat-logo-appletv { width: 41px; background-position: -181px 0; filter: brightness(0) invert(1); }

.platform-card-icon {
  margin-bottom: 1.25rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}

/* Platform chip logo styles */
/* Hero platform chips */
.platform-chip.plat-chip-roku    { border-color: rgba(108,46,156,0.3); padding: 0.375rem 0.75rem; }
.platform-chip.plat-chip-firetv  { border-color: rgba(255,153,0,0.3);  padding: 0.375rem 0.75rem; }
.platform-chip.plat-chip-appletv { border-color: rgba(160,160,160,0.3); padding: 0.375rem 0.75rem; }

/* Sprite-based logos inside chips
   Sprite: 1002×200px — Roku x79-329, FireTV x399-679, AppleTV x753-925
   Scale 0.16 → bg-size 160×32px */
.chip-logo {
  display: inline-block;
  background-image: url('../images/supported_platforms.png');
  background-repeat: no-repeat;
  background-size: 160px 32px;
}
/* All chips same width (48px); logos centered within */
.chip-logo-roku    { width: 48px; height: 32px; background-position: -9px 0; }
.chip-logo-firetv  { width: 48px; height: 32px; background-position: -62px 0; }
.chip-logo-appletv { width: 48px; height: 32px; background-position: -110px 0; filter: brightness(0) invert(1); }

/* Hero Carousel styles */
.hero-image-wrap .carousel-indicators [data-bs-target] {
  background-color: rgba(255,255,255,0.5);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
}
.hero-image-wrap .carousel-indicators .active {
  background-color: var(--ott-blue-primary);
}
.hero-image-wrap .carousel-inner img {
  border-radius: 12px;
}

/* Add-on card styles */
.addon-card {
  padding: 1.75rem;
}
.addon-icon {
  font-size: 1.75rem;
  color: var(--ott-text-accent);
  margin-bottom: 0.875rem;
}
.addon-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  margin-bottom: 0.375rem;
}
.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ott-text-primary);
  margin-bottom: 0.5rem;
}
.addon-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ott-text-secondary);
}
.addon-desc {
  font-size: 0.875rem;
  color: var(--ott-text-secondary);
  margin: 0;
}
