/* =====================================================================
   ONIDA 75" SMART TV — Landing Page
   Brand: Onida Red #EA2129 on premium cinematic dark
   Mobile-first, token-driven, conversion-focused
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --onida-red: #EA2129;
  --onida-red-600: #C81820;
  --onida-red-300: #FF5560;
  --white: #FFFFFF;

  /* Cinematic dark surfaces */
  --bg: #0B0B0F;
  --bg-2: #101017;
  --surface: #16161F;
  --surface-2: #1C1C28;
  --surface-line: rgba(255, 255, 255, 0.08);
  --surface-line-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #F4F4F6;
  --text-soft: #B9B9C6;
  --text-mute: #7E7E90;

  /* Effects */
  --glow-red: 0 0 80px rgba(234, 33, 41, 0.45);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Type scale (fluid) */
  --text-hero: clamp(2.1rem, 1rem + 3.4vw, 4.3rem);
  --text-h2: clamp(1.8rem, 1.1rem + 2.6vw, 3rem);
  --text-h3: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --text-sm: 0.9rem;

  /* Spacing */
  --space-section: clamp(2.2rem, 1.5rem + 2vw, 4.2rem);
  --container: 1200px;
  --gutter: clamp(1.1rem, 0.5rem + 2.4vw, 2.5rem);

  /* Motion */
  --dur: 280ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --sticky-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; }
:focus-visible { outline: 3px solid var(--onida-red-300); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--onida-red); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 820px; }
.container.center { text-align: center; }
.section { padding-block: var(--space-section); position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-h2); margin: 0.6rem 0 0.8rem; }
.section-head p { color: var(--text-soft); font-size: 1.075rem; }

.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--onida-red-300);
}
.kicker.light { color: var(--onida-red-300); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--onida-red);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
  padding: 0.85rem 1.5rem; border-radius: var(--r-pill);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { transition: transform var(--dur) var(--ease); }
.btn-primary {
  background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600));
  color: #fff; box-shadow: 0 10px 30px rgba(234, 33, 41, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(234, 33, 41, 0.5); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  border: 1px solid var(--surface-line-strong); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #052e1c; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.btn-wa:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 16px 42px rgba(37, 211, 102, 0.45); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-xl { padding: 1.15rem 2.4rem; font-size: 1.15rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(11, 11, 15, 0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--surface-line);
  transition: background var(--dur) var(--ease);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 68px; }
.brand { display: flex; align-items: center; line-height: 1; margin-right: auto; }
.brand-logo { height: 42px; width: auto; display: block; background: #fff; padding: 5px 9px; border-radius: 9px; }
.site-footer .brand-logo { height: 46px; }

/* Prime Video + ZEE5 free-subscription logo lockup (white chip so logos render on dark) */
.ott-bundle {
  display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  background: #fff; padding: 0.45rem 0.9rem; border-radius: var(--r-pill); box-shadow: var(--shadow-soft);
}
.ott-free {
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.06em; color: #fff;
  background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600)); padding: 0.22rem 0.5rem; border-radius: 6px;
}
.ott-logo { height: 22px; width: auto; display: block; }
.ott-logo-zee5 { height: 30px; }
.ott-plus { color: #94a3b8; font-weight: 700; }
.ott-bundle-lg { margin-top: 1.2rem; padding: 0.7rem 1.2rem; }
.ott-bundle-lg .ott-logo { height: 30px; }
.ott-bundle-lg .ott-logo-zee5 { height: 40px; }
.ott-bundle-lg .ott-free { font-size: 0.82rem; }
/* Compact FREE badge in the header (opposite the logo) */
.header-ott { margin-left: auto; padding: 0.3rem 0.6rem; gap: 0.45rem; }
.header-ott .ott-logo { height: 18px; }
.header-ott .ott-logo-zee5 { height: 24px; }
.header-ott .ott-free { font-size: 0.62rem; padding: 0.18rem 0.4rem; }

/* Offer lockup with durations (Amazon Prime Lite + Z5) */
.ott-offer {
  display: inline-flex; align-items: center; gap: 1.1rem; margin-top: 1.3rem;
  background: #fff; padding: 0.8rem 1.3rem; border-radius: 14px; box-shadow: var(--shadow-soft);
}
.ott-offer-item { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.ott-offer-item .ott-logo { height: 28px; }
.ott-offer-item .ott-logo-zee5 { height: 38px; }
.ott-offer-item small { font-size: 0.66rem; font-weight: 700; color: #333; letter-spacing: 0.01em; }
.ott-offer .ott-plus { color: #94a3b8; font-weight: 700; align-self: center; }
.offers-text .tc { font-size: 0.55em; vertical-align: super; opacity: 0.85; }
.offer-tc { font-size: 0.72rem; line-height: 1.5; color: rgba(255, 255, 255, 0.72); margin-top: 0.9rem; max-width: 480px; }
.brand-mark {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: 0.04em;
  color: #fff;
}
.brand-mark::first-letter { color: var(--onida-red-300); }
.brand-sub { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-mute); margin-top: 2px; }
.header-nav { display: none; gap: 1.6rem; }
.header-nav a { color: var(--text-soft); font-weight: 600; font-size: 0.95rem; transition: color var(--dur); }
.header-nav a:hover { color: #fff; }
@media (min-width: 860px) { .header-nav { display: flex; } }
@media (max-width: 560px) { .site-header .btn { display: none; } }

/* offset anchored scrolling for the sticky header */
html { scroll-padding-top: 88px; }

/* =====================================================================
   1. HERO
   ===================================================================== */
/* First fold = full-width banner image, with text + CTAs stacked below it */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero-banner-img { display: block; width: 100%; height: auto; }
.hero-overlay {
  display: flex; justify-content: center;
  padding: clamp(1rem, 0.7rem + 1.4vw, 1.8rem) var(--gutter) clamp(1rem, 0.7rem + 1.2vw, 1.6rem);
}
.hero-overlay-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(0.9rem, 0.6rem + 1vw, 1.3rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--onida-red-300); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--onida-red-300); animation: pulse 2s infinite; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-glow {
  position: absolute; inset: -20% 30% 40% -10%;
  background: radial-gradient(60% 60% at 30% 30%, rgba(234, 33, 41, 0.32), transparent 70%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.4; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(70% 60% at 60% 40%, #000 30%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 1rem + 5vw, 4rem); align-items: center;
}
@media (min-width: 940px) { .hero-inner { grid-template-columns: 1.05fr 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(234, 33, 41, 0.12); border: 1px solid rgba(234, 33, 41, 0.3);
  color: var(--onida-red-300); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.04em;
  padding: 0.45rem 0.95rem; border-radius: var(--r-pill); margin-bottom: 1.3rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--onida-red-300); box-shadow: 0 0 0 0 rgba(255,85,96,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,85,96,0.6);} 70%{box-shadow:0 0 0 8px rgba(255,85,96,0);} 100%{box-shadow:0 0 0 0 rgba(255,85,96,0);} }

.hero-title { font-size: var(--text-hero); font-weight: 800; }
.hero-title .grad {
  background: linear-gradient(100deg, #fff 20%, var(--onida-red-300) 60%, var(--onida-red) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { color: var(--text-soft); font-size: 1.08rem; max-width: 540px; margin: 1.1rem 0 1.2rem; }
.hero-sub strong { color: #fff; }

.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; }
.trust-row li {
  font-size: 0.82rem; font-weight: 600; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--surface-line);
  padding: 0.4rem 0.85rem; border-radius: var(--r-pill);
}
.trust-row li.trust-hot {
  color: #fff; font-weight: 700; border-color: transparent;
  background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600));
  box-shadow: 0 6px 18px rgba(234, 33, 41, 0.35);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.hero-microtrust { display: flex; align-items: center; gap: 0.5rem; color: var(--text-mute); font-size: 0.85rem; }
.hero-microtrust svg { color: var(--onida-red-300); flex-shrink: 0; }

/* TV visual */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; perspective: 1400px; }
.tv {
  width: min(100%, 560px); position: relative; z-index: 2;
  animation: floatTV 7s ease-in-out infinite;
}
@keyframes floatTV { 0%,100%{transform: translateY(0) rotateX(2deg);} 50%{transform: translateY(-12px) rotateX(2deg);} }
.tv-screen {
  aspect-ratio: 16 / 9; border-radius: 14px; padding: 9px;
  background: linear-gradient(160deg, #2a2a35, #0d0d12);
  box-shadow: var(--glow-red), 0 30px 70px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.tv-ui {
  width: 100%; height: 100%; border-radius: 7px; overflow: hidden; position: relative;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(234,33,41,0.35), transparent 55%),
    linear-gradient(135deg, #1a2a4a, #0a0a14 70%);
  padding: 12px 14px; display: flex; flex-direction: column; gap: 10px;
}
.tv-ui-top { display: flex; justify-content: space-between; align-items: center; }
.tv-google { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: #fff; opacity: 0.9; }
.tv-time { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.tv-hero-tile {
  flex: 1; border-radius: 8px;
  background: linear-gradient(120deg, var(--onida-red-600), #3a1530 55%, #102a55);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
  position: relative; overflow: hidden;
}
.tv-hero-tile::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 20%, rgba(255,255,255,0.25), transparent 60%);
}
.tv-rail { display: flex; gap: 7px; }
.tv-rail span { flex: 1; height: 30px; border-radius: 5px; background: rgba(255,255,255,0.08); }
.tv-rail span:nth-child(1) { background: rgba(255,255,255,0.16); }
.tv-stand { width: 8px; height: 38px; margin: 0 auto; background: linear-gradient(#2a2a35, #16161f); }
.tv-base { width: 44%; height: 9px; margin: 0 auto; border-radius: 0 0 8px 8px; background: linear-gradient(#22222c, #101018); box-shadow: 0 14px 30px rgba(0,0,0,0.5); }
.tv-reflection {
  width: min(80%, 440px); height: 60px; margin-top: -6px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(234,33,41,0.25), transparent 70%);
  filter: blur(8px);
}

.floating-badge {
  position: absolute; z-index: 5; display: flex; flex-direction: column; line-height: 1.1;
  background: rgba(22, 22, 31, 0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--surface-line-strong); border-radius: var(--r-md);
  padding: 0.7rem 1rem; box-shadow: var(--shadow-card);
  animation: floatBadge 5s ease-in-out infinite;
}
.floating-badge strong { font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.floating-badge span { font-size: 0.7rem; color: var(--text-soft); letter-spacing: 0.04em; }
.floating-badge.fb-1 { top: 6%; left: -4%; border-color: rgba(234,33,41,0.4); }
.floating-badge.fb-1 strong { color: var(--onida-red-300); }
.floating-badge.fb-2 { top: 38%; right: -6%; animation-delay: 1.2s; }
.floating-badge.fb-3 { bottom: 12%; left: -2%; animation-delay: 2.4s; }
@keyframes floatBadge { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-10px);} }
@media (max-width: 600px) {
  .floating-badge.fb-1 { left: 0; }
  .floating-badge.fb-2 { right: 0; }
  .floating-badge.fb-3 { left: 2%; }
}

/* =====================================================================
   2. FEATURE GRID
   ===================================================================== */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 620px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--surface-line); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem; position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity var(--dur) var(--ease);
  background: radial-gradient(80% 60% at 50% 0%, rgba(234,33,41,0.15), transparent 70%);
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(234,33,41,0.4); box-shadow: var(--shadow-card); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.1rem;
  background: rgba(234,33,41,0.12); color: var(--onida-red-300);
  border: 1px solid rgba(234,33,41,0.25); position: relative; z-index: 1;
}
.feature-card h3 { font-size: var(--text-h3); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.feature-card p { color: var(--text-soft); font-size: 0.97rem; position: relative; z-index: 1; }

/* =====================================================================
   2B. FEATURE SHOWCASE (immersive premium feature wall)
   ===================================================================== */
.showcase-section { background: linear-gradient(180deg, var(--bg-2), var(--bg) 72%); }
.stat-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--surface-line); border: 1px solid var(--surface-line);
  border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem);
}
@media (min-width: 760px) { .stat-strip { grid-template-columns: repeat(5, 1fr); } }
.stat { background: var(--surface); padding: 1.4rem 1rem; text-align: center; }
.stat strong {
  display: block; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(1.25rem, 1rem + 1.3vw, 1.85rem);
  background: linear-gradient(100deg, #fff 30%, var(--onida-red-300));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { font-size: 0.78rem; color: var(--text-soft); letter-spacing: 0.03em; }
.showcase-cta { text-align: center; margin-top: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }

/* Alternating feature chapters — full-bleed flagship bands */
.chapters { display: flex; flex-direction: column; }
.chapter { display: grid; grid-template-columns: 1fr; align-items: center; }
.chapter-media { overflow: hidden; }
.chapter-media img { display: block; width: 100%; height: auto; }
.chapter-copy {
  padding: clamp(2rem, 1.2rem + 5vw, 4.5rem) clamp(1.3rem, 0.6rem + 4vw, 5rem);
  max-width: 660px;
}
@media (min-width: 900px) {
  .chapter { grid-template-columns: 1fr 1fr; }
  .chapter.reverse .chapter-media { order: 2; }
  .chapter.reverse .chapter-copy { margin-left: auto; }
}
.chapter-eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--onida-red-300); margin-bottom: 0.8rem;
}
.chapter-title { font-size: clamp(1.9rem, 1.1rem + 3.2vw, 3.4rem); line-height: 1.04; margin-bottom: 1rem; }
.chapter-text { color: var(--text-soft); font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem); max-width: 46ch; }
.chapter-spec { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chapter-spec li {
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  background: var(--surface); border: 1px solid var(--surface-line-strong);
  padding: 0.42rem 0.95rem; border-radius: var(--r-pill);
}

/* =====================================================================
   3. GALLERY (natural-size masonry — images are never cropped)
   ===================================================================== */
.gallery { column-count: 1; column-gap: 0.9rem; }
@media (min-width: 560px) { .gallery { column-count: 2; } }
@media (min-width: 920px) { .gallery { column-count: 3; } }
.gallery-item {
  position: relative; display: block; width: 100%; break-inside: avoid;
  margin: 0 0 0.9rem; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--surface-line); background: var(--surface);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
/* media wraps the image and hugs its natural size; gradient (art-*) only
   shows as a fallback if the image is missing (min-height). */
.gi-media { display: block; position: relative; min-height: 60px; overflow: hidden; }
.gi-img { display: block; width: 100%; height: auto; transition: transform var(--dur) var(--ease); }
.gallery-item:hover .gi-img { transform: scale(1.04); }
.gi-label {
  position: absolute; left: 12px; bottom: 12px; z-index: 2; pointer-events: none;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: #fff;
  background: rgba(0,0,0,0.5); padding: 0.35rem 0.75rem; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}

/* Shared "art" gradients (placeholders for real product imagery) */
.art-display { background: linear-gradient(150deg, #1c2c4f, #0c0c14 70%), radial-gradient(60% 50% at 70% 20%, rgba(234,33,41,0.4), transparent); }
.art-ui { background: radial-gradient(80% 70% at 20% 10%, rgba(234,33,41,0.4), transparent 60%), linear-gradient(135deg, #182338, #0a0a12); }
.art-movie { background: linear-gradient(125deg, var(--onida-red-600), #3a1024 50%, #0b1530); }
.art-eco { background: linear-gradient(120deg, #122a4a, #1a1030 60%, #2a0d18); }
.art-life { background: linear-gradient(150deg, #20202c, #0c0c14), radial-gradient(50% 60% at 80% 80%, rgba(234,33,41,0.3), transparent); }
.art-sport { background: linear-gradient(130deg, #0d3b2e, #0a1424 70%); }
.art-family { background: linear-gradient(130deg, #3a2410, #140e0a 70%); }
.art-game { background: linear-gradient(130deg, #2a0d3a, #0a0a1a 70%); }
.art-living { background: linear-gradient(130deg, #1a1a26, #0a0a12), radial-gradient(60% 50% at 30% 20%, rgba(234,33,41,0.25), transparent); }

/* =====================================================================
   4. VIDEO
   ===================================================================== */
.video-section { background: radial-gradient(80% 100% at 50% 0%, #14141f, var(--bg) 70%); }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; max-width: 980px; margin-inline: auto;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--surface-line-strong);
  box-shadow: var(--glow-red), 0 30px 80px rgba(0,0,0,0.55);
}
.video-poster { position: absolute; inset: 0; }
.video-poster::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 88px; height: 88px; border-radius: 50%; color: #fff;
  background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(234,33,41,0.6); animation: ripple 2.4s infinite;
  transition: transform var(--dur) var(--ease);
}
.video-play svg { margin-left: 4px; }
.video-play:hover { transform: translate(-50%, -50%) scale(1.08); }
@keyframes ripple { 0%{box-shadow:0 0 0 0 rgba(234,33,41,0.5);} 70%{box-shadow:0 0 0 26px rgba(234,33,41,0);} 100%{box-shadow:0 0 0 0 rgba(234,33,41,0);} }
.video-duration { position: absolute; bottom: 14px; right: 16px; z-index: 3; font-size: 0.8rem; color: rgba(255,255,255,0.8); background: rgba(0,0,0,0.5); padding: 0.3rem 0.7rem; border-radius: var(--r-pill); }

/* =====================================================================
   5. LIFESTYLE (image-top cards — natural-size, uncropped images)
   ===================================================================== */
.lifestyle-grid { column-count: 1; column-gap: 1.1rem; }
@media (min-width: 640px) { .lifestyle-grid { column-count: 2; } }
@media (min-width: 980px) { .lifestyle-grid { column-count: 3; } }
.life-card {
  display: block; break-inside: avoid; margin: 0 0 1.1rem;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--surface-line);
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.life-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(234, 33, 41, 0.35); }
.life-media { display: block; position: relative; min-height: 60px; overflow: hidden; }
.life-img { display: block; width: 100%; height: auto; transition: transform var(--dur) var(--ease); }
.life-card:hover .life-img { transform: scale(1.04); }
.life-body { padding: 1.3rem 1.5rem; }
.life-body h3 { font-size: var(--text-h3); margin-bottom: 0.35rem; }
.life-body p { color: var(--text-soft); font-size: 0.95rem; }

/* =====================================================================
   5B. BEFORE / AFTER COMPARISON SLIDER
   ===================================================================== */
.ba {
  position: relative; width: 100%; max-width: 920px; margin-inline: auto; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--surface-line-strong);
  box-shadow: var(--glow-red), 0 24px 60px rgba(0,0,0,0.5);
  user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba img { display: block; pointer-events: none; }
.ba-after img { width: 100%; height: auto; }                 /* sets the box size */
.ba-before { position: absolute; inset: 0; width: 100%; overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-before img:first-child {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  /* "standard display" look — softer, less vivid than the 4K side */
  filter: saturate(0.5) contrast(0.9) brightness(0.95) blur(1.4px);
}
/* Labels */
.ba-label { position: absolute; top: 5%; left: 4%; width: clamp(110px, 14vw, 208px); height: auto; z-index: 3; }
.ba-badge { position: absolute; top: 6%; right: 4%; width: clamp(64px, 8vw, 120px); height: auto; z-index: 3; }
/* Caption (always over the 4K side) */
.ba-caption { position: absolute; left: 4%; bottom: 5%; right: 4%; max-width: 540px; z-index: 3; color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.7); pointer-events: none; }
.ba-caption h3 { font-size: clamp(1.3rem, 0.9rem + 2vw, 2.2rem); margin-bottom: 0.4rem; }
.ba-caption p { font-size: clamp(0.8rem, 0.7rem + 0.6vw, 1rem); color: rgba(255,255,255,0.92); }
@media (max-width: 560px) { .ba-caption p { display: none; } }
/* Divider + handle */
.ba::before { content: ""; position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: rgba(255,255,255,0.9); transform: translateX(-1px); z-index: 2; pointer-events: none; }
.ba-handle {
  position: absolute; top: 50%; left: var(--pos, 50%); transform: translate(-50%, -50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%; cursor: ew-resize;
  background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), 0 0 0 4px rgba(255,255,255,0.85);
}
.ba-handle:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* =====================================================================
   5C. COMPARISON TABLE
   ===================================================================== */
.compare-spec-intro { text-align: center; color: var(--text-soft); font-family: var(--font-display); font-weight: 600; margin: 2.2rem 0 1.1rem; }
.compare-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg); border: 1px solid var(--surface-line); box-shadow: var(--shadow-soft);
}
.compare-table { width: 100%; min-width: 560px; border-collapse: collapse; background: var(--surface); }
.compare-table th, .compare-table td {
  padding: 1rem 1.2rem; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--surface-line);
}
.compare-table thead th { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; color: var(--text); background: var(--bg-2); }
.compare-table tbody th { font-weight: 600; color: var(--text-soft); font-size: 0.95rem; }
.compare-table td { color: var(--text); font-size: 0.97rem; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.ct-feature { width: 32%; }
.compare-table .ct-onida {
  background: rgba(234, 33, 41, 0.08); color: #fff;
  border-left: 1px solid rgba(234, 33, 41, 0.25); border-right: 1px solid rgba(234, 33, 41, 0.25);
}
.compare-table thead .ct-onida { background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600)); color: #fff; }
.ct-tag {
  display: inline-block; margin-left: 0.45rem; vertical-align: middle;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.22); color: #fff; padding: 0.2rem 0.5rem; border-radius: var(--r-pill);
}
.compare-table .yes { color: #22c55e; font-weight: 800; margin-right: 0.2rem; }
.compare-table .no { color: #ef4444; font-weight: 800; margin-right: 0.2rem; }
.compare-cta { text-align: center; margin-top: 1.8rem; }

/* =====================================================================
   6. LEAD SECTION (primary conversion)
   ===================================================================== */
.lead-section { background: linear-gradient(180deg, var(--bg), #0e0e16); overflow: hidden; }
.lead-glow { position: absolute; inset: -10% -20% auto auto; width: 600px; height: 600px; background: radial-gradient(circle, rgba(234,33,41,0.28), transparent 65%); filter: blur(10px); z-index: 0; }
.lead-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 1rem + 4vw, 3.5rem); align-items: center; }
@media (min-width: 920px) { .lead-inner { grid-template-columns: 1fr 1fr; } }
.lead-copy h2 { font-size: var(--text-h2); margin: 0.6rem 0 1rem; }
.lead-sub { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 1.6rem; }
.lead-assurance { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.lead-assurance li { display: flex; align-items: center; gap: 0.55rem; font-weight: 600; color: var(--text); font-size: 0.95rem; }
.lead-assurance svg { color: #22c55e; flex-shrink: 0; }

.lead-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--surface-line-strong); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow-card);
  position: relative;
}
.lead-form h3 { font-size: 1.25rem; margin-bottom: 1.2rem; }

/* Form fields */
.field { margin-bottom: 1rem; position: relative; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-soft); margin-bottom: 0.4rem; }
.field input {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--r-sm);
  background: var(--bg); border: 1px solid var(--surface-line-strong); color: #fff;
  font-size: 1rem; transition: border-color var(--dur), box-shadow var(--dur);
}
.field input::placeholder { color: var(--text-mute); }
.field input:focus { outline: none; border-color: var(--onida-red); box-shadow: 0 0 0 3px rgba(234,33,41,0.2); }
.field input[aria-invalid="true"] { border-color: #ef4444; }
.field-error { display: block; color: #fca5a5; font-size: 0.78rem; margin-top: 0.3rem; min-height: 1em; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-consent { font-size: 0.75rem; color: var(--text-mute); text-align: center; margin-top: 0.9rem; }
.btn-block { margin-top: 0.4rem; }

/* Success state */
.lead-success { text-align: center; padding: 1rem 0; }
.success-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 1rem;
  background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.4);
  font-size: 1.6rem; animation: popIn var(--dur) var(--ease);
}
@keyframes popIn { from{transform: scale(0.6); opacity: 0;} to{transform: scale(1); opacity: 1;} }
.lead-success h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.lead-success p { color: var(--text-soft); }
.wa-hint { font-size: 0.9rem; margin: 0.9rem 0 1rem !important; }

/* =====================================================================
   7. OFFERS
   ===================================================================== */
.offers-banner {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--onida-red-600), #7a1018 60%, #2a0a10);
  padding: clamp(2rem, 1.5rem + 3vw, 3.5rem); display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1.6rem;
  box-shadow: var(--shadow-card);
}
.offers-shine {
  position: absolute; top: -50%; left: -20%; width: 60%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg); animation: shine 5s ease-in-out infinite;
}
@keyframes shine { 0%{left:-30%;} 60%,100%{left:130%;} }
.offers-text { position: relative; z-index: 1; max-width: 620px; }
.offers-text h2 { font-size: var(--text-h2); margin: 0.4rem 0 0.6rem; color: #fff; }
.offers-text p { color: rgba(255,255,255,0.92); }
.offers-banner .btn-primary { position: relative; z-index: 1; background: #fff; color: var(--onida-red-600); }
.offers-banner .btn-primary:hover { background: #fff; }

/* =====================================================================
   8. TRUST GRID
   ===================================================================== */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
  display: flex; flex-direction: column; gap: 0.4rem;
  background: var(--surface); border: 1px solid var(--surface-line);
  border-radius: var(--r-md); padding: 1.4rem 1.5rem;
  transition: border-color var(--dur), transform var(--dur);
}
.trust-card:hover { border-color: rgba(234,33,41,0.35); transform: translateY(-3px); }
.trust-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; font-weight: 800;
  background: rgba(34,197,94,0.14); color: #22c55e; margin-bottom: 0.3rem;
}
.trust-card h3 { font-size: 1.08rem; }
.trust-card p { color: var(--text-soft); font-size: 0.92rem; }

/* =====================================================================
   9. TESTIMONIALS
   ===================================================================== */
.review-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 760px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--surface-line); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 1rem;
}
.stars { color: #f5b50a; letter-spacing: 2px; font-size: 1.05rem; }
.review-card p { color: var(--text); font-size: 1rem; font-style: italic; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: #fff;
  background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600));
}
.reviewer strong { display: block; font-size: 0.95rem; }
.reviewer span { color: var(--text-mute); font-size: 0.82rem; }

/* =====================================================================
   10. FAQ ACCORDION
   ===================================================================== */
.accordion { display: flex; flex-direction: column; gap: 0.7rem; }
.acc-item { background: var(--surface); border: 1px solid var(--surface-line); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--dur); }
.acc-item.open { border-color: rgba(234,33,41,0.35); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
}
.acc-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--onida-red-300); border-radius: 2px; transition: transform var(--dur) var(--ease); }
.acc-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.acc-item.open .acc-icon::after { transform: scaleY(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.acc-panel p { padding: 0 1.4rem 1.25rem; color: var(--text-soft); }

/* =====================================================================
   11. FINAL CTA
   ===================================================================== */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(180deg, #0e0e16, var(--bg)); }
.final-glow { position: absolute; inset: auto 0 -40% 0; height: 500px; background: radial-gradient(50% 100% at 50% 100%, rgba(234,33,41,0.4), transparent 70%); filter: blur(10px); }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: var(--text-h2); max-width: 760px; margin: 0 auto 1rem; }
.final-cta p { color: var(--text-soft); font-size: 1.15rem; margin-bottom: 2rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { border-top: 1px solid var(--surface-line); padding-block: 2.5rem 6rem; background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.2fr 1fr; align-items: end; }
  .footer-meta { text-align: right; }
}
.footer-brand p { color: var(--text-mute); font-size: 0.9rem; margin-top: 0.6rem; max-width: 460px; }
.footer-meta { color: var(--text-mute); font-size: 0.85rem; }
.footer-meta p + p { margin-top: 0.3rem; }
.footer-fine { opacity: 0.7; }

/* =====================================================================
   FLOATING WIDGET
   ===================================================================== */
.float-widget {
  position: fixed; right: 18px; bottom: 88px; z-index: 80;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600)); color: #fff;
  padding: 0.85rem 1.3rem; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 700;
  box-shadow: 0 12px 34px rgba(234,33,41,0.5); transition: transform var(--dur) var(--ease);
  animation: floatBadge 4s ease-in-out infinite;
}
.float-widget:hover { transform: translateY(-3px) scale(1.03); }
@media (min-width: 768px) { .float-widget { bottom: 24px; } }
@media (max-width: 767px) { .float-widget span { display: none; } .float-widget { padding: 0.9rem; bottom: calc(var(--sticky-h) + 16px); } }

/* =====================================================================
   MOBILE STICKY CTA BAR
   ===================================================================== */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 1px;
  background: var(--surface-line); height: var(--sticky-h);
  border-top: 1px solid var(--surface-line-strong);
  backdrop-filter: blur(10px);
}
@media (min-width: 768px) { .sticky-bar { display: none; } }
.sb-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 0.72rem; font-weight: 700; font-family: var(--font-display);
  background: rgba(16,16,23,0.96); color: var(--text);
}
.sb-btn svg { width: 18px; height: 18px; }
.sb-primary { background: linear-gradient(135deg, var(--onida-red), var(--onida-red-600)); color: #fff; }
.sb-wa { color: #25D366; }
.sb-call { color: var(--onida-red-300); }

/* =====================================================================
   LEAD DRAWER (slide-in)
   ===================================================================== */
.drawer-overlay, .modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.65); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.drawer-overlay.show, .modal-overlay.show { opacity: 1; }
.lead-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 101;
  width: min(420px, 92vw); background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-left: 1px solid var(--surface-line-strong); box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  padding: 2rem 1.7rem; overflow-y: auto;
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
}
.lead-drawer.show { transform: translateX(0); }
.drawer-close, .modal-close {
  position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.6rem; line-height: 1; color: var(--text-soft);
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur), color var(--dur);
}
.drawer-close:hover, .modal-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.drawer-head { margin-bottom: 1.4rem; padding-right: 2rem; }
.drawer-head h3 { font-size: 1.4rem; margin: 0.4rem 0 0.5rem; }
.drawer-head p { color: var(--text-soft); font-size: 0.95rem; }

/* =====================================================================
   EXIT-INTENT MODAL
   ===================================================================== */
.exit-modal {
  position: fixed; top: 50%; left: 50%; z-index: 101;
  width: min(880px, 94vw); max-height: 92vh; overflow-y: auto;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--surface-line-strong); border-radius: var(--r-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7); display: grid; grid-template-columns: 1fr;
  transform: translate(-50%, -46%) scale(0.96); opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.modal-overlay.show .exit-modal { transform: translate(-50%, -50%) scale(1); opacity: 1; }
@media (min-width: 720px) { .exit-modal { grid-template-columns: 0.85fr 1fr; } }
.exit-art { min-height: 180px; display: none; position: relative; overflow: hidden; background: #0b0b0f; }
.exit-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }
@media (min-width: 720px) { .exit-art { display: block; } }
.exit-body { padding: clamp(1.6rem, 1rem + 3vw, 2.6rem); }
.exit-body h3 { font-size: clamp(1.3rem, 1rem + 1.6vw, 1.7rem); margin: 0.4rem 0 0.6rem; }
.exit-body > p { color: var(--text-soft); margin-bottom: 1.4rem; }
.exit-body .success-tick { background: rgba(34,197,94,0.15); }

/* =====================================================================
   REAL IMAGE LAYERS (self-hosted Onida assets)
   Each <img> sits over its branded gradient fallback. If the file is
   missing, JS/onerror removes the img and the gradient shows — so the
   page never breaks before assets are dropped into assets/img/.
   ===================================================================== */
.tv-photo {
  position: absolute; inset: 9px; width: calc(100% - 18px); height: calc(100% - 18px);
  object-fit: cover; border-radius: 7px; z-index: 1;
}
/* Gallery & lifestyle images render at natural size (see their sections).
   Only the video poster fills a fixed 16:9 player frame. */
.video-poster-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lightbox-img {
  display: block; margin: 0 auto; max-width: 100%; max-height: 84vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* Scroll reveal + chapter parallax (classes added by JS only when motion is allowed) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.chapter.reveal .chapter-media img { transform: scale(1.08); transition: transform 1.1s var(--ease); }
.chapter.reveal.in .chapter-media img { transform: scale(1); }

/* Scroll-activated desktop CTA bar */
.scroll-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 75; display: none;
  transform: translateY(110%); transition: transform var(--dur) var(--ease);
  background: rgba(11, 11, 15, 0.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--surface-line-strong);
}
@media (min-width: 768px) { .scroll-cta { display: block; } }
.scroll-cta.show { transform: translateY(0); }
.scroll-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 66px; }
.sc-info strong { display: block; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 0.98rem; }
.sc-info span { font-size: 0.82rem; color: var(--text-soft); }
.sc-actions { display: flex; gap: 0.7rem; }

/* =====================================================================
   MOBILE OPTIMISATIONS
   ===================================================================== */
@media (max-width: 600px) {
  /* Hero CTAs: both on the SAME line, equal width */
  .hero-overlay-inner { width: 100%; }
  .hero-cta { flex-direction: row; flex-wrap: nowrap; align-items: stretch; width: 100%; max-width: 460px; margin-inline: auto; gap: 0.55rem; }
  .hero-cta .btn { flex: 1 1 0; min-width: 0; padding: 0.8rem 0.6rem; font-size: 0.9rem; gap: 0.3rem; }
  .hero-cta .btn svg { display: none; }

  /* Balance the 5-item stat strip (last tile spans full width) */
  .stat-strip .stat:last-child { grid-column: 1 / -1; }

  /* OTT badge stays on one line and centered */
  .ott-bundle { gap: 0.45rem; padding: 0.4rem 0.7rem; }

  /* Section headings never overflow */
  .section-head h2, .chapter-title, .final-cta h2, .offers-text h2, .lead-copy h2 { overflow-wrap: anywhere; }

  /* Offers banner CTA full-width */
  .offers-banner .btn { width: 100%; }

  /* Tap targets: comfortable button size */
  .btn-lg { padding: 0.95rem 1.5rem; }
}

@media (max-width: 380px) {
  .hero-cta { max-width: 100%; }
  .brand-logo { height: 34px; padding: 4px 7px; }
  .header-ott { padding: 0.25rem 0.45rem; gap: 0.35rem; }
  .header-ott .ott-logo { height: 15px; }
  .header-ott .ott-logo-zee5 { height: 20px; }
  .header-ott .ott-free { font-size: 0.54rem; padding: 0.15rem 0.32rem; }
}

/* Utilities */
[hidden] { display: none !important; }
.no-scroll { overflow: hidden; }

/* ===== Onida LP brief: brand tagline + karaoke blocks ===== */
.brand { flex-direction: column; align-items: flex-start; gap: 3px; }
.brand-logo { background: none !important; padding: 0 !important; border-radius: 0 !important; height: clamp(46px, 5vw, 58px) !important; }
.site-footer .brand-logo { height: 54px !important; }
.brand-tagline {
  color: #fff; font-size: 0.6rem; letter-spacing: 0.26em;
  text-transform: uppercase; font-weight: 600; opacity: 0.92;
}
.site-footer .brand { align-items: flex-start; }

/* Stat strip keeps multi-word values on one line where possible */
.stat strong { white-space: nowrap; }

/* Karaoke banners (replace lifestyle + compare) */
.karaoke-section .container { display: grid; gap: 1.25rem; }
.karaoke-banner { position: relative; border-radius: 18px; overflow: hidden; isolation: isolate; }
.karaoke-banner > img { display: block; width: 100%; height: auto; }
.karaoke-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  gap: 0.7rem; padding: clamp(1.2rem, 4vw, 3.2rem); max-width: 640px;
  background: linear-gradient(90deg, rgba(8,8,12,0.86) 0%, rgba(8,8,12,0.45) 55%, rgba(8,8,12,0) 100%);
}
.karaoke-overlay h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 800; line-height: 1.05; }
.karaoke-overlay p { color: var(--text-soft); max-width: 46ch; }
.karaoke-overlay .btn { align-self: flex-start; margin-top: 0.3rem; }
.karaoke-strip {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1.4rem, 4vw, 2.6rem); border-radius: 18px;
  background: linear-gradient(120deg, #7a1020 0%, #240910 72%);
  border: 1px solid var(--surface-line);
}
.karaoke-strip h3 { font-family: 'Sora', sans-serif; font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 800; }
.karaoke-strip p { color: var(--text-soft); margin-top: 0.2rem; }
@media (max-width: 640px) {
  .karaoke-overlay { position: static; max-width: none; background: rgba(8,8,12,0.62); }
  .karaoke-banner { background: #0d0d12; }
}

/* Offer banner with football creative image */
.offers-banner--img { align-items: center; gap: clamp(1.4rem, 3vw, 2.6rem); flex-wrap: wrap; }
.offers-banner--img .offers-text { flex: 1 1 360px; max-width: 560px; }
.offer-media {
  flex: 1 1 340px; max-width: 520px; position: relative; z-index: 1;
  padding: 0; border: 0; background: none; cursor: pointer; border-radius: 16px; overflow: hidden;
  box-shadow: 0 18px 50px -18px rgba(0,0,0,0.6); transition: transform var(--dur) var(--ease);
}
.offer-media:hover { transform: translateY(-3px); }
.offer-media img { display: block; width: 100%; height: auto; }

/* Offer: full-width banner, new OTT logos, breathing room before CTA */
.offers-fullwidth { width: 100%; padding-inline: clamp(1rem, 3vw, 2.4rem); }
.ott-offer-item .ott-logo-prime { height: 22px; }
.ott-offer-item .ott-logo-z5 { height: 42px; }
.offer-cta { margin-top: 1.6rem; }
/* New OTT logos in the header bundle (Z5 + Prime Lite) */
.header-ott .ott-logo-z5 { height: 24px; }
.header-ott .ott-logo-prime { height: 15px; }
@media (max-width: 560px) {
  .header-ott .ott-logo-z5 { height: 20px; }
  .header-ott .ott-logo-prime { height: 12px; }
}

/* Karaoke: full-bleed banner spanning the whole viewport width */
.karaoke-banner--full { border-radius: 0; width: 100%; }
.karaoke-banner--full + .container { margin-top: clamp(1rem, 2.5vw, 1.5rem); }
